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