diff --git a/Cargo.toml b/Cargo.toml index 235b00a..2a71be8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "false-bottom" -version = "0.2.0" +version = "0.2.2" description = "A deniable encryption scheme" repository = "https://codeberg.org/skran/false-bottom" authors = ["K Shiva Kiran "] diff --git a/src/lib.rs b/src/lib.rs index 39d88bc..3a11fe6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,13 +30,13 @@ //! The [`decrypt()`](FBObj::decrypt()) method returns the message that corresponds //! to the provided [`FBKey`]. //! ```rust -//! let decrypted = fb.decrypt(&key); +//! let decrypted = fb.decrypt(&key).unwrap(); //! ``` -//! There is also an example [here](examples/encryption.rs). +//! There is also an example [here](https://codeberg.org/skran/false-bottom/src/branch/main/examples/encryption.rs). //! //! ### Import and Export //! Available formats: Raw bytes and Base64 encoded. -//! Refer to the [example](examples/export.rs). +//! Refer to the [example](https://codeberg.org/skran/false-bottom/src/branch/main/examples/export.rs) mod algo; mod arithmetic;