Home | History | Annotate | Download | only in crypto

Lines Matching refs:encryptedData

44  *     encryptedData   OCTET STRING }
63 // the "encryptedData" field
64 private byte[] encryptedData;
100 this.encryptedData = seq[1].getOctetString();
102 throw new IOException("encryptedData field overrun");
121 * @param encryptedData encrypted data. The contents of
125 * <code>encryptedData</code> is null.
126 * @exception IllegalArgumentException if <code>encryptedData</code>
131 public EncryptedPrivateKeyInfo(String algName, byte[] encryptedData)
139 if (encryptedData == null) {
140 throw new NullPointerException("the encryptedData " +
142 } else if (encryptedData.length == 0) {
143 throw new IllegalArgumentException("the encryptedData " +
146 this.encryptedData = encryptedData.clone();
162 * @param encryptedData encrypted data. The contents of
166 * <code>encryptedData</code> is null.
167 * @exception IllegalArgumentException if <code>encryptedData</code>
173 byte[] encryptedData) throws NoSuchAlgorithmException {
180 if (encryptedData == null) {
181 throw new NullPointerException("encryptedData must be non-null");
182 } else if (encryptedData.length == 0) {
183 throw new IllegalArgumentException("the encryptedData " +
186 this.encryptedData = encryptedData.clone();
225 return this.encryptedData.clone();
250 encoded = cipher.doFinal(encryptedData);
274 encoded = c.doFinal(encryptedData);
390 tmp.putOctetString(encryptedData);