Cargo Features
cookie-hashed-domain has no features set by default.
[dependencies]
cookie-hashed-domain = { version = "0.16.0-rc.1", features = ["percent-encode", "secure", "private", "signed", "key-expansion"] }
- percent-encode = percent-encoding
- secure = key-expansion, private, signed
- private secure? = aes-gcm, base64, rand, subtle
- signed secure? = base64, hmac, rand, sha2, subtle
- key-expansion secure? = hkdf, sha2
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.
- percent-encoding percent-encode?
- aes-gcm private?
-
Enables aes-gcm ^0.9.0
dependencies for secure (private/signed) functionality
- hmac signed?
-
Enables hmac ^0.11.0
- sha2 key-expansion? signed?
-
Enables sha2 ^0.9.0
- base64 private? signed?
-
Enables base64 ^0.13
- rand private? signed?
- hkdf key-expansion?
-
Enables hkdf ^0.11.0
- subtle private? signed?