cdx-proto
    Preparing search index...

    Type Alias CryptoProperties_AlgorithmProperties

    CryptoProperties_AlgorithmProperties: Message<
        "cyclonedx.v1_6.CryptoProperties.AlgorithmProperties",
    > & {
        certificationLevel: string[];
        classicalSecurityLevel?: number;
        cryptoFunctions: CryptoProperties_AlgorithmProperties_CryptoAlgorithmFunction[];
        curve?: string;
        executionEnvironment?: CryptoProperties_AlgorithmProperties_CryptoExecutionEnvironment;
        implementationPlatform?: CryptoProperties_AlgorithmProperties_CryptoImplementationPlatform;
        mode?: CryptoProperties_AlgorithmProperties_CryptoAlgorithmMode;
        nistQuantumSecurityLevel?: number;
        padding?: CryptoProperties_AlgorithmProperties_CryptoAlgorithmPadding;
        parameterSetIdentifier?: string;
        primitive?: CryptoProperties_AlgorithmProperties_CryptoPrimitive;
    }

    Type declaration

    • certificationLevel: string[]

      The certification that the implementation of the cryptographic algorithm has received, if any. Certifications include revisions and levels of FIPS 140 or Common Criteria of different Extended Assurance Levels (CC-EAL).

      from field: repeated string certificationLevel = 6;

    • OptionalclassicalSecurityLevel?: number

      The classical security level that a cryptographic algorithm provides (in bits).

      from field: optional int32 classicalSecurityLevel = 10;

    • cryptoFunctions: CryptoProperties_AlgorithmProperties_CryptoAlgorithmFunction[]

      The cryptographic functions implemented by the cryptographic algorithm.

      from field: repeated cyclonedx.v1_6.CryptoProperties.AlgorithmProperties.CryptoAlgorithmFunction cryptoFunctions = 9;

    • Optionalcurve?: string

      The specific underlying Elliptic Curve (EC) definition employed which is an indicator of the level of security strength, performance and complexity. Absent an authoritative source of curve names, CycloneDX recommends use of curve names as defined at https://neuromancer.sk/std/, the source from which can be found at https://github.com/J08nY/std-curves.

      from field: optional string curve = 3;

    • OptionalexecutionEnvironment?: CryptoProperties_AlgorithmProperties_CryptoExecutionEnvironment

      The target and execution environment in which the algorithm is implemented in.

      from field: optional cyclonedx.v1_6.CryptoProperties.AlgorithmProperties.CryptoExecutionEnvironment executionEnvironment = 4;

    • OptionalimplementationPlatform?: CryptoProperties_AlgorithmProperties_CryptoImplementationPlatform

      The target platform for which the algorithm is implemented. The implementation can be 'generic', running on any platform or for a specific platform.

      from field: optional cyclonedx.v1_6.CryptoProperties.AlgorithmProperties.CryptoImplementationPlatform implementationPlatform = 5;

    • Optionalmode?: CryptoProperties_AlgorithmProperties_CryptoAlgorithmMode

      The mode of operation in which the cryptographic algorithm (block cipher) is used.

      from field: optional cyclonedx.v1_6.CryptoProperties.AlgorithmProperties.CryptoAlgorithmMode mode = 7;

    • OptionalnistQuantumSecurityLevel?: number

      The NIST security strength category as defined in https://csrc.nist.gov/projects/post-quantum-cryptography/post-quantum-cryptography-standardization/evaluation-criteria/security-(evaluation-criteria). A value of 0 indicates that none of the categories are met.

      from field: optional int32 nistQuantumSecurityLevel = 11;

    • Optionalpadding?: CryptoProperties_AlgorithmProperties_CryptoAlgorithmPadding

      The padding scheme that is used for the cryptographic algorithm.

      from field: optional cyclonedx.v1_6.CryptoProperties.AlgorithmProperties.CryptoAlgorithmPadding padding = 8;

    • OptionalparameterSetIdentifier?: string

      An identifier for the parameter set of the cryptographic algorithm. Examples: in AES128, '128' identifies the key length in bits, in SHA256, '256' identifies the digest length, '128' in SHAKE128 identifies its maximum security level in bits, and 'SHA2-128s' identifies a parameter set used in SLH-DSA (FIPS205).

      from field: optional string parameterSetIdentifier = 2;

    • Optionalprimitive?: CryptoProperties_AlgorithmProperties_CryptoPrimitive

      Cryptographic building blocks used in higher-level cryptographic systems and protocols. Primitives represent different cryptographic routines: deterministic random bit generators (drbg, e.g. CTR_DRBG from NIST SP800-90A-r1), message authentication codes (mac, e.g. HMAC-SHA-256), blockciphers (e.g. AES), streamciphers (e.g. Salsa20), signatures (e.g. ECDSA), hash functions (e.g. SHA-256), public-key encryption schemes (pke, e.g. RSA), extended output functions (xof, e.g. SHAKE256), key derivation functions (e.g. pbkdf2), key agreement algorithms (e.g. ECDH), key encapsulation mechanisms (e.g. ML-KEM), authenticated encryption (ae, e.g. AES-GCM) and the combination of multiple algorithms (combiner, e.g. SP800-56Cr2).

      from field: optional cyclonedx.v1_6.CryptoProperties.AlgorithmProperties.CryptoPrimitive primitive = 1;

    from message cyclonedx.v1_6.CryptoProperties.AlgorithmProperties