GordianSLHDSASpec.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.api.keypair.spec;

/**
 * SphincsPlus KeySpecs.
 */
public enum GordianSLHDSASpec {
    /**
     * SHA2 128f.
     */
    SHA128F,

    /**
     * SHA2 128s.
     */
    SHA128S,

    /**
     * SHA2 192f.
     */
    SHA192F,

    /**
     * SHA2 192s.
     */
    SHA192S,

    /**
     * SHA2 256f.
     */
    SHA256F,

    /**
     * SHA2 256s.
     */
    SHA256S,

    /**
     * SHAKE 128f.
     */
    SHAKE128F,

    /**
     * SHAKE 128s.
     */
    SHAKE128S,

    /**
     * SHAKE 192f.
     */
    SHAKE192F,

    /**
     * SHAKE 192s.
     */
    SHAKE192S,

    /**
     * SHAKE 256f.
     */
    SHAKE256F,

    /**
     * SHAKE 256s.
     */
    SHAKE256S,

    /**
     * SHA2 128f hash.
     */
    SHA128F_HASH,

    /**
     * SHA2 128s hash.
     */
    SHA128S_HASH,

    /**
     * SHA2 192f hash.
     */
    SHA192F_HASH,

    /**
     * SHA2 192s hash.
     */
    SHA192S_HASH,

    /**
     * SHA2 256f hash.
     */
    SHA256F_HASH,

    /**
     * SHA2 256s hash.
     */
    SHA256S_HASH,

    /**
     * SHAKE 128f hash.
     */
    SHAKE128F_HASH,

    /**
     * SHAKE 128s hash.
     */
    SHAKE128S_HASH,

    /**
     * SHAKE 192f hash.
     */
    SHAKE192F_HASH,

    /**
     * SHAKE 192s hash.
     */
    SHAKE192S_HASH,

    /**
     * SHAKE 256f hash.
     */
    SHAKE256F_HASH,

    /**
     * SHAKE 256s hash.
     */
    SHAKE256S_HASH;
}