Class MTCContentSigner
- java.lang.Object
-
- org.bouncycastle.cert.plants.MTCContentSigner
-
- All Implemented Interfaces:
ContentSigner
public class MTCContentSigner extends java.lang.Object implements ContentSigner
Issuer-sideContentSignerthat emits an MTCsignatureValue(an encodedMTCProof) for an EE Merkle Tree certificate per Section 6.1 of draft-ietf-plants-merkle-tree-certs.The signer is plugged into the standard
X509v3CertificateBuilder.build(ContentSigner)flow. As the TBSCertificate DER bytes stream out of the builder intogetOutputStream(), this class captures them; whengetSignature()is invoked it:- Derives the
MerkleTreeCertEntryleaf hash and climbs one Merkle level using the single-siblinginclusionProofviaMerkleTreeCertificateValidator.computeSubtreeHash(byte[], byte[], org.bouncycastle.cert.plants.MerkleTreeHash). - Delegates to
MTCCosigner.cosignSubtree(org.bouncycastle.cert.plants.MTCLog, byte[])to produce the cosigner'sMTCSignature. - Wraps the inclusion proof and the cosigner signature in an
MTCProofand returns its TLS wire encoding.
This is the simple-case binding used by the worked examples: a standalone certificate (Section 6.2 of the draft) over the minimal subtree
[0, 2)— the EE's log entry at index 0, one sibling leaf at index 1, and a single-node inclusion proof — carrying one cosigner signature. Issuers with multi-level inclusion proofs or multiple cosigners should compose theMTCCosigner,MTCProofandMerkleTreeHashprimitives directly; landmark-relative certificates (Section 6.3, no signatures) are built viaLandmarkCertificateManager.buildLandmarkCertificate(long, long, org.bouncycastle.asn1.x509.TBSCertificateLogEntry, org.bouncycastle.asn1.x509.SubjectPublicKeyInfo, org.bouncycastle.cert.plants.MerkleTreePrimitives.SubtreeInfo, java.util.List<byte[]>, org.bouncycastle.cert.plants.MerkleTreeHash).
-
-
Constructor Summary
Constructors Constructor Description MTCContentSigner(MTCLog log, byte[] inclusionProof, MTCCosigner cosigner)The cosigner's identity is taken fromMTCCosigner.getCosignerId()— the CA-as-cosigner case is just aMTCCosignerconstructed withlog.getCa().getCaId()as its cosigner ID (Section 5.3 of the draft).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.x509.AlgorithmIdentifiergetAlgorithmIdentifier()Return the algorithm identifier describing the signature algorithm and parameters this signer generates.java.io.OutputStreamgetOutputStream()Returns a stream that will accept data for the purpose of calculating a signature.byte[]getSignature()Returns a signature based on the current data written to the stream, since the start or the last call to getSignature().
-
-
-
Constructor Detail
-
MTCContentSigner
public MTCContentSigner(MTCLog log, byte[] inclusionProof, MTCCosigner cosigner)
The cosigner's identity is taken fromMTCCosigner.getCosignerId()— the CA-as-cosigner case is just aMTCCosignerconstructed withlog.getCa().getCaId()as its cosigner ID (Section 5.3 of the draft). Witnesses, regulators, federated peers or any other entity with a distinct trust anchor ID work via the same constructor by constructing the cosigner with their own ID.- Parameters:
log- issuance log + subtree window[log.getStart(), log.getEnd())— also supplies the CA (viaMTCLog.getCa()) and therefore the hash function and log IDinclusionProof- the single sibling leaf hash that, combined with the EE's leaf hash, yields the subtree hash — same bytes that land in the resulting MTCProofcosigner- cosigner driver bound to its trust anchor ID, signature algorithm and key
-
-
Method Detail
-
getAlgorithmIdentifier
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getAlgorithmIdentifier()
Description copied from interface:ContentSignerReturn the algorithm identifier describing the signature algorithm and parameters this signer generates.- Specified by:
getAlgorithmIdentifierin interfaceContentSigner- Returns:
- algorithm oid and parameters.
-
getOutputStream
public java.io.OutputStream getOutputStream()
Description copied from interface:ContentSignerReturns a stream that will accept data for the purpose of calculating a signature. Use org.bouncycastle.util.io.TeeOutputStream if you want to accumulate the data on the fly as well.- Specified by:
getOutputStreamin interfaceContentSigner- Returns:
- an OutputStream
-
getSignature
public byte[] getSignature()
Description copied from interface:ContentSignerReturns a signature based on the current data written to the stream, since the start or the last call to getSignature().- Specified by:
getSignaturein interfaceContentSigner- Returns:
- bytes representing the signature.
-
-