HomeSort by relevance Sort by last modified time
    Searched full:hmac_size (Results 1 - 6 of 6) sorted by null

  /system/keymaster/
integrity_assured_key_blob.cpp 34 static const size_t HMAC_SIZE = 8;
53 const AuthorizationSet& hidden, uint8_t hmac[HMAC_SIZE]) {
74 assert(tmp_len >= HMAC_SIZE);
75 memcpy(hmac, tmp, min(HMAC_SIZE, tmp_len));
89 HMAC_SIZE;
111 if (p > end || p + HMAC_SIZE > end)
114 uint8_t computed_hmac[HMAC_SIZE];
115 keymaster_error_t error = ComputeHmac(key_blob.begin(), key_blob.key_material_size - HMAC_SIZE,
120 if (CRYPTO_memcmp(key_blob.end() - HMAC_SIZE, computed_hmac, HMAC_SIZE) != 0
    [all...]
  /external/boringssl/src/crypto/evp/
p_hmac_asn1.c 66 static int hmac_size(const EVP_PKEY *pkey) { return EVP_MAX_MD_SIZE; } function
84 hmac_size, 0 /* pkey_bits */, 0 /* param_decode */,
  /external/boringssl/src/crypto/cipher/
e_tls.c 222 if (in_len < HMAC_size(&tls_ctx->hmac_ctx)) {
278 (unsigned)HMAC_size(&tls_ctx->hmac_ctx));
289 assert(data_plus_mac_len >= HMAC_size(&tls_ctx->hmac_ctx));
291 data_len = data_plus_mac_len - HMAC_size(&tls_ctx->hmac_ctx);
318 assert(mac_len == HMAC_size(&tls_ctx->hmac_ctx));
340 assert(mac_len == HMAC_size(&tls_ctx->hmac_ctx));
  /external/boringssl/src/include/openssl/
hmac.h 123 /* HMAC_size returns the size, in bytes, of the HMAC that will be produced by
125 OPENSSL_EXPORT size_t HMAC_size(const HMAC_CTX *ctx);
  /external/boringssl/src/crypto/hmac/
hmac.c 188 size_t HMAC_size(const HMAC_CTX *ctx) {
  /external/boringssl/src/ssl/
t1_lib.c     [all...]

Completed in 826 milliseconds