This commit is contained in:
Jon Häggblad
2023-08-25 09:10:10 +02:00
parent 188650ea05
commit ee67f3d0f0
+4 -4
View File
@@ -11,10 +11,10 @@ use error::CoconutInterfaceError;
// We list these explicity instead of glob export due to shadowing warnings with the pub tests
// module.
pub use nym_coconut::{
aggregate_signature_shares, aggregate_verification_keys, hash_to_scalar, prepare_blind_sign,
prove_bandwidth_credential, Attribute, Base58, BlindSignRequest, BlindedSignature, Bytable,
CoconutError, KeyPair, Parameters, PrivateAttribute, PublicAttribute, Signature,
SignatureShare, Theta, VerificationKey, blind_sign
aggregate_signature_shares, aggregate_verification_keys, blind_sign, hash_to_scalar,
prepare_blind_sign, prove_bandwidth_credential, Attribute, Base58, BlindSignRequest,
BlindedSignature, Bytable, CoconutError, KeyPair, Parameters, PrivateAttribute,
PublicAttribute, Signature, SignatureShare, Theta, VerificationKey,
};
#[derive(Debug, Serialize, Deserialize, Getters, CopyGetters, Clone, PartialEq, Eq)]