ED25519_OID top-level property

Uint8List ED25519_OID
final

A DER encoded SEQUENCE(OID) for the Ed25519 algorithm

Implementation

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