0.2.9
- Add
randfeature gate to ecdsa methods requiring a random number generator. See PR 5212.
0.2.8
- Bump
ringto `0.17.5. See PR 4779.
0.2.7
- Add
randfeature to gate methods requiring a random number generator, enabling use in restricted environments (e.g. smartcontracts). This feature is not enabled by default. See PR 4349.
0.2.6
- Make
PeerId::to_bytesandPeerId::to_base58takeselfby value to follow Rust convention ofCopytypes. See PR 4653.
0.2.5
- Fix usage of HKDF within
Keypair::derive_secret. See PR 4554.
0.2.4
- Implement
Keypair::derive_secret, to deterministically derive a new secret from the embedded secret key. See PR 4554.
0.2.3
- Fix RUSTSEC-2022-0093 by updating
ed25519-dalekto2.0. See PR 4337
0.2.2
- Implement
from_protobuf_encodingfor RSAKeypair. See PR 4193.
0.2.1
- Expose
KeyTypeforPublicKeyandKeypair. See PR 4107.
0.2.0
Raise MSRV to 1.65. See PR 3715.
Add support for exporting and importing ECDSA keys via the libp2p protobuf format. See PR 3863.
Make
KeypairandPublicKeyopaque. See PR 3866.Remove
identity::secp256k1::SecretKey::sign_hashand makeidentity::secp256k1::SecretKey::signinfallible. See PR 3850.Remove deprecated items. See PR 3928.
Remove
PeerId::try_from_multiaddr.multiaddr::Protocol::P2pis now type-safe and contains aPeerIddirectly, rendering this function obsolete. See PR 3656.Remove
PeerId::is_public_keybecause it is unused and can be implemented externally. See PR 3656.
0.1.2
- Add
impl From<ed25519::PublicKey> for PublicKeyso thatPublicKey::from(ed25519::PublicKey)works. See PR 3805.
- Follow Rust naming conventions for conversion methods. See PR 3775.
0.1.1
- Add
Fromimpl for specific keypairs. See PR 3626.