Searched defs:evp_md (Results 1 - 11 of 11) sorted by relevance

/external/boringssl/src/crypto/fipsmodule/hmac/
H A Dhmac.c68 uint8_t *HMAC(const EVP_MD *evp_md, const void *key, size_t key_len, argument
73 if (!HMAC_Init_ex(&ctx, key, key_len, evp_md, NULL) ||
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLMac.java41 private final long evp_md; field in class:OpenSSLMac
58 private OpenSSLMac(long evp_md, int size) { argument
59 this.evp_md = evp_md;
90 NativeCrypto.HMAC_Init_ex(ctxLocal, keyBytes, evp_md);
H A DOpenSSLMessageDigestJDK.java35 private final long evp_md; field in class:OpenSSLMessageDigestJDK
55 private OpenSSLMessageDigestJDK(long evp_md, int size) throws NoSuchAlgorithmException { argument
56 this.evp_md = evp_md;
62 private OpenSSLMessageDigestJDK(long evp_md, int size, NativeRef.EVP_MD_CTX ctx, argument
64 this.evp_md = evp_md;
73 NativeCrypto.EVP_DigestInit_ex(ctxLocal, evp_md);
80 // Reset to the same state as at the end of the <init>(long evp_md, int size). We can avoid
204 return new OpenSSLMessageDigestJDK(evp_md, siz
[all...]
H A DNativeCrypto.java193 static native int EVP_DigestInit_ex(NativeRef.EVP_MD_CTX ctx, long evp_md); argument
306 static native void HMAC_Init_ex(NativeRef.HMAC_CTX ctx, byte[] key, long evp_md); argument
/external/conscrypt/common/src/jni/main/cpp/
H A DNativeCrypto.cpp2293 const EVP_MD* evp_md = reinterpret_cast<const EVP_MD*>(evpMdRef); local
2294 JNI_TRACE_MD("EVP_DigestInit_ex(%p, %p)", ctx, evp_md);
2297 JNI_TRACE("EVP_DigestInit_ex(%p) => ctx == null", evp_md);
2299 } else if (evp_md == nullptr) {
2300 Errors::jniThrowNullPointerException(env, "evp_md == null");
2304 int ok = EVP_DigestInit_ex(ctx, evp_md, nullptr);
2308 JNI_TRACE("EVP_DigestInit_ex(%p) => threw exception", evp_md);
2312 JNI_TRACE_MD("EVP_DigestInit_ex(%p, %p) => %d", ctx, evp_md, ok);
2363 EVP_MD* evp_md = reinterpret_cast<EVP_MD*>(evpMdRef); local
2364 JNI_TRACE("NativeCrypto_EVP_MD_size(%p)", evp_md);
[all...]
/external/robolectric/v3/runtime/
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 153 milliseconds