NAME

SBOM::CycloneDX::Enum::CommonExtensionName - The name of the certificate extension

SYNOPSIS

use SBOM::CycloneDX::Enum qw(COMMON_EXTENSION_NAME);

say COMMON_EXTENSION_NAME->KEY_USAGE;


use SBOM::CycloneDX::Enum::CommonExtensionName;

say SBOM::CycloneDX::Enum::CommonExtensionName->EXTENDED_KEY_USAGE;


use SBOM::CycloneDX::Enum::CommonExtensionName qw(:all);

say CRL_DISTRIBUTION_POINTS;

DESCRIPTION

SBOM::CycloneDX::Enum::CommonExtensionName is ENUM package used by SBOM::CycloneDX::CryptoProperties::CertificateExtension.

A certificate extension is a field that provides additional information about the certificate or its use. Extensions are used to convey additional information beyond the standard fields.

CONSTANTS

  • BASIC_CONSTRAINTS, Specifies whether a certificate can be used as a CA certificate or not.

  • KEY_USAGE, Specifies the allowed uses of the public key in the certificate.

  • EXTENDED_KEY_USAGE, Specifies additional purposes for which the public key can be used.

  • SUBJECT_ALTERNATIVE_NAME, Allows inclusion of additional names to identify the entity associated with the certificate.

  • AUTHORITY_KEY_IDENTIFIER, Identifies the public key of the CA that issued the certificate.

  • SUBJECT_KEY_IDENTIFIER, Identifies the public key associated with the entity the certificate was issued to.

  • AUTHORITY_INFORMATION_ACCESS, Contains CA issuers and OCSP information.

  • CERTIFICATE_POLICIES, Defines the policies under which the certificate was issued and can be used.

  • CRL_DISTRIBUTION_POINTS, Contains one or more URLs where a Certificate Revocation List (CRL) can be obtained.

  • SIGNED_CERTIFICATE_TIMESTAMP, Shows that the certificate has been publicly logged, which helps prevent the issuance of rogue certificates by a CA. Log ID, timestamp and signature as proof.

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/giterlizzi/perl-SBOM-CycloneDX/issues. You will be notified automatically of any progress on your issue.

Source Code

This is open source software. The code repository is available for public review and contribution under the terms of the license.

https://github.com/giterlizzi/perl-SBOM-CycloneDX

git clone https://github.com/giterlizzi/perl-SBOM-CycloneDX.git

AUTHOR

  • Giuseppe Di Terlizzi <gdt@cpan.org>

LICENSE AND COPYRIGHT

This software is copyright (c) 2025-2026 by Giuseppe Di Terlizzi.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.