Searched defs:obuf (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbCred.java50 private byte[] obuf = null; field in class:KrbCred
88 obuf = credMessg.asn1Encode();
181 return obuf;
H A DKrbPriv.java42 private byte[] obuf; field in class:KrbPriv
59 obuf = mk_priv(
98 return obuf;
H A DKrbSafe.java41 private byte[] obuf; field in class:KrbSafe
58 obuf = mk_safe(userData,
99 return obuf;
H A DKrbApRep.java44 private byte[] obuf; field in class:KrbApRep
89 obuf = apRepMessg.asn1Encode();
170 return obuf;
H A DKrbTgsReq.java55 private byte[] obuf; field in class:KrbTgsReq
161 obuf = tgsReqMessg.asn1Encode();
187 ibuf = comm.send(obuf);
H A DKdcComm.java183 public byte[] send(byte[] obuf) argument
189 (obuf != null && obuf.length > udpPrefLimit));
191 return send(obuf, useTCP);
194 private byte[] send(byte[] obuf, boolean useTCP) argument
197 if (obuf == null)
219 ibuf = send(obuf,tempKdc,useTCP);
228 ibuf = send(obuf, tempKdc, true);
254 private byte[] send(byte[] obuf, String tempKdc, boolean useTCP) argument
257 if (obuf
347 private byte[] obuf; field in class:KdcComm.KdcCommunication
349 KdcCommunication(String kdc, int port, boolean useTCP, int timeout, int retries, byte[] obuf) argument
[all...]
H A DKrbApReq.java48 private byte[] obuf; field in class:KrbApReq
141 obuf = message;
161 obuf = value.toByteArray();
238 obuf = apReqMessg.asn1Encode();
243 DerValue encoding = new DerValue(obuf);
446 return obuf;

Completed in 40 milliseconds