diff --git a/lib/src/ecdsa_keys.dart b/lib/src/ecdsa_keys.dart index 9207bd9..692ca61 100644 --- a/lib/src/ecdsa_keys.dart +++ b/lib/src/ecdsa_keys.dart @@ -61,9 +61,15 @@ class KeyComponent { } } +/// The three different types of an ECDSA [KeyComponent]. enum KeyComponentType { + /// The x coordinate of the public key. x, + + /// The y coordinate of the public key. y, + + /// The private key. private; @override