GordianCoreEncryptorSpecBuilder.java
/*
* GordianKnot: Security Suite
* Copyright 2026. Tony Washer
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package io.github.tonywasher.joceanus.gordianknot.impl.core.spec.encrypt;
import io.github.tonywasher.joceanus.gordianknot.api.base.GordianLength;
import io.github.tonywasher.joceanus.gordianknot.api.digest.spec.GordianDigestSpec;
import io.github.tonywasher.joceanus.gordianknot.api.digest.spec.GordianDigestSpecBuilder;
import io.github.tonywasher.joceanus.gordianknot.api.encrypt.spec.GordianEncryptorSpec;
import io.github.tonywasher.joceanus.gordianknot.api.encrypt.spec.GordianEncryptorSpecBuilder;
import io.github.tonywasher.joceanus.gordianknot.api.encrypt.spec.GordianSM2EncryptionSpec;
import io.github.tonywasher.joceanus.gordianknot.api.encrypt.spec.GordianSM2EncryptionType;
import io.github.tonywasher.joceanus.gordianknot.api.keypair.spec.GordianKeyPairType;
import io.github.tonywasher.joceanus.gordianknot.impl.core.spec.digest.GordianCoreDigestSpecBuilder;
import java.util.ArrayList;
import java.util.List;
/**
* Asymmetric Encryption Specification Builder.
*/
public final class GordianCoreEncryptorSpecBuilder
implements GordianEncryptorSpecBuilder {
/**
* The digestSpec builder.
*/
private final GordianDigestSpecBuilder theBuilder;
/**
* The keyPairType.
*/
private GordianKeyPairType theKeyPairType;
/**
* The subSpec.
*/
private Object theSubSpec;
/**
* Private constructor.
*/
private GordianCoreEncryptorSpecBuilder() {
theBuilder = GordianCoreDigestSpecBuilder.newInstance();
}
/**
* Obtain new instance.
*
* @return the new instance
*/
public static GordianCoreEncryptorSpecBuilder newInstance() {
return new GordianCoreEncryptorSpecBuilder();
}
@Override
public GordianEncryptorSpecBuilder withKeyPairType(final GordianKeyPairType pType) {
theKeyPairType = pType;
return this;
}
@Override
public GordianEncryptorSpecBuilder withDigestSpec(final GordianDigestSpec pDigestSpec) {
theSubSpec = pDigestSpec;
return this;
}
@Override
public GordianEncryptorSpecBuilder withSM2EncryptionSpec(final GordianSM2EncryptionType pType,
final GordianDigestSpec pDigestSpec) {
theSubSpec = new GordianCoreSM2EncryptionSpec(pType, pDigestSpec);
return this;
}
@Override
public GordianEncryptorSpecBuilder withEncryptorSpecs(final List<GordianEncryptorSpec> pSpecs) {
theSubSpec = pSpecs;
return this;
}
@Override
public GordianDigestSpecBuilder usingDigestSpecBuilder() {
return theBuilder;
}
@Override
public GordianEncryptorSpec build() {
/* Build spec and return it */
final GordianCoreEncryptorSpec mySpec = new GordianCoreEncryptorSpec(theKeyPairType, theSubSpec);
reset();
return mySpec;
}
/**
* Reset state.
*/
private void reset() {
theKeyPairType = null;
theSubSpec = null;
}
/**
* List all possible encryptorSpecs for a keyPairType.
*
* @param pKeyPairType the keyPairType
* @return the list
*/
public static List<GordianEncryptorSpec> listAllPossibleSpecs(final GordianKeyPairType pKeyPairType) {
/* Create list */
final List<GordianEncryptorSpec> myEncryptors = new ArrayList<>();
final GordianCoreEncryptorSpecBuilder myBuilder = new GordianCoreEncryptorSpecBuilder();
final GordianDigestSpecBuilder myDigestBuilder = GordianCoreDigestSpecBuilder.newInstance();
/* Switch on keyPairType */
switch (pKeyPairType) {
case RSA:
myEncryptors.add(myBuilder.rsa(myDigestBuilder.sha2(GordianLength.LEN_224)));
myEncryptors.add(myBuilder.rsa(myDigestBuilder.sha2(GordianLength.LEN_256)));
myEncryptors.add(myBuilder.rsa(myDigestBuilder.sha2(GordianLength.LEN_384)));
myEncryptors.add(myBuilder.rsa(myDigestBuilder.sha2(GordianLength.LEN_512)));
break;
case ELGAMAL:
myEncryptors.add(myBuilder.elGamal(myDigestBuilder.sha2(GordianLength.LEN_224)));
myEncryptors.add(myBuilder.elGamal(myDigestBuilder.sha2(GordianLength.LEN_256)));
myEncryptors.add(myBuilder.elGamal(myDigestBuilder.sha2(GordianLength.LEN_384)));
myEncryptors.add(myBuilder.elGamal(myDigestBuilder.sha2(GordianLength.LEN_512)));
break;
case EC, SM2, GOST:
/* Add EC-ElGamal */
myEncryptors.add(myBuilder.ec());
/* Loop through the encryptionSpecs */
for (GordianSM2EncryptionSpec mySpec : listPossibleSM2Specs()) {
myEncryptors.add(new GordianCoreEncryptorSpec(pKeyPairType, mySpec));
}
break;
default:
break;
}
/* Return the list */
return myEncryptors;
}
/**
* Obtain a list of all possible encryptionSpecs.
*
* @return the list
*/
private static List<GordianSM2EncryptionSpec> listPossibleSM2Specs() {
/* Create list */
final List<GordianSM2EncryptionSpec> mySpecs = new ArrayList<>();
final GordianCoreDigestSpecBuilder myBuilder = GordianCoreDigestSpecBuilder.newInstance();
/* Loop through the encryptionTypes */
for (GordianSM2EncryptionType myType : GordianSM2EncryptionType.values()) {
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.sm3()));
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.sha2(GordianLength.LEN_224)));
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.sha2(GordianLength.LEN_256)));
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.sha2(GordianLength.LEN_384)));
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.sha2(GordianLength.LEN_512)));
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.blake2s(GordianLength.LEN_256)));
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.blake2b(GordianLength.LEN_512)));
mySpecs.add(new GordianCoreSM2EncryptionSpec(myType, myBuilder.whirlpool()));
}
/* Return the list */
return mySpecs;
}
}