< prev index next >

src/java.base/share/classes/com/sun/crypto/provider/PBES2Parameters.java

Print this page

        

*** 92,120 **** * </pre> */ abstract class PBES2Parameters extends AlgorithmParametersSpi { ! private static final int pkcs5PBKDF2[] = {1, 2, 840, 113549, 1, 5, 12}; ! private static final int pkcs5PBES2[] = {1, 2, 840, 113549, 1, 5, 13}; ! private static final int hmacWithSHA1[] = {1, 2, 840, 113549, 2, 7}; ! private static final int hmacWithSHA224[] = {1, 2, 840, 113549, 2, 8}; ! private static final int hmacWithSHA256[] = {1, 2, 840, 113549, 2, 9}; ! private static final int hmacWithSHA384[] = {1, 2, 840, 113549, 2, 10}; ! private static final int hmacWithSHA512[] = {1, 2, 840, 113549, 2, 11}; ! private static final int aes128CBC[] = {2, 16, 840, 1, 101, 3, 4, 1, 2}; ! private static final int aes192CBC[] = {2, 16, 840, 1, 101, 3, 4, 1, 22}; ! private static final int aes256CBC[] = {2, 16, 840, 1, 101, 3, 4, 1, 42}; private static ObjectIdentifier pkcs5PBKDF2_OID; private static ObjectIdentifier pkcs5PBES2_OID; private static ObjectIdentifier hmacWithSHA1_OID; --- 92,120 ---- * </pre> */ abstract class PBES2Parameters extends AlgorithmParametersSpi { ! private static final int[] pkcs5PBKDF2 = {1, 2, 840, 113549, 1, 5, 12}; ! private static final int[] pkcs5PBES2 = {1, 2, 840, 113549, 1, 5, 13}; ! private static final int[] hmacWithSHA1 = {1, 2, 840, 113549, 2, 7}; ! private static final int[] hmacWithSHA224 = {1, 2, 840, 113549, 2, 8}; ! private static final int[] hmacWithSHA256 = {1, 2, 840, 113549, 2, 9}; ! private static final int[] hmacWithSHA384 = {1, 2, 840, 113549, 2, 10}; ! private static final int[] hmacWithSHA512 = {1, 2, 840, 113549, 2, 11}; ! private static final int[] aes128CBC = {2, 16, 840, 1, 101, 3, 4, 1, 2}; ! private static final int[] aes192CBC = {2, 16, 840, 1, 101, 3, 4, 1, 22}; ! private static final int[] aes256CBC = {2, 16, 840, 1, 101, 3, 4, 1, 42}; private static ObjectIdentifier pkcs5PBKDF2_OID; private static ObjectIdentifier pkcs5PBES2_OID; private static ObjectIdentifier hmacWithSHA1_OID;
< prev index next >