Searched refs:crypt (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/javax/crypto/Cipher/
H A DByteBuffers.java77 crypt(cipher, i1, o1, outBytes, random);
78 crypt(cipher, i2, o1, outBytes, random);
79 crypt(cipher, i3, o1, outBytes, random);
80 crypt(cipher, i1, o2, outBytes, random);
81 crypt(cipher, i2, o2, outBytes, random);
82 crypt(cipher, i3, o2, outBytes, random);
87 private static void crypt(Cipher cipher, ByteBuffer in, ByteBuffer out, byte[] outBytes, Random random) throws Exception { method in class:ByteBuffers
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCounterMode.java154 crypt(in, inOff, len, out, outOff);
181 crypt(in, inOff, len, out, outOff);
200 private void crypt(byte[] in, int inOff, int len, byte[] out, int outOff) { method in class:CounterMode
H A DARCFOURCipher.java94 // core crypt code. OFB style, so works for both encryption and decryption
95 private void crypt(byte[] in, int inOfs, int inLen, byte[] out, method in class:ARCFOURCipher
211 crypt(in, inOfs, inLen, out, 0);
221 crypt(in, inOfs, inLen, out, outOfs);
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DDesAPITest.java87 public void init(String crypt, String mode, String padding) argument
96 StringBuffer cipherName = new StringBuffer(crypt);
103 if (crypt.endsWith("ede")) {
H A DPaddingTest.java110 public void init(String crypt, String mode, String padding) argument
119 StringBuffer cipherName = new StringBuffer(crypt);
126 if (crypt.endsWith("ede")) {
H A DPerformanceTest.java146 public void init(String crypt, String mode, String padding) argument
152 StringBuffer cipherName = new StringBuffer(crypt);
159 if (crypt.endsWith("ede")) {
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSACore.java91 return crypt(msg, key.getModulus(), key.getPublicExponent());
103 return crypt(msg, key.getModulus(), key.getPrivateExponent());
110 private static byte[] crypt(byte[] msg, BigInteger n, BigInteger exp) method in class:RSACore
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DCrypt.java30 * Implements the UNIX crypt(3) function, based on a direct port of the
31 * libc crypt function.
34 * From the crypt man page:
36 * crypt() is the password encryption routine, based on the NBS
41 * The first argument to crypt() is normally a user's typed
279 * Creates a new Crypt object for use with the crypt method.
290 * Implements the libc crypt(3) function.
301 public synchronized byte[] crypt(byte[] pw, byte[] salt) { method in class:Crypt
370 * program to test the crypt routine.
374 * set [a-zA-Z0-9./]. Outputs the crypt resul
[all...]
H A DJndiLoginModule.java103 * "{crypt}<b>encrypted_password</b>"
195 private static final String CRYPT = "{crypt}";
735 byte newCrypt[] = c.crypt(password.getBytes("UTF8"),

Completed in 245 milliseconds