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