Creates a CERElement from the supplied bytes, inferring that the first byte is the type tag. The supplied ubyte[] array is "chomped" by reference, so the original array will grow shorter as CERElements are generated.
All of the same exceptions as fromBytes()
// Decoding looks like: CERElement[] result; while (bytes.length > 0) result ~= new CERElement(bytes); // Encoding looks like: ubyte[] result; foreach (cv; cervalues) { result ~= cast(ubyte[]) cv; }
See Implementation
Creates a CERElement from the supplied bytes, inferring that the first byte is the type tag. The supplied ubyte[] array is "chomped" by reference, so the original array will grow shorter as CERElements are generated.