Sample code for 30+ languages & platforms
Rust Requires Chilkat v11.0.0+

SII Chile - FRMA Signature Computation and Add to XML

See more XML Digital Signatures Examples

Compute the FRMA signature of a <DA> element enclosed inside a <CAF> element of the XML to be signed.

Chilkat Rust Downloads

Rust

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// Also see:  Compute the FRMT Signature and Add to XML

let xml = chilkat::Xml::new();

// Load the unsigned XML that contains the following:

// <DTE version="1.0">
//   <Documento ID="F60T33">
//         <TED version="1.0">
//             <DD>
// 		...
//                 <CAF version="1.0">
//                     <DA>
// 			...
//                     </DA>
// 			... The FRMA will be added here ...
//                 </CAF>
//                 ...
//             </DD>
//             ... The FRMT will be added here in another example ...
//         </TED>
//   </Documento>
// </DTE>

if xml.load_xml_file("qa_data/xml_dsig/sii_cl/test_0.xml").is_err() {
    println!("Failed to load initial XML file.");
    return;
}

// Get a reference to the "DA" element
let Ok(da_xml) = xml.find_child("Documento|TED|DD|CAF|DA") else {
    println!("Failed to find DA element");
    return;
};

//  We need to get the "flattened" DA XML where:
//    - No whitespace between elements.
//    - The 5 pre-defined entities are converted.
//    - The text is encoded in the ISO-8859-1 character set (Latin-1), 
let sb_flattened = chilkat::StringBuilder::new();
da_xml.set_emit_compact(true);
da_xml.set_emit_xml_decl(false);
let _ = da_xml.get_xml_sb(&sb_flattened);

// Compute the SHA-1 message digest of the iso-8859-1 byte representation, 
// and sign it with our RSA private key, getting the result in base64 format.

let priv_key = chilkat::PrivateKey::new();
if priv_key.load_any_format_file("qa_data/rsa/rsaPrivKey_pkcs8.pem", "").is_err() {
    println!("{}", priv_key.last_error_text());
    return;
}

let rsa = chilkat::Rsa::new();
let _ = rsa.use_private_key(&priv_key);

rsa.set_encoding_mode("base64");
rsa.set_charset("iso-8859-1");
let sig = rsa.sign_string_enc(&sb_flattened.get_as_string().unwrap_or_default(), "sha1").unwrap_or_default();

// Add the FRMA signature element to the XML.
xml.update_child_content("Documento|TED|DD|CAF|FRMA", &sig);
let _ = xml.update_attr_at("Documento|TED|DD|CAF|FRMA", true, "algoritmo", "SHA1withRSA");

// See what we have:
xml.set_emit_compact(false);
xml.set_emit_xml_decl(true);
println!("{}", xml.get_xml().unwrap_or_default());

let _ = xml.save_xml("qa_data/xml_dsig/sii_cl/test_1.xml");