Skip to content
Snippets Groups Projects

Resolve "crypto : keys : impl Hash trait for Pubkey"

Merged Éloïs requested to merge 37-crypto-keys-impl-hash-trait-for-pubkey into dev
4 files
+ 45
32
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 1
1
@@ -92,7 +92,7 @@ impl Eq for Signature {}
@@ -92,7 +92,7 @@ impl Eq for Signature {}
/// Can be generated with [`KeyPairGenerator`].
/// Can be generated with [`KeyPairGenerator`].
///
///
/// [`KeyPairGenerator`]: struct.KeyPairGenerator.html
/// [`KeyPairGenerator`]: struct.KeyPairGenerator.html
#[derive(Copy, Clone, PartialEq, Eq)]
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
pub struct PublicKey(pub [u8; 32]);
pub struct PublicKey(pub [u8; 32]);
impl ToBase58 for PublicKey {
impl ToBase58 for PublicKey {
Loading