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:
Diffstat (limited to 'src/main/java/org/bouncycastle/crypto/tls/AbstractTlsCipherFactory.java')
-rw-r--r--src/main/java/org/bouncycastle/crypto/tls/AbstractTlsCipherFactory.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/java/org/bouncycastle/crypto/tls/AbstractTlsCipherFactory.java b/src/main/java/org/bouncycastle/crypto/tls/AbstractTlsCipherFactory.java
index 82f2ea78..289c5dca 100644
--- a/src/main/java/org/bouncycastle/crypto/tls/AbstractTlsCipherFactory.java
+++ b/src/main/java/org/bouncycastle/crypto/tls/AbstractTlsCipherFactory.java
@@ -2,10 +2,13 @@ package org.bouncycastle.crypto.tls;
import java.io.IOException;
-public class AbstractTlsCipherFactory implements TlsCipherFactory {
+public class AbstractTlsCipherFactory
+ implements TlsCipherFactory
+{
public TlsCipher createCipher(TlsContext context, int encryptionAlgorithm, int macAlgorithm)
- throws IOException {
+ throws IOException
+ {
throw new TlsFatalAlert(AlertDescription.internal_error);
}