doc: fix example hyperlink
This commit is contained in:
parent
1aa60592ba
commit
67ab21cdbe
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "false-bottom"
|
name = "false-bottom"
|
||||||
version = "0.2.0"
|
version = "0.2.2"
|
||||||
description = "A deniable encryption scheme"
|
description = "A deniable encryption scheme"
|
||||||
repository = "https://codeberg.org/skran/false-bottom"
|
repository = "https://codeberg.org/skran/false-bottom"
|
||||||
authors = ["K Shiva Kiran <shiva_kr@riseup.net>"]
|
authors = ["K Shiva Kiran <shiva_kr@riseup.net>"]
|
||||||
|
|
|
@ -30,13 +30,13 @@
|
||||||
//! The [`decrypt()`](FBObj::decrypt()) method returns the message that corresponds
|
//! The [`decrypt()`](FBObj::decrypt()) method returns the message that corresponds
|
||||||
//! to the provided [`FBKey`].
|
//! to the provided [`FBKey`].
|
||||||
//! ```rust
|
//! ```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
|
//! ### Import and Export
|
||||||
//! Available formats: Raw bytes and Base64 encoded.
|
//! 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 algo;
|
||||||
mod arithmetic;
|
mod arithmetic;
|
||||||
|
|
Loading…
Reference in New Issue