diff options
| author | Mark Benvenuto <mcb54@columbia.edu> | 1999-11-19 02:15:06 +0000 |
|---|---|---|
| committer | Mark Benvenuto <mcb54@columbia.edu> | 1999-11-19 02:15:06 +0000 |
| commit | 62694a418b7c541be7dd6eb34c5dbd62b5b1836b (patch) | |
| tree | 4341eb058c8eb64bbd99ec9b609f0bb49056fe25 /java/security/interfaces/RSAKey.java | |
| parent | 0da3e7423e79828115a3dcc3de9de825edd35251 (diff) | |
| download | classpath-62694a418b7c541be7dd6eb34c5dbd62b5b1836b.tar.gz | |
Updated the AUTHORS file so I am reflected as an author. Commited some JDK 1.3 Beta updates to java.security
Diffstat (limited to 'java/security/interfaces/RSAKey.java')
| -rw-r--r-- | java/security/interfaces/RSAKey.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/java/security/interfaces/RSAKey.java b/java/security/interfaces/RSAKey.java new file mode 100644 index 000000000..1142842e4 --- /dev/null +++ b/java/security/interfaces/RSAKey.java @@ -0,0 +1,36 @@ +/* RSAKey.java --- A generic RSA Key interface + + Copyright (c) 1999 by Free Software Foundation, Inc. + Written by Mark Benvenuto <mcb@gnu.org> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Library General Public License as published + by the Free Software Foundation, version 2. (see COPYING.LIB) + + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA. */ + +package java.security.interfaces; + +/** + A generic RSA Key interface for public and private keys + + @since JDK 1.3 + + @author Mark Benvenuto +*/ +public interface RSAKey +{ + /** + Generates a modulus. + + @returns a modulus + */ + public java.math.BigInteger getModulus(); +} |
