17be89b21b
In native world, byte stream is typically represented in uint8_t[]
or vector<uint8_t>. C++ backend already generates that way. This
change involves NDK backend.
Now NDK backend also uses vector<uint8_t> just like C++ backend.
Bug: 144957764
Test: atest CtsNdkBinderTestCases
Merged-In: I8de348b57cf92dd99b3ee16252f56300ce5f4683
Change-Id: I8de348b57cf92dd99b3ee16252f56300ce5f4683
(cherry picked from commit 9070318462
)
Exempt-From-Owner-Approval: cp from internal
54 lines
1.9 KiB
C++
54 lines
1.9 KiB
C++
/*
|
|
* Copyright 2019, The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef ANDROID_HARDWARE_IDENTITY_UTIL_H
|
|
#define ANDROID_HARDWARE_IDENTITY_UTIL_H
|
|
|
|
#include <aidl/android/hardware/identity/BnIdentityCredential.h>
|
|
#include <android/hardware/identity/support/IdentityCredentialSupport.h>
|
|
|
|
#include <map>
|
|
#include <optional>
|
|
#include <set>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <cppbor/cppbor.h>
|
|
|
|
namespace aidl::android::hardware::identity {
|
|
|
|
using ::std::optional;
|
|
using ::std::string;
|
|
using ::std::vector;
|
|
|
|
// Returns the hardware-bound AES-128 key.
|
|
const vector<uint8_t>& getHardwareBoundKey();
|
|
|
|
// Calculates the MAC for |profile| using |storageKey|.
|
|
optional<vector<uint8_t>> secureAccessControlProfileCalcMac(
|
|
const SecureAccessControlProfile& profile, const vector<uint8_t>& storageKey);
|
|
|
|
// Checks authenticity of the MAC in |profile| using |storageKey|.
|
|
bool secureAccessControlProfileCheckMac(const SecureAccessControlProfile& profile,
|
|
const vector<uint8_t>& storageKey);
|
|
|
|
// Creates the AdditionalData CBOR used in the addEntryValue() HIDL method.
|
|
vector<uint8_t> entryCreateAdditionalData(const string& nameSpace, const string& name,
|
|
const vector<int32_t> accessControlProfileIds);
|
|
|
|
} // namespace aidl::android::hardware::identity
|
|
|
|
#endif // ANDROID_HARDWARE_IDENTITY_UTIL_H
|