Searched refs:hmacCtx (Results 1 – 1 of 1) sorted by relevance
3926 auto hmacCtx = new HMAC_CTX; in NativeCrypto_HMAC_CTX_new() local3927 if (hmacCtx == nullptr) { in NativeCrypto_HMAC_CTX_new()3932 HMAC_CTX_init(hmacCtx); in NativeCrypto_HMAC_CTX_new()3933 return reinterpret_cast<jlong>(hmacCtx); in NativeCrypto_HMAC_CTX_new()3938 HMAC_CTX* hmacCtx = reinterpret_cast<HMAC_CTX*>(hmacCtxRef); in NativeCrypto_HMAC_CTX_free() local3939 JNI_TRACE("HMAC_CTX_free(%p)", hmacCtx); in NativeCrypto_HMAC_CTX_free()3940 if (hmacCtx == nullptr) { in NativeCrypto_HMAC_CTX_free()3944 HMAC_CTX_cleanup(hmacCtx); in NativeCrypto_HMAC_CTX_free()3945 delete hmacCtx; in NativeCrypto_HMAC_CTX_free()3951 HMAC_CTX* hmacCtx = fromContextObject<HMAC_CTX>(env, hmacCtxRef); in NativeCrypto_HMAC_Init_ex() local[all …]