HomeSort by relevance Sort by last modified time
    Searched refs:HMAC_CTX (Results 1 - 25 of 26) sorted by null

1 2

  /external/boringssl/src/include/openssl/
hmac.h 88 * that HMAC_CTX objects will be allocated on the stack thus no allocation
89 * function is provided. If needed, allocate |sizeof(HMAC_CTX)| and call
91 OPENSSL_EXPORT void HMAC_CTX_init(HMAC_CTX *ctx);
94 OPENSSL_EXPORT void HMAC_CTX_cleanup(HMAC_CTX *ctx);
96 /* HMAC_Init_ex sets up an initialised |HMAC_CTX| to use |md| as the hash
105 OPENSSL_EXPORT int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, size_t key_len,
110 OPENSSL_EXPORT int HMAC_Update(HMAC_CTX *ctx, const uint8_t *data,
117 OPENSSL_EXPORT int HMAC_Final(HMAC_CTX *ctx, uint8_t *out,
125 OPENSSL_EXPORT size_t HMAC_size(const HMAC_CTX *ctx);
130 OPENSSL_EXPORT int HMAC_CTX_copy_ex(HMAC_CTX *dest, const HMAC_CTX *src)
    [all...]
base.h 221 typedef struct hmac_ctx_st HMAC_CTX;
ssl.h     [all...]
  /external/boringssl/src/crypto/hmac/
hmac.c 68 HMAC_CTX ctx;
89 void HMAC_CTX_init(HMAC_CTX *ctx) {
96 void HMAC_CTX_cleanup(HMAC_CTX *ctx) {
100 OPENSSL_cleanse(ctx, sizeof(HMAC_CTX));
103 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, size_t key_len,
167 int HMAC_Update(HMAC_CTX *ctx, const uint8_t *data, size_t data_len) {
171 int HMAC_Final(HMAC_CTX *ctx, uint8_t *out, unsigned int *out_len) {
188 size_t HMAC_size(const HMAC_CTX *ctx) {
192 int HMAC_CTX_copy_ex(HMAC_CTX *dest, const HMAC_CTX *src)
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLMac.java 30 private NativeRef.HMAC_CTX ctx;
83 NativeRef.HMAC_CTX ctxLocal = new NativeRef.HMAC_CTX(NativeCrypto.HMAC_CTX_new());
99 final NativeRef.HMAC_CTX ctxLocal = ctx;
137 final NativeRef.HMAC_CTX ctxLocal = ctx;
144 final NativeRef.HMAC_CTX ctxLocal = ctx;
NativeRef.java 138 public static class HMAC_CTX extends NativeRef {
139 public HMAC_CTX(long ctx) {
NativeCrypto.java 338 public static native void HMAC_Init_ex(NativeRef.HMAC_CTX ctx, byte[] key, long evp_md);
340 public static native void HMAC_Update(NativeRef.HMAC_CTX ctx, byte[] in, int inOffset, int inLength);
342 public static native void HMAC_UpdateDirect(NativeRef.HMAC_CTX ctx, long inPtr, int inLength);
344 public static native byte[] HMAC_Final(NativeRef.HMAC_CTX ctx);
    [all...]
  /external/libweave/third_party/libuweave/src/
crypto_hmac.c 20 HMAC_CTX context = {0};
  /system/keymaster/
integrity_assured_key_blob.cpp 45 HmacCleanup(HMAC_CTX* ctx) : ctx_(ctx) {}
49 HMAC_CTX* ctx_;
60 HMAC_CTX ctx;
hmac_operation.h 45 HMAC_CTX ctx_;
  /external/boringssl/src/crypto/evp/
pbkdf.c 70 HMAC_CTX hctx_tpl, hctx;
  /external/boringssl/src/crypto/hkdf/
hkdf.c 35 HMAC_CTX hmac;
  /external/boringssl/src/crypto/test/
scoped_types.h 129 using ScopedHMAC_CTX = ScopedOpenSSLContext<HMAC_CTX, void, HMAC_CTX_init,
  /external/ipsec-tools/src/racoon/
crypto_openssl.c     [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 37 static HMAC_CTX * HMAC_CTX_new(void)
39 HMAC_CTX *ctx;
48 static void HMAC_CTX_free(HMAC_CTX *ctx)
734 HMAC_CTX *ctx;
826 HMAC_CTX *ctx;
  /external/boringssl/src/ssl/
s3_lib.c 444 EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx,
t1_enc.c 162 HMAC_CTX ctx, ctx_tmp, ctx_init;
s3_srvr.c     [all...]
t1_lib.c 2494 HMAC_CTX hmac_ctx; local
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.c 70 HMAC_CTX signingContext;
  /external/boringssl/src/crypto/cipher/
e_tls.c 34 HMAC_CTX hmac_ctx; member in struct:__anon5803
49 HMAC_CTX_cleanup(&tls_ctx->hmac_ctx);
83 HMAC_CTX_init(&tls_ctx->hmac_ctx);
93 !HMAC_Init_ex(&tls_ctx->hmac_ctx, key, mac_key_len, md, NULL)) {
149 if (!HMAC_Init_ex(&tls_ctx->hmac_ctx, NULL, 0, NULL, NULL) ||
150 !HMAC_Update(&tls_ctx->hmac_ctx, ad, ad_len) ||
151 !HMAC_Update(&tls_ctx->hmac_ctx, ad_extra, sizeof(ad_extra)) ||
152 !HMAC_Update(&tls_ctx->hmac_ctx, in, in_len) ||
153 !HMAC_Final(&tls_ctx->hmac_ctx, mac, &mac_len))
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c 148 HMAC_CTX signingContext;
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]
  /external/boringssl/src/ssl/test/
bssl_shim.cc 569 EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx,
581 if (!HMAC_Init_ex(hmac_ctx, kZeros, sizeof(kZeros), EVP_sha256(), NULL) ||
    [all...]
  /frameworks/base/
compiled-classes-phone     [all...]

Completed in 1359 milliseconds

1 2