HomeSort by relevance Sort by last modified time
    Searched defs:EVP_has_aes_hardware (Results 1 - 5 of 5) sorted by null

  /libcore/support/src/test/java/libcore/java/security/
CpuFeatures.java 49 Method EVP_has_aes_hardware = nativeCrypto.getDeclaredMethod("EVP_has_aes_hardware");
50 EVP_has_aes_hardware.setAccessible(true);
51 return ((Integer) EVP_has_aes_hardware.invoke(null)) == 1;
  /external/conscrypt/libcore-stub/src/main/java/libcore/java/security/
CpuFeatures.java 57 Method EVP_has_aes_hardware =
58 nativeCrypto.getDeclaredMethod("EVP_has_aes_hardware");
59 EVP_has_aes_hardware.setAccessible(true);
60 return ((Integer) EVP_has_aes_hardware.invoke(null)) == 1;
  /external/boringssl/src/crypto/fipsmodule/cipher/
e_aes.c     [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
NativeCrypto.java 699 static native int EVP_has_aes_hardware();
722 static final boolean HAS_AES_HARDWARE = EVP_has_aes_hardware() == 1;
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 807 milliseconds