API Reference¶
Sigilo¶
This part of the documentation covers the classes and functions
that sigilo module provides.
Stores¶
- class sigilo.stores.memory.MemoryStore¶
- __init__()¶
- get(key: str) bytes¶
- set(key: str, value: bytes)¶
Ciphers¶
- class sigilo.ciphers.Cipher¶
Common interface for encryption and decryption algorithms in Sigilo.
- encrypt(value: bytes) bytes¶
- decrypt(value: bytes) bytes¶