Home | History | Annotate | Download | only in conscrypt

Lines Matching refs:SIZE

38      * Holds the output size of the message digest.
40 private final int size;
51 private OpenSSLMessageDigestJDK(String algorithm, long evp_md, int size)
55 this.size = size;
65 return size;
81 byte[] result = new byte[size];
117 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
119 super("MD5",EVP_MD, SIZE);
125 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
127 super("SHA-1", EVP_MD, SIZE);
133 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
135 super("SHA-256", EVP_MD, SIZE);
141 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
143 super("SHA-384", EVP_MD, SIZE);
149 private static final int SIZE = NativeCrypto.EVP_MD_size(EVP_MD);
151 super("SHA-512", EVP_MD, SIZE);