diff options
author | Werner Koch <[email protected]> | 2000-09-08 18:19:17 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2000-09-08 18:19:17 +0000 |
commit | 3c3ad064b6f87a177085a0db521ceae48d202cbb (patch) | |
tree | 32591af4d692187931e0751a7897c248751d6f85 | |
parent | This commit was manufactured by cvs2svn to create branch (diff) | |
download | gnupg-3c3ad064b6f87a177085a0db521ceae48d202cbb.tar.gz gnupg-3c3ad064b6f87a177085a0db521ceae48d202cbb.zip |
Add RSA
-rw-r--r-- | cipher/rsa.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cipher/rsa.c b/cipher/rsa.c index 5d852cd88..36b0802e2 100644 --- a/cipher/rsa.c +++ b/cipher/rsa.c @@ -1,10 +1,6 @@ /* rsa.c - RSA function * Copyright (C) 1997, 1998, 1999 by Werner Koch (dd9jn) * Copyright (C) 2000 Free Software Foundation, Inc. - *********************************************************************** - * ATTENTION: This code should not be used in the United States - * before the U.S. Patent #4,405,829 expires on September 20, 2000! - *********************************************************************** * * This file is part of GnuPG. * @@ -23,6 +19,11 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ +/* This code uses an algorithm protected by U.S. Patent #4,405,829 + which expires on September 20, 2000. The patent holder placed that + patent into the public domain on Sep 6th, 2000. +*/ + #include <config.h> #include <stdio.h> #include <stdlib.h> |