Searched defs:getChecksumLength (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DAes128.java50 public static int getChecksumLength() { method in class:Aes128
51 return CRYPTO.getChecksumLength();
H A DAes256.java50 public static int getChecksumLength() { method in class:Aes256
51 return CRYPTO.getChecksumLength();
H A DArcFourHmac.java51 public static int getChecksumLength() { method in class:ArcFourHmac
52 return CRYPTO.getChecksumLength();
H A DDes3.java53 public static int getChecksumLength() { method in class:Des3
54 return CRYPTO.getChecksumLength();
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DDes3DkCrypto.java211 public int getChecksumLength() { method in class:Des3DkCrypto
H A DAesDkCrypto.java155 public int getChecksumLength() { method in class:AesDkCrypto
214 if (hmac.length == getChecksumLength()) {
216 } else if (hmac.length > getChecksumLength()) {
217 byte[] buf = new byte[getChecksumLength()];
222 hmac.length + "; expecting : " + getChecksumLength());
H A DArcFourCrypto.java118 public int getChecksumLength() { method in class:ArcFourCrypto
190 if (hmac.length == getChecksumLength()) {
192 } else if (hmac.length > getChecksumLength()) {
193 byte[] buf = new byte[getChecksumLength()];
198 hmac.length + "; expecting : " + getChecksumLength());
H A DDkCrypto.java71 public abstract int getChecksumLength(); // in bytes method in class:DkCrypto
155 int ccSize = cipherSize + getChecksumLength(); // cipher | hmac
192 getChecksumLength());
321 int cksumSize = getChecksumLength();
429 if (hmac.length == getChecksumLength()) {
431 } else if (hmac.length > getChecksumLength()) {
432 byte[] buf = new byte[getChecksumLength()];
437 hmac.length + "; expecting : " + getChecksumLength());
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DCipherHelper.java299 byte[] output = new byte[getChecksumLength()];
507 int getChecksumLength() throws GSSException { method in class:CipherHelper
514 return Des3.getChecksumLength();
517 return Aes128.getChecksumLength();
519 return Aes256.getChecksumLength();

Completed in 329 milliseconds