8 releases

new 0.6.2 May 23, 2024
0.6.1 May 21, 2024
0.5.0 Mar 5, 2024
0.4.3 Jan 22, 2024

#1820 in Cryptography

Download history 88/week @ 2024-02-14 10/week @ 2024-02-21 108/week @ 2024-02-28 51/week @ 2024-03-06 20/week @ 2024-03-13 3/week @ 2024-03-20 13/week @ 2024-03-27 21/week @ 2024-04-03 250/week @ 2024-05-15

250 downloads per month
Used in 6 crates

MIT license

16KB

The backend of a container

Create a container

The Create trait is used to create a new instance of a Backend.

Mainly, is performs the following tasks:

  1. It creates the Backend::Settings of the backend. The settings contains runtime information which are stored in the header of the container. Later, when the container is opened again, the settings are extracted from the header and passed back to the backend.
  2. The final [Create::build()] call creates the backend instance, which is used by the container. Its gets the binary data of the header (which already contains the binary encoded settings) and must store it at a suitable location.

Open a container

The Open trait is used to open an existing Backend instance.

The container asks the trait for the binary header data using the ReceiveHeader trait. The implementation should load it from a suitable location.

The final [Open::build()] call creates the backend instance, which is used by the container.

No runtime deps