GordianCipherResource.java
/*
* GordianKnot: Security Suite
* Copyright 2012-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.api.cipher;
import io.github.tonywasher.joceanus.gordianknot.api.base.GordianBundleLoader;
import io.github.tonywasher.joceanus.gordianknot.api.base.GordianBundleLoader.GordianBundleId;
import io.github.tonywasher.joceanus.gordianknot.api.digest.GordianDigestResource;
/**
* Resource IDs for Cipher package.
*/
public enum GordianCipherResource
implements GordianBundleId {
/**
* SymKey AES.
*/
SYMKEY_AES("symKey.AES"),
/**
* SymKey TwoFish.
*/
SYMKEY_TWOFISH("symKey.TWOFISH"),
/**
* SymKey Serpent.
*/
SYMKEY_SERPENT("symKey.SERPENT"),
/**
* SymKey Camellia.
*/
SYMKEY_CAMELLIA("symKey.CAMELLIA"),
/**
* SymKey CAST6.
*/
SYMKEY_CAST6("symKey.CAST6"),
/**
* SymKey RC6.
*/
SYMKEY_RC6("symKey.RC6"),
/**
* SymKey THREEFISH.
*/
SYMKEY_THREEFISH("symKey.THREEFISH"),
/**
* SymKey ARIA.
*/
SYMKEY_ARIA("symKey.ARIA"),
/**
* SymKey NOEKEON.
*/
SYMKEY_NOEKEON("symKey.NOEKEON"),
/**
* SymKey SEED.
*/
SYMKEY_SEED("symKey.SEED"),
/**
* SymKey SM4.
*/
SYMKEY_SM4("symKey.SM4"),
/**
* SymKey RC2.
*/
SYMKEY_RC2("symKey.RC2"),
/**
* SymKey RC5.
*/
SYMKEY_RC5("symKey.RC5"),
/**
* SymKey CAST5.
*/
SYMKEY_CAST5("symKey.CAST5"),
/**
* SymKey IDEA.
*/
SYMKEY_IDEA("symKey.IDEA"),
/**
* SymKey TEA.
*/
SYMKEY_TEA("symKey.TEA"),
/**
* SymKey XTEA.
*/
SYMKEY_XTEA("symKey.XTEA"),
/**
* SymKey Blowfish.
*/
SYMKEY_BLOWFISH("symKey.BlowFish"),
/**
* SymKey GOST.
*/
SYMKEY_GOST("symKey.GOST"),
/**
* SymKey Kuznyechik.
*/
SYMKEY_KUZNYECHIK("symKey.KUZNYECHIK"),
/**
* SymKey Kalyna.
*/
SYMKEY_KALYNA("symKey.Kalyna"),
/**
* SymKey SkipJack.
*/
SYMKEY_SKIPJACK("symKey.Skipjack"),
/**
* SymKey DESede.
*/
SYMKEY_DESEDE("symKey.DESede"),
/**
* SymKey SHACAL2.
*/
SYMKEY_SHACAL2("symKey.SHACAL2"),
/**
* SymKey SHACAL2.
*/
SYMKEY_SPECK("symKey.Speck"),
/**
* SymKey Anubis.
*/
SYMKEY_ANUBIS("symKey.Anubis"),
/**
* SymKey Simon.
*/
SYMKEY_SIMON("symKey.Simon"),
/**
* SymKey MARS.
*/
SYMKEY_MARS("symKey.MARS"),
/**
* SymKey LEA.
*/
SYMKEY_LEA("symKey.LEA"),
/**
* StreamKey SALSA20.
*/
STREAMKEY_SALSA20("streamKey.SALSA20"),
/**
* StreamKey HC.
*/
STREAMKEY_HC("streamKey.HC"),
/**
* StreamKey CHACHA.
*/
STREAMKEY_CHACHA("streamKey.CHACHA"),
/**
* StreamKey VMPC.
*/
STREAMKEY_VMPC("streamKey.VMPC"),
/**
* StreamKey ISAAC.
*/
STREAMKEY_ISAAC("streamKey.ISAAC"),
/**
* StreamKey GRAIN.
*/
STREAMKEY_GRAIN("streamKey.GRAIN"),
/**
* StreamKey RC4.
*/
STREAMKEY_RC4("streamKey.RC4"),
/**
* StreamKey SOSEMANUK.
*/
STREAMKEY_SOSEMANUK("streamKey.SOSEMANUK"),
/**
* StreamKey Rabbit.
*/
STREAMKEY_RABBIT("streamKey.Rabbit"),
/**
* StreamKey Snow3G.
*/
STREAMKEY_SNOW3G("streamKey.SNOW3G"),
/**
* StreamKey ZUC.
*/
STREAMKEY_ZUC("streamKey.ZUC"),
/**
* StreamKey SkeinXof.
*/
STREAMKEY_SKEIN("streamKey.SKEIN"),
/**
* StreamKey Blake2Xof.
*/
STREAMKEY_BLAKE2("streamKey.BLAKE2"),
/**
* StreamKey Blake3Xof.
*/
STREAMKEY_BLAKE3("streamKey.BLAKE3"),
/**
* StreamKey Ascon.
*/
STREAMKEY_ASCON(GordianDigestResource.DIGEST_ASCON),
/**
* StreamKey Elephant.
*/
STREAMKEY_ELEPHANT("streamKey.Elephant"),
/**
* StreamKey ISAP.
*/
STREAMKEY_ISAP(GordianDigestResource.DIGEST_ISAP),
/**
* StreamKey PhotonBeetle.
*/
STREAMKEY_PHOTONBEETLE(GordianDigestResource.DIGEST_PHOTONBEETLE),
/**
* StreamKey Romulus.
*/
STREAMKEY_ROMULUS(GordianDigestResource.DIGEST_ROMULUS),
/**
* StreamKey Sparkle.
*/
STREAMKEY_SPARKLE(GordianDigestResource.DIGEST_SPARKLE),
/**
* StreamKey Xoodyak.
*/
STREAMKEY_XOODYAK(GordianDigestResource.DIGEST_XOODYAK);
/**
* The Resource Loader.
*/
private static final GordianBundleLoader LOADER = GordianBundleLoader.getLoader(GordianCipherResource.class.getCanonicalName());
/**
* The Id.
*/
private final String theKeyName;
/**
* The Value.
*/
private String theValue;
/**
* Constructor.
*
* @param pKeyName the key name
*/
GordianCipherResource(final String pKeyName) {
theKeyName = pKeyName;
}
/**
* Constructor.
*
* @param pResource the underlying resource
*/
GordianCipherResource(final GordianBundleId pResource) {
theKeyName = null;
theValue = pResource.getValue();
}
@Override
public String getKeyName() {
return theKeyName;
}
@Override
public String getNameSpace() {
return "cipher";
}
@Override
public String getValue() {
/* If we have not initialized the value */
if (theValue == null) {
/* Derive the value */
theValue = LOADER.getValue(this);
}
/* return the value */
return theValue;
}
}