namespace PRSServer { public enum EncodingFormat { /// /// Format encoding suitable for human-friendly printing. /// PRINT = 0, /// /// PEM text encoding. /// PEM = 1, /// /// DER binary encoding. /// DER = 2 } }