mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Merge branch 'master' into detached-child
This commit is contained in:
commit
807c14a956
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ pub const EcdsaP256Sha3_256 = Ecdsa(crypto.ecc.P256, crypto.hash.sha3.Sha3_256);
|
||||||
/// ECDSA over P-384 with SHA-384.
|
/// ECDSA over P-384 with SHA-384.
|
||||||
pub const EcdsaP384Sha384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha2.Sha384);
|
pub const EcdsaP384Sha384 = Ecdsa(crypto.ecc.P384, crypto.hash.sha2.Sha384);
|
||||||
/// ECDSA over P-384 with SHA3-384.
|
/// ECDSA over P-384 with SHA3-384.
|
||||||
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);
|
||||||
/// ECDSA over Secp256k1 with SHA-256.
|
/// ECDSA over Secp256k1 with SHA-256.
|
||||||
pub const EcdsaSecp256k1Sha256 = Ecdsa(crypto.ecc.Secp256k1, crypto.hash.sha2.Sha256);
|
pub const EcdsaSecp256k1Sha256 = Ecdsa(crypto.ecc.Secp256k1, crypto.hash.sha2.Sha256);
|
||||||
/// ECDSA over Secp256k1 with SHA-256(SHA-256()) -- The Bitcoin signature system.
|
/// ECDSA over Secp256k1 with SHA-256(SHA-256()) -- The Bitcoin signature system.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue