From 522e9f34530959076f6e4989ddafb2e80dd6fa1a Mon Sep 17 00:00:00 2001 From: HeshamTB Date: Sat, 30 Jan 2021 13:03:57 +0300 Subject: [PATCH] Update cp right to 2021 --- MillerRabin.py | 2 +- OAEP.py | 2 +- encodetest.py | 2 +- rsa.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MillerRabin.py b/MillerRabin.py index 60ce292..878a3d9 100644 --- a/MillerRabin.py +++ b/MillerRabin.py @@ -1,5 +1,5 @@ -# Copyright (C) 2019, 2020 Hesham T. Banafa +# Copyright (C) 2019-2021 Hesham T. Banafa #From: https://stackoverflow.com/questions/17298130/working-with-large-primes-in-python from random import randrange diff --git a/OAEP.py b/OAEP.py index 5d1e749..c6096ec 100644 --- a/OAEP.py +++ b/OAEP.py @@ -1,4 +1,4 @@ -# Copyright (C) 2019, 2020 Hesham T. Banafa +# Copyright (C) 2019-2021 Hesham T. Banafa #From: https://stackoverflow.com/questions/39964383/implementation-of-i2osp-and-os2ip diff --git a/encodetest.py b/encodetest.py index 432cc6e..bb36fc5 100644 --- a/encodetest.py +++ b/encodetest.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright (C) 2019, 2020 Hesham T. Banafa +# Copyright (C) 2019-2021 Hesham T. Banafa s = 'test message hello awdawd' print(s) diff --git a/rsa.py b/rsa.py index 6362e93..2a0c537 100755 --- a/rsa.py +++ b/rsa.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright (C) 2019, 2020 Hesham T. Banafa +# Copyright (C) 2019-2021 Hesham T. Banafa #program to generate rsa key pair using methods in EE-305 # Hesham Banafa