aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/TlsCipherFactory.java
blob: 8f0d3fefaed51ca6c786c7d423ddf3a845a0e1b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.spongycastle.crypto.tls;

import java.io.IOException;

public interface TlsCipherFactory
{

    /**
     * See enumeration classes EncryptionAlgorithm, MACAlgorithm for appropriate argument values
     */
    TlsCipher createCipher(TlsContext context, int encryptionAlgorithm, int macAlgorithm)
        throws IOException;
}