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

InputDecryptorProvider.java « operator « spongycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ef7e9c053b2f1002fc32ef98109a6fbad4e940a (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.operator;

import org.spongycastle.asn1.x509.AlgorithmIdentifier;

public interface InputDecryptorProvider
{
    public InputDecryptor get(AlgorithmIdentifier algorithm)
        throws OperatorCreationException;
}