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

ASN1Encodable.java « asn1 « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60a57e380350dd8a775348710835be3bc3f3a964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.spongycastle.asn1;

/**
 * Basic interface to produce serialisers for ASN.1 encodings.
 */
public interface ASN1Encodable
{
    /**
     * Return an object, possibly constructed, of ASN.1 primitives
     * @return an ASN.1 primitive.
     */
    ASN1Primitive toASN1Primitive();
}