summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/KeyEncapsulation.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcprov/src/main/java/org/bouncycastle/crypto/KeyEncapsulation.java')
-rw-r--r--bcprov/src/main/java/org/bouncycastle/crypto/KeyEncapsulation.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/bcprov/src/main/java/org/bouncycastle/crypto/KeyEncapsulation.java b/bcprov/src/main/java/org/bouncycastle/crypto/KeyEncapsulation.java
deleted file mode 100644
index 1674457..0000000
--- a/bcprov/src/main/java/org/bouncycastle/crypto/KeyEncapsulation.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.bouncycastle.crypto;
-
-/**
- * The basic interface for key encapsulation mechanisms.
- */
-public interface KeyEncapsulation
-{
- /**
- * Initialise the key encapsulation mechanism.
- */
- public void init(CipherParameters param);
-
- /**
- * Encapsulate a randomly generated session key.
- */
- public CipherParameters encrypt(byte[] out, int outOff, int keyLen);
-
- /**
- * Decapsulate an encapsulated session key.
- */
- public CipherParameters decrypt(byte[] in, int inOff, int inLen, int keyLen);
-}