We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e8493d commit ca1fc38Copy full SHA for ca1fc38
lib/std/crypto/ecdsa.zig
@@ -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.
20
pub const EcdsaP384Sha384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha2.Sha384);
21
/// ECDSA over P-384 with SHA3-384.
22
-pub const EcdsaP256Sha3_384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha3.Sha3_384);
+pub const EcdsaP384Sha3_384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha3.Sha3_384);
23
/// ECDSA over Secp256k1 with SHA-256.
24
pub const EcdsaSecp256k1Sha256 = Ecdsa(crypto.ecc.Secp256k1, crypto.hash.sha2.Sha256);
25
/// ECDSA over Secp256k1 with SHA-256(SHA-256()) -- The Bitcoin signature system.
0 commit comments