Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2013-06-20 10:36:15 +0400
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-06-20 10:36:15 +0400
commitc0bcf04ab1fea3a720e297b2a63571b10c27e684 (patch)
tree6a7a9f20fff1550f053ee7f93eb80493dbf48cf4 /core/src/main/java/org/bouncycastle/crypto/tls/TlsBlockCipher.java
parentdfbefd88dda8b0c74a2eecf416905d02d5fccc52 (diff)
Formatting
Diffstat (limited to 'core/src/main/java/org/bouncycastle/crypto/tls/TlsBlockCipher.java')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/tls/TlsBlockCipher.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/tls/TlsBlockCipher.java b/core/src/main/java/org/bouncycastle/crypto/tls/TlsBlockCipher.java
index e0e157ea..37762a17 100644
--- a/core/src/main/java/org/bouncycastle/crypto/tls/TlsBlockCipher.java
+++ b/core/src/main/java/org/bouncycastle/crypto/tls/TlsBlockCipher.java
@@ -16,7 +16,6 @@ import org.bouncycastle.util.Arrays;
public class TlsBlockCipher
implements TlsCipher
{
-
protected TlsContext context;
protected byte[] randomData;
protected boolean useExplicitIV;
@@ -38,10 +37,8 @@ public class TlsBlockCipher
}
public TlsBlockCipher(TlsContext context, BlockCipher clientWriteCipher, BlockCipher serverWriteCipher,
- Digest clientWriteDigest, Digest serverWriteDigest, int cipherKeySize)
- throws IOException
+ Digest clientWriteDigest, Digest serverWriteDigest, int cipherKeySize) throws IOException
{
-
this.context = context;
this.randomData = new byte[256];
@@ -309,4 +306,4 @@ public class TlsBlockCipher
}
return n;
}
-} \ No newline at end of file
+}