aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/asn1/InMemoryRepresentable.java
blob: 0472e8893ffc6bedd0ea92a196f4593ec0fb3e0e (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.asn1;

import java.io.IOException;

public interface InMemoryRepresentable
{
    ASN1Primitive getLoadedObject()
        throws IOException;
}