Skip to content

Commit

Permalink
mac-docs-updates (#11644)
Browse files Browse the repository at this point in the history
  • Loading branch information
gonatienza committed Sep 23, 2024
1 parent e3629a2 commit 9c11549
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/hazmat/primitives/mac/cmac.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ A subset of CMAC with the AES-128 algorithm is described in :rfc:`4493`.

>>> from cryptography.hazmat.primitives import cmac
>>> from cryptography.hazmat.primitives.ciphers import algorithms
>>> key = b"\x00" * 16 # A real key should come from os.urandom(16)
>>> c = cmac.CMAC(algorithms.AES(key))
>>> c.update(b"message to authenticate")
>>> c.finalize()
Expand Down
1 change: 1 addition & 0 deletions docs/hazmat/primitives/mac/poly1305.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ messages allows an attacker to forge tags. Poly1305 is described in
.. doctest::

>>> from cryptography.hazmat.primitives import poly1305
>>> key = b"\x01" * 32 # A real key should come from os.urandom(32)
>>> p = poly1305.Poly1305(key)
>>> p.update(b"message to authenticate")
>>> p.finalize()
Expand Down

0 comments on commit 9c11549

Please sign in to comment.