aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/jce/src/main/java/javax/crypto/SecretKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/jce/src/main/java/javax/crypto/SecretKey.java')
-rw-r--r--libraries/spongycastle/jce/src/main/java/javax/crypto/SecretKey.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/libraries/spongycastle/jce/src/main/java/javax/crypto/SecretKey.java b/libraries/spongycastle/jce/src/main/java/javax/crypto/SecretKey.java
deleted file mode 100644
index 8b22f02af..000000000
--- a/libraries/spongycastle/jce/src/main/java/javax/crypto/SecretKey.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package javax.crypto;
-
-import java.security.Key;
-
-/**
- * A secret (symmetric) key.
- * <p>
- * This interface contains no methods or constants.
- * Its only purpose is to group (and provide type safety for) secret keys.
- * <p>
- * Provider implementations of this interface must overwrite the
- * <code>equals</code> and <code>hashCode</code> methods inherited from
- * <code>java.lang.Object</code>, so that secret keys are compared based on
- * their underlying key material and not based on reference.
- * <p>
- * Keys that implement this interface return the string <code>RAW</code>
- * as their encoding format (see <code>getFormat</code>), and return the
- * raw key bytes as the result of a <code>getEncoded</code> method call. (The
- * <code>getFormat</code> and <code>getEncoded</code> methods are inherited
- * from the <code>java.security.Key</code> parent interface.)
- *
- * @see SecretKeyFactory
- * @see Cipher
- */
-public abstract interface SecretKey
- extends Key
-{
-}