authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2025-03-29 15:52:34+01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2025-03-29 14:52:34+00:00
logca1fc3827e349cae1050a2f9e6e71a2996e4241b
tree5429bcc1cfa151ba19cc9e3540562591a552bb25
parent6e8493daa3c4c4dc2d6430d5379b058f6b65f297
signaturebadge-check Signed by PGP key B5690EEEBB952194

crypto.ecdsa: fix EcdsaP384Sha3_384 constant name (#23403)

Spotted by @deatil -- Thanks!

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/crypto/ecdsa.zig+1-1
...@@ -19,7 +19,7 @@ pub const EcdsaP256Sha3_256 = Ecdsa(crypto.ecc.P256, crypto.hash.sha3.Sha3_256);...@@ -19,7 +19,7 @@ pub const EcdsaP256Sha3_256 = Ecdsa(crypto.ecc.P256, crypto.hash.sha3.Sha3_256);
19/// ECDSA over P-384 with SHA-384.19/// ECDSA over P-384 with SHA-384.
20pub const EcdsaP384Sha384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha2.Sha384);20pub const EcdsaP384Sha384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha2.Sha384);
21/// ECDSA over P-384 with SHA3-384.21/// ECDSA over P-384 with SHA3-384.
22pub const EcdsaP256Sha3_384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha3.Sha3_384);22pub const EcdsaP384Sha3_384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha3.Sha3_384);
23/// ECDSA over Secp256k1 with SHA-256.23/// ECDSA over Secp256k1 with SHA-256.
24pub const EcdsaSecp256k1Sha256 = Ecdsa(crypto.ecc.Secp256k1, crypto.hash.sha2.Sha256);24pub const EcdsaSecp256k1Sha256 = Ecdsa(crypto.ecc.Secp256k1, crypto.hash.sha2.Sha256);
25/// ECDSA over Secp256k1 with SHA-256(SHA-256()) -- The Bitcoin signature system.25/// ECDSA over Secp256k1 with SHA-256(SHA-256()) -- The Bitcoin signature system.