Cargo Features
[dependencies]
k256 = { version = "0.14.0-pre.2", default-features = false, features = ["std", "alloc", "arithmetic", "bits", "critical-section", "digest", "ecdh", "ecdsa", "expose-field", "hash2curve", "jwk", "pem", "pkcs8", "precomputed-tables", "schnorr", "serde", "sha256", "test-vectors"] }
- default = arithmetic, ecdsa, pkcs8, precomputed-tables, schnorr, std
-
These default features are set whenever
k256
is added without
somewhere in the dependency tree.default-features = false - std default = alloc
-
Enables std of optional ecdsa, elliptic-curve, and optional once_cell
once_cell:
optional dependencies
- alloc std
-
Enables alloc of optional ecdsa and elliptic-curve
- arithmetic default bits? ecdh? ecdsa expose-field? hash2curve? precomputed-tables schnorr
-
Enables arithmetic of elliptic-curve
Affects
k256::NonZeroScalar
,k256::PublicKey
… - bits = arithmetic
-
Enables bits of elliptic-curve
Affects
k256::ScalarBits
… - critical-section = precomputed-tables
-
Enables critical-section of once_cell
- digest sha256?
- ecdh = arithmetic
-
Enables ecdh of elliptic-curve
Affects
k256::ecdh
… - ecdsa default = arithmetic, sha256
-
Enables signing and verifying of ecdsa
Affects
ecdsa::SigningKey
,ecdsa::VerifyingKey
… - expose-field = arithmetic
- hash2curve = arithmetic
-
Enables hash2curve of elliptic-curve
- jwk
-
Enables jwk of elliptic-curve
- pem = pkcs8
-
Enables pem of ecdsa and elliptic-curve
- pkcs8 default pem?
-
Enables pkcs8 of ecdsa and elliptic-curve
- precomputed-tables default critical-section? = arithmetic, once_cell
- schnorr default = arithmetic, sha256, signature
-
Affects
k256::schnorr
… - serde = serdect
-
Enables serde of ecdsa and elliptic-curve
- sha256 ecdsa schnorr = digest, sha2
- test-vectors = hex-literal
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- once_cell critical-section? precomputed-tables
- ecdsa-core digest? ecdsa pem? pkcs8 serde?
-
Enables ecdsa
Affects
k256::ecdsa
… - hex-literal test-vectors?
- serdect serde?
- sha2 sha256?
- signature schnorr