Home | History | Annotate | Download | only in digests

Lines Matching refs:BLOCK_SIZE

128         private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
129 public MD5() { super("MD5", EVP_MD, SIZE, BLOCK_SIZE); }
135 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
136 public SHA1() { super("SHA-1", EVP_MD, SIZE, BLOCK_SIZE); }
142 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
143 public SHA256() { super("SHA-256", EVP_MD, SIZE, BLOCK_SIZE); }
149 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
150 public SHA384() { super("SHA-384", EVP_MD, SIZE, BLOCK_SIZE); }
156 private static final int BLOCK_SIZE = NativeCrypto.EVP_MD_block_size(EVP_MD);
157 public SHA512() { super("SHA-512", EVP_MD, SIZE, BLOCK_SIZE); }