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

TlsCipherFactory.java « tls « crypto « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31b2bacf8f65dd64f65dbf2b652f1cf666a2d880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}