Searched refs:paddings (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/ |
D | CipherWrapThread.java | 26 CipherWrapThread(String name, int[] keys, String[] modes, String[] paddings) { in CipherWrapThread() argument 27 super(name, keys, modes, paddings); in CipherWrapThread()
|
D | CipherRSAThread.java | 26 CipherRSAThread(String name, int[] keys, String[] modes, String[] paddings) { in CipherRSAThread() argument 27 super(name, keys, modes, paddings); in CipherRSAThread()
|
D | CipherPBEThread.java | 30 CipherPBEThread(String name, int[] keys, String[] modes, String[] paddings) { in CipherPBEThread() argument 31 super(name, keys, modes, paddings); in CipherPBEThread()
|
D | CipherSymmetricKeyThread.java | 28 CipherSymmetricKeyThread(String name, int[] keys, String[] modes, String[] paddings) { in CipherSymmetricKeyThread() argument 29 super(name, keys, modes, paddings); in CipherSymmetricKeyThread()
|
D | CipherThread.java | 40 CipherThread(String name, int[] keys, String[] modes, String[] paddings) { in CipherThread() argument 44 paddingModeAr = paddings; in CipherThread()
|
/libcore/support/src/test/java/libcore/java/security/ |
D | StandardNames.java | 130 Set<String> paddings = CIPHER_PADDINGS.get(algorithm); in provideCipherPaddings() local 131 if (paddings == null) { in provideCipherPaddings() 132 paddings = new HashSet<String>(); in provideCipherPaddings() 133 CIPHER_PADDINGS.put(algorithm, paddings); in provideCipherPaddings() 135 paddings.addAll(Arrays.asList(newPaddings)); in provideCipherPaddings()
|
/libcore/luni/src/test/java/libcore/javax/crypto/ |
D | CipherTest.java | 1029 Set<String> paddings = StandardNames.getPaddingsForCipher(algorithm); in test_getInstance() local 1030 if (paddings != null) { in test_getInstance() 1031 for (String padding : paddings) { in test_getInstance()
|