Registry / crypto / rsa-fdh

rsa-fdh

JSON →
library0.5.0rscratesunverified

RSA-FDH is a provably secure blind-signing signature scheme using RSA and a full domain hash, supporting blind signing and blind signatures.

# Cargo.toml [dependencies] rsa-fdh = "0.5.0"
INSTALL
IMPORT
SIG · RSA-FDH
R
rsa-fdh
cryptorustv0.5.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

BlindSigner
use rsa_fdh::BlindSigner;

Creates a blind signature for a message using RSA-FDH.

use rsa_fdh::BlindSigner; let signer = BlindSigner::new(2048).unwrap(); let message = b"blind message"; let blind_sig = signer.blind_sign(message).unwrap(); println!("Blind signature: {:?}", blind_sig);
Debug
Known issues
gotchaThe crate may require careful handling of randomness and key sizes to avoid security vulnerabilities.
fix
Ensure you use a cryptographically secure random number generator and appropriate key sizes (e.g., 2048 bits or higher).
affects: >=0.5.0
Upgrade
Version history
0.5.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
18 hits · last 30 days
node
16
Amazon
1
Resources
rsa-fdh — cargo add rsa-fdh · libregistry