Searched defs:transformation (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestPKCS5PaddingError.java43 String transformation; field in class:TestPKCS5PaddingError.CI
46 CI(String transformation, String keyAlgo) { argument
47 this.transformation = transformation;
74 System.out.println("===" + currTest.transformation + "===");
79 Cipher c1 = Cipher.getInstance(currTest.transformation,
84 Cipher c2 = Cipher.getInstance(currTest.transformation, p);
H A DTestSymmCiphers.java45 String transformation; field in class:TestSymmCiphers.CI
49 CI(String transformation, String keyAlgo, int dataSize) { argument
50 this.transformation = transformation;
92 System.out.println("===" + currTest.transformation + "===");
97 Cipher c1 = Cipher.getInstance(currTest.transformation, p);
98 Cipher c2 = Cipher.getInstance(currTest.transformation,
H A DTestSymmCiphersNoPad.java45 String transformation; field in class:TestSymmCiphersNoPad.CI
49 CI(String transformation, String keyAlgo, int dataSize) { argument
50 this.transformation = transformation;
74 System.out.println("===" + currTest.transformation + "===");
79 Cipher c1 = Cipher.getInstance(currTest.transformation, p);
80 Cipher c2 = Cipher.getInstance(currTest.transformation,
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DKeyProtector.java372 * @param transformation the transformation
376 String transformation) {
377 super(cipherSpi, provider, transformation);
374 CipherForKeyProtector(CipherSpi cipherSpi, Provider provider, String transformation) argument
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DJsseJce.java134 * JCE transformation string for RSA with PKCS#1 v1.5 padding.
139 * JCE transformation string for the stream cipher RC4.
143 * JCE transformation string for DES in CBC mode without padding.
147 * JCE transformation string for (3-key) Triple DES in CBC mode
152 * JCE transformation string for AES in CBC mode
220 static Cipher getCipher(String transformation) argument
224 return Cipher.getInstance(transformation);
226 return Cipher.getInstance(transformation, cryptoProvider);
H A DCipherSuite.java401 // JCE cipher transformation string, e.g. AES/CBC/NoPadding
402 final String transformation; field in class:CipherSuite.BulkCipher
426 BulkCipher(String transformation, int keySize, argument
428 this.transformation = transformation;
429 String[] splits = transformation.split("/");
442 BulkCipher(String transformation, int keySize, argument
444 this.transformation = transformation;
445 String[] splits = transformation
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java58 * requested <i>transformation</i> to it. Optionally, the name of a provider
61 * <p>A <i>transformation</i> is a string that describes the operation (or
63 * output. A transformation always includes the name of a cryptographic
67 * <p> A transformation is of the form:<p>
77 * For example, the following is a valid transformation:<p>
200 // The transformation
201 private String transformation; field in class:Cipher
244 * @param transformation the transformation
248 String transformation) {
246 Cipher(CipherSpi cipherSpi, Provider provider, String transformation) argument
268 Cipher(CipherSpi cipherSpi, String transformation) argument
275 Cipher(CipherSpi firstSpi, Service firstService, Iterator serviceIterator, String transformation, List transforms) argument
285 tokenizeTransformation(String transformation) argument
410 getTransforms(String transformation) argument
483 getInstance(String transformation) argument
567 getInstance(String transformation, String provider) argument
616 getInstance(String transformation, Provider provider) argument
2498 getConfiguredPermission( String transformation) argument
2525 getMaxAllowedKeyLength(String transformation) argument
2549 getMaxAllowedParameterSpec( String transformation) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipher.java243 * transformation and operates on the specified context document.
246 * requested transformation, an instance of Cipher containing that
247 * implementation is returned. If the transformation is not available in
250 * <b>NOTE<sub>1</sub>:</b> The transformation name does not follow the same
262 * @param transformation the name of the transformation, e.g.,
269 public static XMLCipher getInstance(String transformation) throws argument
273 if (null == transformation)
275 if(!isValidEncryptionAlgorithm(transformation))
280 instance._algorithm = transformation;
328 getInstance(String transformation, String canon) argument
343 getInstance(String transformation,Cipher cipher) argument
395 getProviderInstance(String transformation, String provider) argument
462 getProviderInstance( String transformation, String provider, String canon) argument
[all...]

Completed in 69 milliseconds