Skip to content

Commit

Permalink
update comments in circulant.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cforeman-cqc committed Jan 16, 2024
1 parent e0f0013 commit 9c83cd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cryptomite/circulant.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Circulant is a seeded extractor that takes an input of
n - 1 bits and a seed of n bits, where n is prime, to
produce some error-perfect random bits.
n bits and a seed of n + 1 bits, where n + 1 is prime,
to produce some error-perfect random bits.
"""
from __future__ import annotations

Expand All @@ -14,7 +14,7 @@


class Circulant:
""" Circulant extractor based on [Foreman23]_. """
""" Circulant extractor based on [For2024]_. """
def __init__(self, n: int, m: int):
"""Create a Circulant Extractor.
Expand Down

0 comments on commit 9c83cd8

Please sign in to comment.