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

ASN1Encoding.java « asn1 « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 821d3b9dabf2bdb6edb41681b6e72a301ea3ddf8 (plain)
1
2
3
4
5
6
7
8
package org.bouncycastle.asn1;

public interface ASN1Encoding
{
    static final String DER = "DER";
    static final String DL = "DL";
    static final String BER = "BER";
}