Searched refs:hmacCtx (Results 1 – 1 of 1) sorted by relevance
3608 auto hmacCtx = new HMAC_CTX; in NativeCrypto_HMAC_CTX_new() local3609 if (hmacCtx == nullptr) { in NativeCrypto_HMAC_CTX_new()3614 HMAC_CTX_init(hmacCtx); in NativeCrypto_HMAC_CTX_new()3615 return reinterpret_cast<jlong>(hmacCtx); in NativeCrypto_HMAC_CTX_new()3620 HMAC_CTX* hmacCtx = reinterpret_cast<HMAC_CTX*>(hmacCtxRef); in NativeCrypto_HMAC_CTX_free() local3621 JNI_TRACE("HMAC_CTX_free(%p)", hmacCtx); in NativeCrypto_HMAC_CTX_free()3622 if (hmacCtx == nullptr) { in NativeCrypto_HMAC_CTX_free()3625 HMAC_CTX_cleanup(hmacCtx); in NativeCrypto_HMAC_CTX_free()3626 delete hmacCtx; in NativeCrypto_HMAC_CTX_free()3632 HMAC_CTX* hmacCtx = fromContextObject<HMAC_CTX>(env, hmacCtxRef); in NativeCrypto_HMAC_Init_ex() local[all …]