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

/libcore/luni/src/main/java/javax/crypto/spec/
H A DSecretKeySpec.java35 public class SecretKeySpec implements SecretKey, KeySpec, Serializable { class in inherits:SecretKey,KeySpec,Serializable
46 * Creates a new <code>SecretKeySpec</code> for the specified key data and
57 public SecretKeySpec(byte[] key, String algorithm) { method in class:SecretKeySpec
74 * Creates a new <code>SecretKeySpec</code> for the key data from the
93 public SecretKeySpec(byte[] key, int offset, int len, String algorithm) { method in class:SecretKeySpec
144 * Returns the hash code of this <code>SecretKeySpec</code> object.
158 * Compares the specified object with this <code>SecretKeySpec</code>
171 if (!(obj instanceof SecretKeySpec)) {
174 SecretKeySpec ks = (SecretKeySpec) ob
[all...]

Completed in 139 milliseconds