Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EncodingSchemes.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace Waher.Content.Asn1
6{
10 [Flags]
11 public enum EncodingSchemes
12 {
16 BER = 1,
17
21 CER = 2,
22
26 DER = 4,
27
31 All = BER | CER | DER,
32
36 None = 0
37 }
38}
Implements static methods for Basic Encoding Rules (BER), as defined in X.690
Definition: BER.cs:14
EncodingSchemes
Available ASN.1 encoding schemes.