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