Updated dependencies. Removed useless zeroize.

This commit is contained in:
umgefahren 2022-07-11 16:23:42 +02:00
commit 6aaae1bea4
8 changed files with 19 additions and 51 deletions

View file

@ -119,7 +119,7 @@
//! # let shared_nhkb = [2; 32];
//! let (bob_ratchet, public_key) = RatchetEncHeader::init_bob(sk, shared_hka, shared_nhkb);
//! let ex_ratchet = bob_ratchet.export();
//! let im_ratchet = RatchetEncHeader::import(&ex_ratchet);
//! let im_ratchet = RatchetEncHeader::import(&ex_ratchet).unwrap();
//! assert_eq!(im_ratchet, bob_ratchet)
//! ```
//!