From 9c83cd876460d0f3b59c9f7eec59bd0c731b2907 Mon Sep 17 00:00:00 2001 From: cforeman-cqc Date: Tue, 16 Jan 2024 03:49:02 +0000 Subject: [PATCH] update comments in circulant.py --- cryptomite/circulant.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cryptomite/circulant.py b/cryptomite/circulant.py index 204e1d0..0c86cab 100644 --- a/cryptomite/circulant.py +++ b/cryptomite/circulant.py @@ -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 @@ -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.