Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
PyFLocker 0.0.1.dev50+0d81782 documentation
PyFLocker 0.0.1.dev50+0d81782 documentation

Contents:

  • API Reference
    • ciphers package
      • Base classes
      • Exception classes
      • Symmetric cipher modes
      • Algorithm loaders
        • AES
        • Camellia
        • ChaCha20
        • Diffie-Hellman Key Exchange
        • Elleptic-curve Cryptography
        • RSA Asymmetric Cipher
        • Hash functions
      • Backend of PyFLocker
        • Cryptodome specific implementation
          • AES
          • ChaCha20
          • ECC
          • RSA
          • Hash functions
          • Miscallaneous tools
          • Tools related to symmetric ciphers
          • Tools related to asymmetric ciphers
        • Cryptography specific implementation
          • AES
          • ChaCha20
          • Camellia
          • ECC
          • RSA
          • DH
          • Hash functions
          • Miscallaneous tools
          • Tools related to symmetric ciphers
          • Tools related to asymmetric ciphers
        • Tools related to symmetric ciphers
        • Tools related to asymmetric ciphers
    • locker – Easy File Encryption
  • Examples
Back to top
View this page

Algorithm loaders¶

Symmetric Ciphers¶

  • AES
    • supported_modes()
    • new()
  • Camellia
    • supported_modes()
    • new()
  • ChaCha20
    • new()

Asymmetric Ciphers¶

  • Diffie-Hellman Key Exchange
    • generate()
    • load_from_parameters()
    • load_parameters()
    • load_public_key()
    • load_private_key()
  • Elleptic-curve Cryptography
    • generate()
    • load_public_key()
    • load_private_key()
  • RSA Asymmetric Cipher
    • generate()
    • load_public_key()
    • load_private_key()

Hash functions¶

  • Hash functions
    • algorithms_available()
    • new()
Next
AES
Previous
Symmetric cipher modes
Copyright © 2020-2025, Arunanshu Biswas
Made with Sphinx and @pradyunsg's Furo
On this page
  • Algorithm loaders
    • Symmetric Ciphers
    • Asymmetric Ciphers
    • Hash functions