tor_llcrypto::pk::keymanip::blind_keypair gated behind the wrong feature
In tor_llcrypto::pk::keymanip
, the blind_keypair
function is gated behind the hsv3-service
feature. However, the docs say the feature should be in hsv3-client
, and the function itself calls blind_pubkey
which is only available there. cargo test --no-default-features --features hsv3-service
fails because of this.
Refs. : tor-llcrypto/src/pk/keymanip.rs#L251-253 and tor-llcrypto/src/pk/keymanip.rs#L288.