Searched refs:confounderSize (Results 1 - 20 of 20) sorted by relevance

/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/crypto/
H A DRsaMd5DesCksumType.java49 public int confounderSize() { method in class:RsaMd5DesCksumType
85 byte[] new_data = new byte[size + confounderSize()];
86 byte[] conf = Confounder.bytes(confounderSize());
87 System.arraycopy(conf, 0, new_data, 0, confounderSize());
88 System.arraycopy(data, 0, new_data, confounderSize(), size);
93 System.arraycopy(conf, 0, cksum, 0, confounderSize());
94 System.arraycopy(mdc_cksum, 0, cksum, confounderSize(),
95 cksumSize() - confounderSize());
134 byte[] new_data = new byte[size + confounderSize()];
135 System.arraycopy(cksum, 0, new_data, 0, confounderSize());
[all...]
H A DDesMacCksumType.java44 public int confounderSize() { method in class:DesMacCksumType
83 byte[] new_data = new byte[size + confounderSize()];
84 byte[] conf = Confounder.bytes(confounderSize());
85 System.arraycopy(conf, 0, new_data, 0, confounderSize());
86 System.arraycopy(data, 0, new_data, confounderSize(), size);
99 System.arraycopy(conf, 0, cksum, 0, confounderSize());
100 System.arraycopy(residue, 0, cksum, confounderSize(),
101 cksumSize() - confounderSize());
137 byte[] new_data = new byte[size + confounderSize()];
138 System.arraycopy(cksum, 0, new_data, 0, confounderSize());
[all...]
H A DRsaMd5CksumType.java44 public int confounderSize() { method in class:RsaMd5CksumType
H A DNullEType.java49 public int confounderSize() { method in class:NullEType
H A DCrc32CksumType.java42 public int confounderSize() { method in class:Crc32CksumType
H A DDesCbcCrcEType.java51 public int confounderSize() { method in class:DesCbcCrcEType
H A DDesCbcMd5EType.java54 public int confounderSize() { method in class:DesCbcMd5EType
H A DEType.java129 public abstract int confounderSize(); method in class:EType
164 return data.length - confounderSize() - checksumSize() -
169 return confounderSize();
173 return confounderSize() + checksumSize();
177 return confounderSize() + checksumSize() + dataSize(data);
H A DDesCbcEType.java93 int new_size = data.length + confounderSize() + checksumSize();
114 byte[] conf = Confounder.bytes(confounderSize());
115 System.arraycopy(conf, 0, new_data, 0, confounderSize());
H A DAes128CtsHmacSha1EType.java50 public int confounderSize() { method in class:Aes128CtsHmacSha1EType
H A DAes256CtsHmacSha1EType.java50 public int confounderSize() { method in class:Aes256CtsHmacSha1EType
H A DArcFourHmacEType.java50 public int confounderSize() { method in class:ArcFourHmacEType
H A DDes3CbcHmacSha1KdEType.java44 public int confounderSize() { method in class:Des3CbcHmacSha1KdEType
H A DHmacMd5ArcFourCksumType.java46 public int confounderSize() { method in class:HmacMd5ArcFourCksumType
H A DHmacSha1Aes256CksumType.java46 public int confounderSize() { method in class:HmacSha1Aes256CksumType
H A DHmacSha1Aes128CksumType.java46 public int confounderSize() { method in class:HmacSha1Aes128CksumType
H A DHmacSha1Des3KdCksumType.java40 public int confounderSize() { method in class:HmacSha1Des3KdCksumType
H A DDesMacKCksumType.java43 public int confounderSize() { method in class:DesMacKCksumType
H A DCksumType.java141 public abstract int confounderSize(); method in class:CksumType
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/crypto/dk/
H A DArcFourCrypto.java49 private static final int confounderSize = 8; field in class:ArcFourCrypto
272 byte[] confounder = Confounder.bytes(confounderSize);
413 byte[] output = new byte[plaintext.length - confounderSize];
414 System.arraycopy(plaintext, confounderSize, output, 0, output.length);

Completed in 182 milliseconds