OSDN Git Service

* java/security/AlgorithmParameterGeneratorSpi.java: New file.
[pf3gnuchains/gcc-fork.git] / libjava / java / security / KeyPairGeneratorSpi.java
1 /* Copyright (C) 2000  Free Software Foundation
2
3    This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
7 details.  */
8
9 package java.security;
10
11 /**
12  * @author Warren Levy <warrenl@cygnus.com>
13  * @date February 7, 2000.
14  */
15
16 /**
17  * Written using on-line Java Platform 1.2 API Specification.
18  * Status:  Partially implemented.
19  */
20
21 // JDK1.2
22 public abstract class KeyPairGeneratorSpi
23 {
24   public abstract void initialize(int keysize, SecureRandom random);
25   public abstract KeyPair generateKeyPair();
26 }