Lines Matching defs:encoded
55 // the ASN.1 encoded contents of this class
56 private byte[] encoded;
62 public EncryptedPrivateKeyInfo(byte[] encoded)
65 if (encoded == null) {
69 DerValue val = new DerValue(encoded);
89 this.encoded = encoded.clone();
121 if (this.encoded != null) return this.encoded.clone();
134 this.encoded = out.toByteArray();
136 return this.encoded.clone();