Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 602 Bytes

index.rst

File metadata and controls

30 lines (19 loc) · 602 Bytes

Backends

Getting a backend

cryptography.hazmat.backends

cryptography was originally designed to support multiple backends, but this design has been deprecated.

You can get the default backend by calling ~default_backend.

default_backend()

returns

An object that provides at least ~interfaces.CipherBackend, ~interfaces.HashBackend, and ~interfaces.HMACBackend.

Individual backends

openssl interfaces