Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/sun/security/provider/DSAPublicKey.java
41159 views
1
/*
2
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package sun.security.provider;
27
28
import java.util.*;
29
import java.io.*;
30
import java.math.BigInteger;
31
import java.security.InvalidKeyException;
32
import java.security.ProviderException;
33
import java.security.AlgorithmParameters;
34
import java.security.spec.DSAParameterSpec;
35
import java.security.spec.InvalidParameterSpecException;
36
import java.security.interfaces.DSAParams;
37
38
import sun.security.x509.X509Key;
39
import sun.security.x509.AlgIdDSA;
40
import sun.security.util.BitArray;
41
import sun.security.util.Debug;
42
import sun.security.util.DerValue;
43
import sun.security.util.DerInputStream;
44
import sun.security.util.DerOutputStream;
45
46
/**
47
* An X.509 public key for the Digital Signature Algorithm.
48
*
49
* @author Benjamin Renaud
50
*
51
*
52
* @see DSAPrivateKey
53
* @see AlgIdDSA
54
* @see DSA
55
*/
56
57
public class DSAPublicKey extends X509Key
58
implements java.security.interfaces.DSAPublicKey, Serializable {
59
60
/** use serialVersionUID from JDK 1.1. for interoperability */
61
@java.io.Serial
62
private static final long serialVersionUID = -2994193307391104133L;
63
64
/* the public key */
65
private BigInteger y;
66
67
/*
68
* Keep this constructor for backwards compatibility with JDK1.1.
69
*/
70
public DSAPublicKey() {
71
}
72
73
/**
74
* Make a DSA public key out of a public key and three parameters.
75
* The p, q, and g parameters may be null, but if so, parameters will need
76
* to be supplied from some other source before this key can be used in
77
* cryptographic operations. PKIX RFC2459bis explicitly allows DSA public
78
* keys without parameters, where the parameters are provided in the
79
* issuer's DSA public key.
80
*
81
* @param y the actual key bits
82
* @param p DSA parameter p, may be null if all of p, q, and g are null.
83
* @param q DSA parameter q, may be null if all of p, q, and g are null.
84
* @param g DSA parameter g, may be null if all of p, q, and g are null.
85
*/
86
public DSAPublicKey(BigInteger y, BigInteger p, BigInteger q,
87
BigInteger g)
88
throws InvalidKeyException {
89
this.y = y;
90
algid = new AlgIdDSA(p, q, g);
91
92
try {
93
byte[] keyArray = new DerValue(DerValue.tag_Integer,
94
y.toByteArray()).toByteArray();
95
setKey(new BitArray(keyArray.length*8, keyArray));
96
encode();
97
} catch (IOException e) {
98
throw new InvalidKeyException("could not DER encode y: " +
99
e.getMessage());
100
}
101
}
102
103
/**
104
* Make a DSA public key from its DER encoding (X.509).
105
*/
106
public DSAPublicKey(byte[] encoded) throws InvalidKeyException {
107
decode(encoded);
108
}
109
110
/**
111
* Returns the DSA parameters associated with this key, or null if the
112
* parameters could not be parsed.
113
*/
114
public DSAParams getParams() {
115
try {
116
if (algid instanceof DSAParams) {
117
return (DSAParams)algid;
118
} else {
119
DSAParameterSpec paramSpec;
120
AlgorithmParameters algParams = algid.getParameters();
121
if (algParams == null) {
122
return null;
123
}
124
paramSpec = algParams.getParameterSpec(DSAParameterSpec.class);
125
return (DSAParams)paramSpec;
126
}
127
} catch (InvalidParameterSpecException e) {
128
return null;
129
}
130
}
131
132
/**
133
* Get the raw public value, y, without the parameters.
134
*
135
* @see getParameters
136
*/
137
public BigInteger getY() {
138
return y;
139
}
140
141
public String toString() {
142
return "Sun DSA Public Key\n Parameters:" + algid
143
+ "\n y:\n" + Debug.toHexString(y) + "\n";
144
}
145
146
protected void parseKeyBits() throws InvalidKeyException {
147
try {
148
DerInputStream in = new DerInputStream(getKey().toByteArray());
149
y = in.getBigInteger();
150
} catch (IOException e) {
151
throw new InvalidKeyException("Invalid key: y value\n" +
152
e.getMessage());
153
}
154
}
155
}
156
157