Lines Matching +defs:val +defs:buf
291 * @param buf buffer holding a single DER-encoded datum.
293 public DerValue(byte[] buf) throws IOException {
294 data = init(true, new ByteArrayInputStream(buf));
302 * @param buf the buffer
306 public DerValue(byte[] buf, int offset, int len) throws IOException {
307 data = init(true, new ByteArrayInputStream(buf, offset, len));
349 byte[] buf = value.getBytes(enc);
350 length = buf.length;
351 buffer = new DerInputBuffer(buf);
906 * @params val the tag value
908 public static byte createTag(byte tagClass, boolean form, byte val) {
909 byte tag = (byte)(tagClass | val);