Searched refs:obuf (Results 1 - 8 of 8) sorted by relevance

/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/
H A DKdcComm.java192 public byte[] send(byte[] obuf) argument
198 (obuf != null && obuf.length > udpPrefLimit));
200 return send(obuf, useTCP);
203 private byte[] send(byte[] obuf, boolean useTCP) argument
206 if (obuf == null)
229 ibuf = sendIfPossible(obuf, tempKdc.next(), useTCP);
234 ibuf = sendIfPossible(obuf, tempKdc.next(), useTCP);
249 private byte[] sendIfPossible(byte[] obuf, String tempKdc, boolean useTCP) argument
253 byte[] ibuf = send(obuf, tempKd
279 send(byte[] obuf, String tempKdc, boolean useTCP) argument
372 private byte[] obuf; field in class:KdcComm.KdcCommunication
374 KdcCommunication(String kdc, int port, boolean useTCP, int timeout, int retries, byte[] obuf) argument
[all...]
H A DKrbApRep.java44 private byte[] obuf; field in class:KrbApRep
87 obuf = apRepMessg.asn1Encode();
168 return obuf;
H A DKrbPriv.java42 private byte[] obuf; field in class:KrbPriv
59 obuf = mk_priv(
97 return obuf;
H A DKrbSafe.java41 private byte[] obuf; field in class:KrbSafe
58 obuf = mk_safe(userData,
98 return obuf;
H A DKrbCred.java51 private byte[] obuf = null; field in class:KrbCred
84 obuf = credMessg.asn1Encode();
172 return obuf;
H A DKrbApReq.java51 private byte[] obuf; field in class:KrbApReq
146 obuf = message;
166 obuf = value.toByteArray();
240 obuf = apReqMessg.asn1Encode();
245 DerValue encoding = new DerValue(obuf);
460 return obuf;
H A DKrbTgsReq.java56 private byte[] obuf; field in class:KrbTgsReq
220 obuf = tgsReqMessg.asn1Encode();
246 ibuf = comm.send(obuf);
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/jgss/
H A DGSSContextImpl.java265 byte[] obuf = mechCtxt.initSecContext(inStream, inTokenLen);
269 if (obuf != null) {
270 retVal = obuf.length;
277 gssHeader = new GSSHeader(objId, obuf.length);
280 outStream.write(obuf);
359 byte[] obuf = mechCtxt.acceptSecContext(inStream, inTokenLen);
361 if (obuf != null) {
362 int retVal = obuf.length;
368 gssHeader = new GSSHeader(objId, obuf.length);
371 outStream.write(obuf);
[all...]

Completed in 109 milliseconds