mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
145 lines
No EOL
4.8 KiB
Java
145 lines
No EOL
4.8 KiB
Java
/*
|
|
* Copyright (c) 2006, 2024, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation. Oracle designates this
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
package sun.security.ec;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InvalidObjectException;
|
|
import java.io.ObjectInputStream;
|
|
import java.security.*;
|
|
import java.security.interfaces.*;
|
|
import java.security.spec.*;
|
|
|
|
import sun.security.util.BitArray;
|
|
import sun.security.util.ECParameters;
|
|
import sun.security.util.ECUtil;
|
|
|
|
import sun.security.x509.*;
|
|
|
|
/**
|
|
* Key implementation for EC public keys.
|
|
*
|
|
* @since 1.6
|
|
* @author Andreas Sterbenz
|
|
*/
|
|
public final class ECPublicKeyImpl extends X509Key implements ECPublicKey {
|
|
|
|
@java.io.Serial
|
|
private static final long serialVersionUID = -2462037275160462289L;
|
|
|
|
@SuppressWarnings("serial") // Type of field is not
|
|
// Serializable;see writeReplace
|
|
private ECPoint w;
|
|
@SuppressWarnings("serial") // Type of field is not Serializable
|
|
private ECParameterSpec params;
|
|
|
|
/**
|
|
* Construct a key from its components. Used by the
|
|
* ECKeyFactory.
|
|
*/
|
|
ECPublicKeyImpl(ECPoint w, ECParameterSpec params)
|
|
throws InvalidKeyException {
|
|
this.w = w;
|
|
this.params = params;
|
|
// generate the encoding
|
|
algid = new AlgorithmId
|
|
(AlgorithmId.EC_oid, ECParameters.getAlgorithmParameters(params));
|
|
byte[] key = ECUtil.encodePoint(w, params.getCurve());
|
|
setKey(new BitArray(key.length * 8, key));
|
|
}
|
|
|
|
/**
|
|
* Construct a key from its encoding.
|
|
*/
|
|
ECPublicKeyImpl(byte[] encoded) throws InvalidKeyException {
|
|
decode(encoded);
|
|
}
|
|
|
|
// see JCA doc
|
|
public String getAlgorithm() {
|
|
return "EC";
|
|
}
|
|
|
|
// see JCA doc
|
|
public ECPoint getW() {
|
|
return w;
|
|
}
|
|
|
|
// see JCA doc
|
|
public ECParameterSpec getParams() {
|
|
return params;
|
|
}
|
|
|
|
/**
|
|
* Parse the key. Called by X509Key.
|
|
*/
|
|
protected void parseKeyBits() throws InvalidKeyException {
|
|
AlgorithmParameters algParams = this.algid.getParameters();
|
|
if (algParams == null) {
|
|
throw new InvalidKeyException("EC domain parameters must be " +
|
|
"encoded in the algorithm identifier");
|
|
}
|
|
|
|
try {
|
|
params = algParams.getParameterSpec(ECParameterSpec.class);
|
|
w = ECUtil.decodePoint(getKey().toByteArray(), params.getCurve());
|
|
} catch (IOException | InvalidParameterSpecException e) {
|
|
throw new InvalidKeyException("Invalid EC key", e);
|
|
}
|
|
}
|
|
|
|
// return a string representation of this key for debugging
|
|
public String toString() {
|
|
return "Sun EC public key, " + params.getCurve().getField().getFieldSize()
|
|
+ " bits\n public x coord: " + w.getAffineX()
|
|
+ "\n public y coord: " + w.getAffineY()
|
|
+ "\n parameters: " + params;
|
|
}
|
|
|
|
@java.io.Serial
|
|
private Object writeReplace() throws java.io.ObjectStreamException {
|
|
return new KeyRep(KeyRep.Type.PUBLIC,
|
|
getAlgorithm(),
|
|
getFormat(),
|
|
getEncoded());
|
|
}
|
|
|
|
/**
|
|
* Restores the state of this object from the stream.
|
|
* <p>
|
|
* Deserialization of this object is not supported.
|
|
*
|
|
* @param stream the {@code ObjectInputStream} from which data is read
|
|
* @throws IOException if an I/O error occurs
|
|
* @throws ClassNotFoundException if a serialized class cannot be loaded
|
|
*/
|
|
@java.io.Serial
|
|
private void readObject(ObjectInputStream stream)
|
|
throws IOException, ClassNotFoundException {
|
|
throw new InvalidObjectException(
|
|
"ECPublicKeyImpl keys are not directly deserializable");
|
|
}
|
|
} |