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

/libcore/luni/src/main/java/javax/crypto/
H A DSealedObject.java93 * the serialized data is not a multiple of the ciphers block
181 byte[] serialized = cipher.doFinal(encryptedContent);
182 return readSerialized(serialized);
218 * the serialized data is not a multiple of the ciphers block
229 byte[] serialized = c.doFinal(encryptedContent);
230 return readSerialized(serialized);
269 byte[] serialized = cipher.doFinal(encryptedContent);
270 return readSerialized(serialized);
293 private static Object readSerialized(byte[] serialized) argument
297 ois = new ObjectInputStream(new ByteArrayInputStream(serialized));
[all...]

Completed in 59 milliseconds