Module refinery.units.crypto

Cryptographic routines, cipher and key derivation units.

Expand source code Browse git
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Cryptographic routines, cipher and key derivation units.
"""

Sub-modules

refinery.units.crypto.cipher

Implements several popular block and stream ciphers.

refinery.units.crypto.hash

Implements various hashing algorithms.

refinery.units.crypto.keyderive

Implements key derivation routines. These are mostly meant to be used as modifiers for multibin expressions that can be passed as key arguments to …