1/*
2 *  Licensed to the Apache Software Foundation (ASF) under one or more
3 *  contributor license agreements.  See the NOTICE file distributed with
4 *  this work for additional information regarding copyright ownership.
5 *  The ASF licenses this file to You under the Apache License, Version 2.0
6 *  (the "License"); you may not use this file except in compliance with
7 *  the License.  You may obtain a copy of the License at
8 *
9 *     http://www.apache.org/licenses/LICENSE-2.0
10 *
11 *  Unless required by applicable law or agreed to in writing, software
12 *  distributed under the License is distributed on an "AS IS" BASIS,
13 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 *  See the License for the specific language governing permissions and
15 *  limitations under the License.
16 */
17
18/**
19* @author Vera Y. Petrashkova
20* @version $Revision$
21*/
22
23package org.apache.harmony.security.tests.support;
24
25import java.security.InvalidParameterException;
26import java.security.KeyPair;
27import java.security.KeyPairGenerator;
28import java.security.SecureRandom;
29
30/**
31 *  Additional class extends KeyPairGenerator
32 *
33 */
34
35public class MyKeyPairGenerator2 extends KeyPairGenerator {
36    int keySize;
37
38    SecureRandom secureRandom;
39
40    public MyKeyPairGenerator2() {
41        super("MyKeyPairGenerator2");
42    }
43
44    public String getAlgorithm() {
45        return "MyKeyPairGenerator2";
46    }
47
48    public static final String getResAlgorithm() {
49        return "MyKeyPairGenerator2";
50    }
51
52    public MyKeyPairGenerator2(String pp) {
53        super(pp);
54    }
55
56    public void initialize(int keysize, SecureRandom random) {
57        if (keysize < 64) {
58            throw new InvalidParameterException("Incorrect keysize parameter");
59        }
60        keySize = keysize;
61        secureRandom = random;
62    }
63
64    public KeyPair generateKeyPair() {
65        return null;
66    }
67}
68
69