oidEd25519 top-level property

Uint8List oidEd25519
final

A DER encoded SEQUENCE(OID) for the Ed25519 algorithm.

Implementation

final oidEd25519 = Uint8List.fromList([
  ...[0x30, 0x05], // SEQUENCE
  ...[0x06, 0x03], // OID with 3 bytes
  ...[0x2b, 0x65, 0x70], // id-Ed25519 OID
]);