Searched defs:tagLen (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DTag.java44 int tagLen; field in class:Tag
50 tagLen = 8;
53 length = 4 + tagLen;
57 tagLen = 0;
58 length = 4 + tagLen;
64 os.write(tagLen);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherBox.java397 int tagLen) throws BadPaddingException {
424 buf, offset, newLen, tagLen, blockSize, protocolVersion);
454 int decrypt(ByteBuffer bb, int tagLen) throws BadPaddingException { argument
495 bb, tagLen, blockSize, protocolVersion);
668 int tagLen, int blockSize,
676 if ((newLen - tagLen) < 0) {
710 int tagLen, int blockSize,
721 if ((newLen - tagLen) < 0) {
806 boolean sanityCheck(int tagLen, int fragmentLen) { argument
808 return fragmentLen >= tagLen;
396 decrypt(byte[] buf, int offset, int len, int tagLen) argument
667 removePadding(byte[] buf, int offset, int len, int tagLen, int blockSize, ProtocolVersion protocolVersion) argument
709 removePadding(ByteBuffer bb, int tagLen, int blockSize, ProtocolVersion protocolVersion) argument
[all...]

Completed in 31 milliseconds