All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gatling.recorder.internal.bouncycastle.pqc.asn1.SPHINCSPLUSPrivateKey Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.pqc.asn1;

import io.gatling.recorder.internal.bouncycastle.asn1.ASN1EncodableVector;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Integer;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Object;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1OctetString;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Primitive;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Sequence;
import io.gatling.recorder.internal.bouncycastle.asn1.DEROctetString;
import io.gatling.recorder.internal.bouncycastle.asn1.DERSequence;
import io.gatling.recorder.internal.bouncycastle.util.Arrays;

/**
 * See https://datatracker.ietf.org/doc/draft-uni-qsckeys-sphincsplus/00/ for details
 * ASN.1 Encoding for a
 * SphincsPlus private key for fully populated:
 * 
 *   SPHINCSPLUSPrivateKey ::= SEQUENCE {
 *     version          INTEGER {v2(1)}     --syntax version 2 (round 3)
 *     skseed          OCTET STRING,        --n-byte private key seed
 *     skprf           OCTET STRING,        --n-byte private key seed
 *     PublicKey       SPHINCSPLUSPublicKey --public key
 *   }
 * 
*/ public class SPHINCSPLUSPrivateKey extends ASN1Object { private int version; private byte[] skseed; private byte[] skprf; private SPHINCSPLUSPublicKey PublicKey; public int getVersion() { return version; } public byte[] getSkseed() { return Arrays.clone(skseed); } public byte[] getSkprf() { return Arrays.clone(skprf); } public SPHINCSPLUSPublicKey getPublicKey() { return PublicKey; } public SPHINCSPLUSPrivateKey(int version, byte[] skseed, byte[] skprf) { this(version, skseed, skprf, null); } public SPHINCSPLUSPrivateKey(int version, byte[] skseed, byte[] skprf, SPHINCSPLUSPublicKey publicKey) { this.version = version; this.skseed = skseed; this.skprf = skprf; this.PublicKey = publicKey; } /** * @deprecated use getInstance() */ public SPHINCSPLUSPrivateKey(ASN1Sequence seq) { version = ASN1Integer.getInstance(seq.getObjectAt(0)).intValueExact(); if (version != 0) { throw new IllegalArgumentException("unrecognized version"); } skseed = Arrays.clone(ASN1OctetString.getInstance(seq.getObjectAt(1)).getOctets()); skprf = Arrays.clone(ASN1OctetString.getInstance(seq.getObjectAt(2)).getOctets()); if(seq.size() == 4) { PublicKey = SPHINCSPLUSPublicKey.getInstance(seq.getObjectAt(3)); } } public ASN1Primitive toASN1Primitive() { ASN1EncodableVector v = new ASN1EncodableVector(); v.add(new ASN1Integer(version)); v.add(new DEROctetString(skseed)); v.add(new DEROctetString(skprf)); // todo optional publickey if(PublicKey != null) { v.add(new SPHINCSPLUSPublicKey(PublicKey.getPkseed(), PublicKey.getPkroot())); } return new DERSequence(v); } public static SPHINCSPLUSPrivateKey getInstance(Object o) { if (o instanceof SPHINCSPLUSPrivateKey) { return (SPHINCSPLUSPrivateKey)o; } else if (o != null) { return new SPHINCSPLUSPrivateKey(ASN1Sequence.getInstance(o)); } return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy