Class: PqcAsn1::DER::CompositeKeyInfo
- Inherits:
-
Object
- Object
- PqcAsn1::DER::CompositeKeyInfo
- Defined in:
- lib/pqc_asn1.rb
Overview
Placeholder for composite / hybrid key support (PQC + traditional).
Composite key structures are defined in draft NIST standards and IETF drafts (e.g. draft-ietf-lamps-pq-composite-sigs). This class is reserved so the API shape can be stabilised before a full implementation ships.
All methods raise NotImplementedError. Track implementation progress at https://github.com/msuliq/pqc_asn1/issues.
Instance Method Summary collapse
-
#initialize ⇒ CompositeKeyInfo
constructor
rubocop:disable Lint/MissingSuper.
Constructor Details
#initialize ⇒ CompositeKeyInfo
rubocop:disable Lint/MissingSuper
530 531 532 533 534 |
# File 'lib/pqc_asn1.rb', line 530 def initialize(*) # rubocop:disable Lint/MissingSuper raise NotImplementedError, "Composite key support is not yet implemented. " \ "See https://github.com/msuliq/pqc_asn1/issues for status." end |