Skip to content

Commit ca1fc38

Browse files
authored
crypto.ecdsa: fix EcdsaP384Sha3_384 constant name (#23403)
Spotted by @deatil -- Thanks!
1 parent 6e8493d commit ca1fc38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/crypto/ecdsa.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub const EcdsaP256Sha3_256 = Ecdsa(crypto.ecc.P256, crypto.hash.sha3.Sha3_256);
1919
/// ECDSA over P-384 with SHA-384.
2020
pub const EcdsaP384Sha384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha2.Sha384);
2121
/// ECDSA over P-384 with SHA3-384.
22-
pub const EcdsaP256Sha3_384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha3.Sha3_384);
22+
pub const EcdsaP384Sha3_384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha3.Sha3_384);
2323
/// ECDSA over Secp256k1 with SHA-256.
2424
pub const EcdsaSecp256k1Sha256 = Ecdsa(crypto.ecc.Secp256k1, crypto.hash.sha2.Sha256);
2525
/// ECDSA over Secp256k1 with SHA-256(SHA-256()) -- The Bitcoin signature system.

0 commit comments

Comments
 (0)