Searched refs:cipherBlock (Results 1 - 5 of 5) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/com/sun/crypto/provider/
H A DDESedeCrypt.java118 cipherBlock(plain, plainOffset, buf1, 0);
122 cipherBlock(buf1, 0, buf2, 0);
126 cipherBlock(buf2, 0, cipher, cipherOffset);
148 cipherBlock(cipher, cipherOffset, buf1, 0);
152 cipherBlock(buf1, 0, buf2, 0);
156 cipherBlock(buf2, 0, plain, plainOffset);
H A DBlowfishCrypt.java140 cipherBlock(plain, plainOffset, cipher, cipherOffset);
164 cipherBlock(cipher, cipherOffset, plain, plainOffset);
170 private void cipherBlock(byte[] in, int inOffset, method in class:BlowfishCrypt
H A DDESCrypt.java565 cipherBlock(plain, plainOffset, cipher, cipherOffset);
592 cipherBlock(cipher, cipherOffset, plain, plainOffset);
596 void cipherBlock(byte[] in, int inOffset, byte[] out, int outOffset) { method in class:DESCrypt
/openjdk9/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/crypto/dk/
H A DDkCrypto.java504 byte[] cipherBlock = encCipher.doFinal(toBeEncrypted);
507 bytesToString(cipherBlock));
510 len = (keybytes - n <= cipherBlock.length ? (keybytes - n) :
511 cipherBlock.length);
515 System.arraycopy(cipherBlock, 0, rawkey, n, len);
517 toBeEncrypted = cipherBlock;
/openjdk9/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java1350 byte[] cipherBlock;
1353 cipherBlock = encCipher.update(toBeEncrypted);
1355 if (cipherBlock == null) {
1364 byte[] wrapped = new byte[cipherBlock.length+2+4];
1365 System.arraycopy(cipherBlock, 0, wrapped, 0, cipherBlock.length);
1366 System.arraycopy(messageType, 0, wrapped, cipherBlock.length, 2);
1367 System.arraycopy(sequenceNum, 0, wrapped, cipherBlock.length+2, 4);

Completed in 162 milliseconds