pub struct PublicKey(/* private fields */);
Expand description
A public key.
Implementations§
Source§impl PublicKey
impl PublicKey
Sourcepub fn verify_g2<H: Into<G2Affine>>(&self, sig: &Signature, hash: H) -> bool
pub fn verify_g2<H: Into<G2Affine>>(&self, sig: &Signature, hash: H) -> bool
Returns true
if the signature matches the element of G2
.
Sourcepub fn verify<M: AsRef<[u8]>>(&self, sig: &Signature, msg: M) -> bool
pub fn verify<M: AsRef<[u8]>>(&self, sig: &Signature, msg: M) -> bool
Returns true
if the signature matches the message.
This is equivalent to verify_g2(sig, hash_g2(msg))
.
Sourcepub fn encrypt<M: AsRef<[u8]>>(&self, msg: M) -> Ciphertext
pub fn encrypt<M: AsRef<[u8]>>(&self, msg: M) -> Ciphertext
Encrypts the message using the OS random number generator.
Uses the OsRng
by default. To pass in a custom random number generator, use
encrypt_with_rng()
.
Sourcepub fn encrypt_with_rng<R: RngCore, M: AsRef<[u8]>>(
&self,
rng: &mut R,
msg: M,
) -> Ciphertext
pub fn encrypt_with_rng<R: RngCore, M: AsRef<[u8]>>( &self, rng: &mut R, msg: M, ) -> Ciphertext
Encrypts the message.
Sourcepub fn from_bytes<B: Borrow<[u8; 48]>>(bytes: B) -> FromBytesResult<Self>
pub fn from_bytes<B: Borrow<[u8; 48]>>(bytes: B) -> FromBytesResult<Self>
Returns the key with the given representation, if valid.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PublicKey
impl<'de> Deserialize<'de> for PublicKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for PublicKey
impl Ord for PublicKey
Source§impl PartialOrd for PublicKey
impl PartialOrd for PublicKey
impl Copy for PublicKey
impl Eq for PublicKey
impl StructuralPartialEq for PublicKey
Auto Trait Implementations§
impl Freeze for PublicKey
impl RefUnwindSafe for PublicKey
impl Send for PublicKey
impl Sync for PublicKey
impl Unpin for PublicKey
impl UnwindSafe for PublicKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more