mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-06-28 03:06:14 +02:00
Import tools in the binary.
This commit is contained in:
parent
5c8f8610b4
commit
f8da5e9761
3 changed files with 13 additions and 0 deletions
|
@ -26,6 +26,15 @@ __license__ = "GPLv3"
|
|||
|
||||
import itertools
|
||||
|
||||
def identity():
|
||||
"""
|
||||
f(x) = x
|
||||
"""
|
||||
n = 0
|
||||
while True:
|
||||
yield n
|
||||
n += 1
|
||||
|
||||
def fermat():
|
||||
"""
|
||||
Generate the n-th Fermat Number.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue