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

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/digests/
OpenSSLDigest.java 33 * Holds the EVP_MD for the hashing algorithm, e.g. EVP_get_digestbyname("sha1");
35 private final int evp_md; field in class:OpenSSLDigest
63 private OpenSSLDigest(String algorithm, int evp_md, int size, int blockSize) {
65 this.evp_md = evp_md;
104 ctx = NativeCrypto.EVP_DigestInit(evp_md);
126 private static final int EVP_MD = NativeCrypto.EVP_get_digestbyname("md5");
127 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
128 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
129 public MD5() { super("MD5", EVP_MD, SIZE, BLOCK_SIZE);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLMessageDigestJDK.java 33 * Holds the EVP_MD for the hashing algorithm, e.g. EVP_get_digestbyname("sha1");
35 private final int evp_md; field in class:OpenSSLMessageDigestJDK
51 private OpenSSLMessageDigestJDK(String algorithm, int evp_md, int size)
54 this.evp_md = evp_md;
95 ctx = NativeCrypto.EVP_DigestInit(evp_md);
116 private static final int EVP_MD = NativeCrypto.EVP_get_digestbyname("md5");
117 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
119 super("MD5",EVP_MD, SIZE);
124 private static final int EVP_MD = NativeCrypto.EVP_get_digestbyname("sha1")
    [all...]
  /external/openssl/crypto/
ossl_typ.h 125 typedef struct env_md_st EVP_MD;
  /external/openssl/include/openssl/
ossl_typ.h 125 typedef struct env_md_st EVP_MD;

Completed in 71 milliseconds