attest

suspend fun attest(attestationProof: AttestationProof, destination: Url): AttestationResponse(source)

Posts an attestation proof created by createAttestationProof. Signed proofs send a complete PKCS#10 CSR; hash-authenticated proofs send an unsigned TBS CSR. Both are encoded as DER octet streams.


suspend fun attest(csr: Pkcs10CertificationRequest, destination: Url): AttestationResponse(source)

Deprecated

To be removed in Warden Supreme 1.3. Use the overload taking AttestationProof

Replace with

attest(AttestationProof.Signed(csr), destination)