aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security/Signature.java
blob: 760f62551d8dfd98858533051cf8946da2ee92d6 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* 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 Tom Tromey <tromey@cygnus.com>
 * @date February 11, 2000.
 */

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

public abstract class Signature
{
  protected Signature (String name)
  {
    state = UNINITIALIZED;
    this.name = name;
  }

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

    throw new NoSuchAlgorithmException (algorithm);
  }

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

    throw new NoSuchAlgorithmException (algorithm);
  }

  public final void initVerify (PublicKey publicKey)
    throws InvalidKeyException
  {
    engineInitVerify (publicKey);
  }

  public final void initSign (PrivateKey privateKey)
    throws InvalidKeyException
  {
    engineInitSign (privateKey);
  }

  public final byte[] sign ()
    throws SignatureException
  {
    return engineSign ();
  }

  public final boolean verify (byte[] signature)
    throws SignatureException
  {
    return engineVerify (signature);
  }

  public final void update (byte b)
    throws SignatureException
  {
    engineUpdate (b);
  }

  public final void update (byte[] data)
    throws SignatureException
  {
    engineUpdate (data, 0, data.length);
  }

  public final void update (byte[] data, int off, int len)
    throws SignatureException
  {
    engineUpdate (data, off, len);
  }

  public final String getAlgorithm ()
  {
    return name;
  }

  public String toString ()
  {
    // There is no spec for this.  FIXME: this is a bad choice.
    return name + "; state = " + state;
  }

  public final void setParameter (String param, Object value)
    throws InvalidParameterException
  {
    engineSetParameter (param, value);
  }

  public final Object getParameter (String param)
    throws InvalidParameterException
  {
    return engineGetParameter (param);
  }

  protected abstract void engineInitVerify (PublicKey publicKey)
    throws InvalidKeyException;
  protected abstract void engineInitSign (PrivateKey privateKey)
    throws InvalidKeyException;
  protected abstract void engineUpdate (byte b)
    throws SignatureException;
  protected abstract void engineUpdate (byte[] b, int off, int len)
    throws SignatureException;
  protected abstract byte[] engineSign ()
    throws SignatureException;
  protected abstract boolean engineVerify (byte[] sigBytes)
    throws SignatureException;
  protected abstract void engineSetParameter (String param, Object value)
    throws InvalidParameterException;
  protected abstract Object engineGetParameter (String param)
    throws InvalidParameterException;

  public Object clone() throws CloneNotSupportedException
  {
    return super.clone ();
  }

  protected static final int UNINITIALIZED = 0;
  protected static final int SIGN          = 2;
  protected static final int VERIFY        = 3;

  // Current state.
  protected int state;

  // Name of this object.
  private String name;
}