aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/asn1/Encodable.java
blob: 547029c7da4134faca7079419c20e71b5a79d44a (plain)
1
2
3
4
5
6
7
8
9
package model.asn1;

/**
 * Provides the method of encoding the specific object into a DER sequence of bytes.
 */
@FunctionalInterface
public interface Encodable {
    Byte[] encodeDER();
}