refactoring, added documentation

This commit is contained in:
Jay
2025-10-23 16:16:27 -04:00
parent e0c669351c
commit 205aafcfe5
13 changed files with 342 additions and 228 deletions

View File

@@ -26,5 +26,5 @@ func TestGetPublicKey(t *testing.T) {
func TestGetPublicKeyInvalidPrivateKey(t *testing.T) {
_, err := GetPublicKey("abc123")
assert.ErrorContains(t, err, "private key must be 64 hex characters")
assert.ErrorContains(t, err, "private key must be 64 lowercase hex characters")
}