diff --git a/common/crypto/src/encryption/x25519.rs b/common/crypto/src/encryption/x25519.rs index 499cdd3de0..d7d5be9f62 100644 --- a/common/crypto/src/encryption/x25519.rs +++ b/common/crypto/src/encryption/x25519.rs @@ -7,7 +7,7 @@ use curve25519_dalek::scalar::Scalar; // TODO: ensure this is a proper name for this considering we are not implementing entire DH here -pub const CURVE_GENERATOR: MontgomeryPoint = curve25519_dalek::constants::X25519_BASEPOINT; +const CURVE_GENERATOR: MontgomeryPoint = curve25519_dalek::constants::X25519_BASEPOINT; pub struct KeyPair { pub(crate) private_key: PrivateKey,