Rust
Rust
Validate PDF Signatures
See more PDF Signatures Examples
This example demonstrates how to validate the signatures in a PDF and also shows how to get information from each signature.Note: This example requires Chilkat v9.5.0.85 or greater.
Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let pdf = chilkat::Pdf::new();
// Load a PDF that has cryptographic signatures to be validated
if pdf.load_file("qa_data/pdf/sign_testing_1/helloSigned2.pdf").is_err() {
println!("{}", pdf.last_error_text());
return;
}
// Each time we verify a signature, information about the signature is written into
// sigInfo (replacing whatever sigInfo previously contained).
let sig_info = chilkat::JsonObject::new();
sig_info.set_emit_compact(false);
// Iterate over each signature and validate each.
let num_signatures = pdf.num_signatures();
let mut validated = false;
let mut i = 0;
while i < num_signatures {
validated = pdf.verify_signature(i, &sig_info).is_ok();
println!("Signature {} validated: {}", i, validated);
println!("{}", sig_info.emit().unwrap_or_default());
i = i + 1;
}
println!("Finished.");
// When VerifySignature validates a signature, a lot of information is deposited into the JSON sigInfo object.
// The information can vary depending on what was included in the signature (for example, various authenticated attributes
// and unauthenticated attributes may or may not be included).
// Here is a sample of the information you'll see.
//
// The following online tool can be used to generate code to parse any given JSON.
// Generate Parsing Code from JSON
// {
// "validated": true,
// "signatureDictionary": { <--- This is the contents of the PDF Signature Dictionary for this signature.
// "/ByteRange": [
// 0,
// 154682,
// 170512,
// 3233
// ],
// "/Contents": "<hex_data>",
// "/Filter": "/Adobe.PPKLite", <--- The meaning of the Signature Dictionary entries are defined in the PDF format specification document.
// "/M": "D:20201006110216-05'00'",
// "/Name": "yubikey rsa 1024 authentication",
// "/Prop_Build": {
// "/App": {
// "/Name": "/Adobe#20Acrobat#20Pro#20DC",
// "/OS": [
// "/Win"
// ],
// "/R": 1313792,
// "/REx": "2020.012.20048",
// "/TrustedMode": true
// },
// "/Filter": {
// "/Date": "Sep 11 2020 16:30:54",
// "/Name": "/Adobe.PPKLite",
// "/R": 131104,
// "/V": 2
// },
// "/PubSec": {
// "/Date": "Sep 11 2020 16:30:54",
// "/NonEFontNoWarn": true,
// "/R": 131105
// }
// },
// "/SubFilter": "/adbe.pkcs7.detached",
// "/Type": "/Sig"
// },
// "pkcs7": { <--- This is the content of the CMS signature.
// "verify": {
// "certs": [ <--- Each signing certificate is listed here (by issuer common name and signing cert's serail number (in hex))
// {
// "issuerCN": "yubikey rsa 1024 authentication",
// "serial": "66BE58138D761E92BC594A722932657BE26D421F"
// }
// ],
// "digestAlgorithms": [
// "sha256"
// ],
// "signerInfo": [ <--- contains data from each SignerInfo
// {
// "cert": {
// "serialNumber": "66BE58138D761E92BC594A722932657BE26D421F",
// "issuerCN": "yubikey rsa 1024 authentication",
// "digestAlgOid": "2.16.840.1.101.3.4.2.1",
// "digestAlgName": "SHA256"
// },
// "contentType": "1.2.840.113549.1.7.1",
// "messageDigest": "btQOuSEvC31mdRFHtyEUPw8R9NuKfk0XPcQ6Lcmn6pk=",
// "signingAlgOid": "1.2.840.113549.1.1.11",
// "signingAlgName": "RSA-SHA256-PKCSV-1_5",
// "authAttr": { <--- CMS authenticated attributes are contained here.
// "1.2.840.113583.1.1.8": {
// "der": "MAA="
// },
// "1.2.840.113549.1.9.3": {
// "name": "contentType",
// "oid": "1.2.840.113549.1.7.1"
// },
// "1.2.840.113549.1.9.4": {
// "name": "messageDigest",
// "digest": "btQOuSEvC31mdRFHtyEUPw8R9NuKfk0XPcQ6Lcmn6pk="
// }
// },
// "unauthAttr": { <--- CMS unauthenticated attributes are contained here.
// "1.2.840.113549.1.9.16.2.14": {
// "name": "timestampToken",
// "der": "MIIOvAYJKo ... Es/70g=",
// "verify": {
// "digestAlgorithms": [
// "sha256"
// ],
// "signerInfo": [
// {
// "cert": {
// "serialNumber": "04CD3F8568AE76C61BB0FE7160CCA76D",
// "issuerCN": "DigiCert SHA2 Assured ID Timestamping CA",
// "digestAlgOid": "2.16.840.1.101.3.4.2.1",
// "digestAlgName": "SHA256"
// },
// "contentType": "1.2.840.113549.1.9.16.1.4",
// "signingTime": "201006160423Z",
// "messageDigest": "Atv5Rj3kidB8IR6CplYiX3o6De/k8SC6JJ6uUPAGO0g=",
// "signingAlgOid": "1.2.840.113549.1.1.1",
// "signingAlgName": "RSA-PKCSV-1_5",
// "authAttr": {
// "1.2.840.113549.1.9.3": {
// "name": "contentType",
// "oid": "1.2.840.113549.1.9.16.1.4"
// },
// "1.2.840.113549.1.9.5": {
// "name": "signingTime",
// "utctime": "201006160423Z"
// },
// "1.2.840.113549.1.9.16.2.12": {
// "name": "signingCertificate",
// "der": "MBowGDAWBBQDJb1QXtqWMC3CL0+gHkwovig0xQ=="
// },
// "1.2.840.113549.1.9.4": {
// "name": "messageDigest",
// "digest": "Atv5Rj3kidB8IR6CplYiX3o6De/k8SC6JJ6uUPAGO0g="
// }
// }
// }
// ]
// },
// "timestampSignatureVerified": true,
// "tstInfo": {
// "tsaPolicyId": "2.16.840.1.114412.7.1",
// "messageImprint": {
// "hashAlg": "sha256",
// "digest": "gLJtrRWUSDfjzDkF1MfWG1wyHA6FrUJLkWMGRG+eMlA=",
// "digestMatches": true
// },
// "serialNumber": "00CE57E1113970607EF63B1D1160545321",
// "genTime": "20201006160423Z"
// }
// }
// }
// }
// ],
// "pkcs7": {
// "verify": {
// "certs": [
// {
// "issuerCN": "DigiCert SHA2 Assured ID Timestamping CA",
// "serial": "04CD3F8568AE76C61BB0FE7160CCA76D"
// },
// {
// "issuerCN": "DigiCert Assured ID Root CA",
// "serial": "0AA125D6D6321B7E41E405DA3697C215"
// }
// ]
// }
// }
// }
// }
// }
// **** The point of this code is to show how to get at each desired piece of information contained in the signature.
// **** If your signature contains additional information not shown here, then you can use the online tool to generate the parse code.
// **** It is likely you're only interested in a few items of information, and therefore you wouldn't copy all of this code, but might
// **** choose to use bits and pieces to get the information you find important.
let json = chilkat::JsonObject::new();
// Imagine that the "json" object contains the information obtained by validating a signature...
// The code below was generated using the online tool: Generate Parsing Code from JSON
let unauth_attr_timestamp_token_tst_info_gen_time = chilkat::DtObj::new();
let signing_time = chilkat::DtObj::new();
let auth_attr_signing_time_utctime = chilkat::DtObj::new();
let mut j: i32 = 0;
let mut count_j: i32 = 0;
validated = json.bool_of("validated");
let signature_dictionary_contents = json.string_of("signatureDictionary./Contents").unwrap_or_default();
let signature_dictionary_filter = json.string_of("signatureDictionary./Filter").unwrap_or_default();
let signature_dictionary_m = json.string_of("signatureDictionary./M").unwrap_or_default();
let signature_dictionary_name = json.string_of("signatureDictionary./Name").unwrap_or_default();
let signature_dictionary_prop_build_app_name = json.string_of("signatureDictionary./Prop_Build./App./Name").unwrap_or_default();
let signature_dictionary_prop_build_app_r = json.int_of("signatureDictionary./Prop_Build./App./R");
let signature_dictionary_prop_build_app_r_ex = json.string_of("signatureDictionary./Prop_Build./App./REx").unwrap_or_default();
let signature_dictionary_prop_build_app_trusted_mode = json.bool_of("signatureDictionary./Prop_Build./App./TrustedMode");
let signature_dictionary_prop_build_filter_date = json.string_of("signatureDictionary./Prop_Build./Filter./Date").unwrap_or_default();
let signature_dictionary_prop_build_filter_name = json.string_of("signatureDictionary./Prop_Build./Filter./Name").unwrap_or_default();
let signature_dictionary_prop_build_filter_r = json.int_of("signatureDictionary./Prop_Build./Filter./R");
let signature_dictionary_prop_build_filter_v = json.int_of("signatureDictionary./Prop_Build./Filter./V");
let signature_dictionary_prop_build_pub_sec_date = json.string_of("signatureDictionary./Prop_Build./PubSec./Date").unwrap_or_default();
let signature_dictionary_prop_build_pub_sec_non_e_font_no_warn = json.bool_of("signatureDictionary./Prop_Build./PubSec./NonEFontNoWarn");
let signature_dictionary_prop_build_pub_sec_r = json.int_of("signatureDictionary./Prop_Build./PubSec./R");
let signature_dictionary_sub_filter = json.string_of("signatureDictionary./SubFilter").unwrap_or_default();
let signature_dictionary_type = json.string_of("signatureDictionary./Type").unwrap_or_default();
i = 0;
let mut count_i = json.size_of_array("signatureDictionary./ByteRange");
while i < count_i {
json.set_i(i);
let _ = json.int_of("signatureDictionary./ByteRange[i]");
i = i + 1;
}
i = 0;
count_i = json.size_of_array("signatureDictionary./Prop_Build./App./OS");
while i < count_i {
json.set_i(i);
let _ = json.string_of("signatureDictionary./Prop_Build./App./OS[i]").unwrap_or_default();
i = i + 1;
}
i = 0;
count_i = json.size_of_array("pkcs7.verify.certs");
while i < count_i {
json.set_i(i);
let _ = json.string_of("pkcs7.verify.certs[i].issuerCN").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.certs[i].serial").unwrap_or_default();
i = i + 1;
}
i = 0;
count_i = json.size_of_array("pkcs7.verify.digestAlgorithms");
while i < count_i {
json.set_i(i);
let _ = json.string_of("pkcs7.verify.digestAlgorithms[i]").unwrap_or_default();
i = i + 1;
}
i = 0;
count_i = json.size_of_array("pkcs7.verify.signerInfo");
while i < count_i {
json.set_i(i);
let _ = json.string_of("pkcs7.verify.signerInfo[i].cert.serialNumber").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].cert.issuerCN").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].cert.digestAlgOid").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].cert.digestAlgName").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].contentType").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].messageDigest").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].signingAlgOid").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].signingAlgName").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].authAttr.\"1.2.840.113583.1.1.8\".der").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].authAttr.\"1.2.840.113549.1.9.3\".name").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].authAttr.\"1.2.840.113549.1.9.3\".oid").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].authAttr.\"1.2.840.113549.1.9.4\".name").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].authAttr.\"1.2.840.113549.1.9.4\".digest").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".name").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".der").unwrap_or_default();
let _ = json.bool_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".timestampSignatureVerified");
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".tstInfo.tsaPolicyId").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".tstInfo.messageImprint.hashAlg").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".tstInfo.messageImprint.digest").unwrap_or_default();
let _ = json.bool_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".tstInfo.messageImprint.digestMatches");
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".tstInfo.serialNumber").unwrap_or_default();
let _ = json.dt_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".tstInfo.genTime", false, &unauth_attr_timestamp_token_tst_info_gen_time);
j = 0;
count_j = json.size_of_array("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.digestAlgorithms");
while j < count_j {
json.set_j(j);
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.digestAlgorithms[j]").unwrap_or_default();
j = j + 1;
}
j = 0;
count_j = json.size_of_array("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo");
while j < count_j {
json.set_j(j);
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].cert.serialNumber").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].cert.issuerCN").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].cert.digestAlgOid").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].cert.digestAlgName").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].contentType").unwrap_or_default();
let _ = json.dt_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].signingTime", false, &signing_time);
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].messageDigest").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].signingAlgOid").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].signingAlgName").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.3\".name").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.3\".oid").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.5\".name").unwrap_or_default();
let _ = json.dt_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.5\".utctime", false, &auth_attr_signing_time_utctime);
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.16.2.12\".name").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.16.2.12\".der").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.4\".name").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.signerInfo[i].unauthAttr.\"1.2.840.113549.1.9.16.2.14\".verify.signerInfo[j].authAttr.\"1.2.840.113549.1.9.4\".digest").unwrap_or_default();
j = j + 1;
}
i = i + 1;
}
i = 0;
count_i = json.size_of_array("pkcs7.verify.pkcs7.verify.certs");
while i < count_i {
json.set_i(i);
let _ = json.string_of("pkcs7.verify.pkcs7.verify.certs[i].issuerCN").unwrap_or_default();
let _ = json.string_of("pkcs7.verify.pkcs7.verify.certs[i].serial").unwrap_or_default();
i = i + 1;
}