aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security/KeyPairGenerator.java
blob: 7954c3270ac170d9b4fb2687ec82a8a4112320d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* Copyright (C) 2000  Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package java.security;

/**
 * @author Warren Levy <warrenl@cygnus.com>
 * @date February 10, 2000.
 */

/**
 * Written using on-line Java Platform 1.2 API Specification.
 * Status:  Partially implemented to the 1.1 spec.
 * It is known not to comply with the 1.2 spec.
 */

public abstract class KeyPairGenerator extends KeyPairGeneratorSpi
{
  protected KeyPairGenerator(String algorithm)
  {
    name = algorithm;
  }

  public static KeyPairGenerator getInstance(String algorithm)
    throws NoSuchAlgorithmException
  {
    String name = "KeyPairGenerator." + algorithm;
    Provider[] provs = Security.getProviders();
    for (int i = 0; i < provs.length; ++i)
      {
	String val = provs[i].getProperty(name);
	if (val != null)
	  {
	    try
	      {
		return (KeyPairGenerator) Class.forName(val).newInstance();
	      }
	    catch (Throwable _)
	      {
		// We just ignore failures.
	      }
	  }
      }

    throw new NoSuchAlgorithmException(algorithm);
  }

  public static KeyPairGenerator getInstance(String algorithm, String provider)
    throws NoSuchAlgorithmException, NoSuchProviderException
  {
    String name = "KeyPairGenerator." + algorithm;
    Provider p = Security.getProvider(provider);
    if (p == null)
      throw new NoSuchProviderException(provider);
    String val = p.getProperty(name);
    if (val != null)
      {
	try
	  {
	    return (KeyPairGenerator) Class.forName(val).newInstance();
	  }
	catch (Throwable _)
	  {
	    // Nothing.
	  }
      }

    throw new NoSuchAlgorithmException(algorithm);
  }

  public String getAlgorithm()
  {
    return name;
  }

  public abstract void initialize(int strength, SecureRandom random);
  public abstract KeyPair generateKeyPair();

  // Algorithm name.
  private String name;
}