Searched refs:PKCS5S1 (Results 1 – 5 of 5) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
D | RC2.java | 111 …super("PBEwithSHA1andRC2", PKCSObjectIdentifiers.pbeWithSHA1AndRC2_CBC, true, PKCS5S1, SHA1, 64, 6… in PBEWithSHA1KeyFactory() 147 super(new CBCBlockCipher(new RC2Engine()), PKCS5S1, MD5, 64, 8); in PBEWithMD5AndRC2() 159 super(new CBCBlockCipher(new RC2Engine()), PKCS5S1, SHA1, 64, 8); in PBEWithSHA1AndRC2() 209 … super("PBEwithMD5andRC2", PKCSObjectIdentifiers.pbeWithMD5AndRC2_CBC, true, PKCS5S1, MD5, 64, 64); in PBEWithMD5KeyFactory()
|
D | DES.java | 383 … super("PBEwithMD5andDES", PKCSObjectIdentifiers.pbeWithMD5AndDES_CBC, true, PKCS5S1, MD5, 64, 64); in PBEWithMD5KeyFactory() 395 …super("PBEwithSHA1andDES", PKCSObjectIdentifiers.pbeWithSHA1AndDES_CBC, true, PKCS5S1, SHA1, 64, 6… in PBEWithSHA1KeyFactory() 421 super(new CBCBlockCipher(new DESEngine()), PKCS5S1, MD5, 64, 8); in PBEWithMD5() 433 super(new CBCBlockCipher(new DESEngine()), PKCS5S1, SHA1, 64, 8); in PBEWithSHA1()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/ |
D | PBE.java | 56 static final int PKCS5S1 = 0; field 75 if (type == PKCS5S1 || type == PKCS5S1_UTF8) in makePBEGenerator()
|
D | BaseBlockCipher.java | 689 … if (scheme == PKCS5S1 || scheme == PKCS5S1_UTF8 || scheme == PKCS5S2 || scheme == PKCS5S2_UTF8) in engineInit()
|
/external/bouncycastle/patches/ |
D | bcprov.patch | 5362 - super("PBEwithMD2andDES", PKCSObjectIdentifiers.pbeWithMD2AndDES_CBC, true, PKCS5S1, M… 5374 + // super("PBEwithMD2andDES", PKCSObjectIdentifiers.pbeWithMD2AndDES_CBC, true, PKCS5S1… 6015 - super("PBEwithMD2andRC2", PKCSObjectIdentifiers.pbeWithMD2AndRC2_CBC, true, PKCS5S1, M… 6027 + // super("PBEwithMD2andRC2", PKCSObjectIdentifiers.pbeWithMD2AndRC2_CBC, true, PKCS5S1… 7445 static final int PKCS5S1 = 0;
|