diff options
author | Shawn Willden <swillden@google.com> | 2015-03-19 00:43:47 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-03-19 00:43:47 +0000 |
commit | d4cb092c25b18d857785f300acb8bad6a28c0f18 (patch) | |
tree | 7ccabde9dea7999dc96e96336640b088db43ac81 /include/hardware | |
parent | e282df76e81eca50f91b06131790b4f433ef661f (diff) | |
parent | 6b5b8ba98e1caaa91693238e79bfe5b7d988ce5c (diff) | |
download | hardware_libhardware-d4cb092c25b18d857785f300acb8bad6a28c0f18.zip hardware_libhardware-d4cb092c25b18d857785f300acb8bad6a28c0f18.tar.gz hardware_libhardware-d4cb092c25b18d857785f300acb8bad6a28c0f18.tar.bz2 |
am 6b5b8ba9: am 201e5555: Merge "Add KM_TAG_AUTH_TOKEN and corresponding auth token structure."
* commit '6b5b8ba98e1caaa91693238e79bfe5b7d988ce5c':
Add KM_TAG_AUTH_TOKEN and corresponding auth token structure.
Diffstat (limited to 'include/hardware')
-rw-r--r-- | include/hardware/hw_auth_token.h | 47 | ||||
-rw-r--r-- | include/hardware/keymaster_defs.h | 11 |
2 files changed, 52 insertions, 6 deletions
diff --git a/include/hardware/hw_auth_token.h b/include/hardware/hw_auth_token.h new file mode 100644 index 0000000..ffb72a9 --- /dev/null +++ b/include/hardware/hw_auth_token.h @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2014 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. + */ + +#include <stdint.h> + +#ifndef ANDROID_HARDWARE_HW_AUTH_TOKEN_H +#define ANDROID_HARDWARE_HW_AUTH_TOKEN_H + +__BEGIN_DECLS + +typedef enum { + HW_AUTH_NONE = 0, + HW_AUTH_PASSWORD = 1 << 1, + HW_AUTH_FINGERPRINT = 1 << 2, + // Additional entries should be powers of 2. + HW_AUTH_ANY = UINT32_MAX, +} hw_authenticator_type_t; + +/** + * Data format for an authentication record used to prove successful authentication. + */ +typedef struct __attribute__((__packed__)) { + uint8_t version; // Current version is 0 + uint64_t challenge; + uint64_t user_id; // secure user ID, not Android user ID + uint64_t authenticator_id; // secure authenticator ID + uint32_t authenticator_type; // hw_authenticator_type_t, in network order + uint32_t timestamp; // in network order + uint8_t hmac[32]; +} hw_auth_token_t; + +__END_DECLS + +#endif // ANDROID_HARDWARE_HW_AUTH_TOKEN_H diff --git a/include/hardware/keymaster_defs.h b/include/hardware/keymaster_defs.h index 3b08ab8..e7ef5b5 100644 --- a/include/hardware/keymaster_defs.h +++ b/include/hardware/keymaster_defs.h @@ -21,9 +21,7 @@ #include <stdlib.h> #include <string.h> -#if defined(__cplusplus) -extern "C" { -#endif // defined(__cplusplus) +__BEGIN_DECLS /** * Authorization tags each have an associated type. This enumeration facilitates tagging each with @@ -128,6 +126,9 @@ typedef enum { KM_TAG_NONCE = KM_BYTES | 1001, /* Nonce or Initialization Vector */ KM_TAG_CHUNK_LENGTH = KM_INT | 1002, /* AEAD mode chunk size, in bytes. 0 means no limit, which requires KM_TAG_RETURN_UNAUTHED. */ + KM_TAG_AUTH_TOKEN = KM_BYTES | 1003, /* Authentication token that proves secure user + authentication has been performed. Structure + defined in hw_auth_token_t in hw_auth_token.h. */ } keymaster_tag_t; /** @@ -545,8 +546,6 @@ inline void keymaster_free_characteristics(keymaster_key_characteristics_t* char } } -#if defined(__cplusplus) -} // extern "C" -#endif // defined(__cplusplus) +__END_DECLS #endif // ANDROID_HARDWARE_KEYMASTER_DEFS_H |