Lines Matching defs:ciphertext

442     byte[] decryptSeq(byte[] ivec, byte[] ciphertext, int start, int len)
450 return des.doFinal(ciphertext, start, len);
470 ciphertext, start, len);
492 ciphertext, start, len);
532 void decryptData(WrapToken token, byte[] ciphertext, int cStart, int cLen,
536 Krb5Token.debug("decryptData : ciphertext = " +
537 Krb5Token.getHexBytes(ciphertext));
543 ciphertext, cStart, cLen, plaintext, pStart);
547 des3KdDecrypt(token, ciphertext, cStart, cLen, plaintext, pStart);
551 arcFourDecrypt(token, ciphertext, cStart, cLen, plaintext, pStart);
561 void decryptData(WrapToken_v2 token, byte[] ciphertext, int cStart,
566 Krb5Token.debug("decryptData : ciphertext = " +
567 Krb5Token.getHexBytes(ciphertext));
572 aes128Decrypt(token, ciphertext, cStart, cLen,
576 aes256Decrypt(token, ciphertext, cStart, cLen,
598 byte[] ciphertext = new byte[cLen];
600 Krb5Token.readFully(cipherStream, ciphertext, 0, cLen);
609 des3KdDecrypt(token, ciphertext, 0, cLen, plaintext, pStart);
640 byte[] ciphertext = new byte[cLen];
642 Krb5Token.readFully(cipherStream, ciphertext, 0, cLen);
652 aes128Decrypt(token, ciphertext, 0, cLen,
656 aes256Decrypt(token, ciphertext, 0, cLen,
692 byte[] ciphertext = arcFourEncrypt(token, confounder, plaintext,
696 os.write(ciphertext);
732 int pStart, int pLen, byte[] padding, byte[] ciphertext, int cStart)
744 ciphertext, pos);
747 ciphertext, pos);
750 ciphertext, pos);
763 System.arraycopy(ctext, 0, ciphertext, cStart, ctext.length);
769 System.arraycopy(ctext2, 0, ciphertext, cStart, ctext2.length);
788 byte[] plaintext, int pStart, int pLen, byte[] ciphertext, int cStart,
805 System.arraycopy(ctext, 0, ciphertext, cStart, ctext.length);
1014 * @param len the length of the ciphertext data
1131 private void des3KdDecrypt(WrapToken token, byte[] ciphertext,
1137 ciphertext, cStart, cLen);
1147 Krb5Token.getHexBytes(ciphertext, cStart, cLen));
1203 private void arcFourDecrypt(WrapToken token, byte[] ciphertext,
1215 ciphertext, cStart, cLen, seqNum);
1225 Krb5Token.getHexBytes(ciphertext, cStart, cLen));
1322 private void aes128Decrypt(WrapToken_v2 token, byte[] ciphertext,
1330 ZERO_IV_AES, ciphertext, cStart, cLen);
1340 Krb5Token.getHexBytes(ciphertext, cStart, cLen));
1391 private void aes256Decrypt(WrapToken_v2 token, byte[] ciphertext,
1398 ZERO_IV_AES, ciphertext, cStart, cLen);
1408 Krb5Token.getHexBytes(ciphertext, cStart, cLen));
1432 * as part fo the ciphertext for this token.