doc: fix example hyperlink
This commit is contained in:
parent
1aa60592ba
commit
67ab21cdbe
|
@ -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 <shiva_kr@riseup.net>"]
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue