Home | History | Annotate | Download | only in jsse

Lines Matching refs:Bytes

41     final Map<Bytes, TrustAnchor> encodings
42 = new HashMap<Bytes, TrustAnchor>();
56 Bytes encoded = new Bytes(cert.getEncoded());
105 Bytes encoded = new Bytes(cert.getEncoded());
131 Bytes encoded = new Bytes(cert.getEncoded());
143 static class Bytes {
144 final byte[] bytes;
146 Bytes(byte[] bytes) {
147 this.bytes = bytes;
148 this.hash = Arrays.hashCode(bytes);
154 return Arrays.equals(bytes, ((Bytes) o).bytes);