| author | |
| committer | |
| log | def25b918914405ced7f0c7eb66f8f086e878eb0 |
| tree | 61d2dd5050e3164eeb51e3ee4d134e0e0f3eb4d3 |
| parent | fcb088cb6abf8a0a20de2650491c2d9a4b1ba399 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/crypto/ecdsa.zig+1-1| ... | ... | @@ -57,7 +57,7 @@ pub fn Ecdsa(comptime Curve: type, comptime Hash: type) type { |
| 57 | 57 | pub const PublicKey = struct { |
| 58 | 58 | /// Length (in bytes) of a compressed sec1-encoded key. |
| 59 | 59 | pub const compressed_sec1_encoded_length = 1 + Curve.Fe.encoded_length; |
| 60 | /// Length (in bytes) of a compressed sec1-encoded key. | |
| 60 | /// Length (in bytes) of an uncompressed sec1-encoded key. | |
| 61 | 61 | pub const uncompressed_sec1_encoded_length = 1 + 2 * Curve.Fe.encoded_length; |
| 62 | 62 | |
| 63 | 63 | p: Curve, |