Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Java Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Cloud Signature CSC
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(Java) Sign Mexico Pedimento

Add a signature to a Mexico pedimento file.

Chilkat Java Downloads

Java Libs for Windows, MacOS, Linux, Alpine Linux, Solaris

Java Libs for Android

import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    boolean success;

    // This is the contents before signing:

    // 500|1|3621|4199800|400||
    // 601|3621|4199800|400|IN|1||EKU9003173C9|EKU9003173C9FRNN09|1||
    // 507|4199800|IM|2006-7888">
    // 507|4199800|MS|2">
    // 800|4199800|1">
    // 801|M3621037.222|1|5|011|

    // This is the contents after signing

    // 500|1|3621|4199800|400||
    // 601|3621|4199800|400|IN|1||EKU9003173C9|EKU9003173C9FRNN09|1||
    // 507|4199800|IM|2006-7888">
    // 507|4199800|MS|2">
    // 800|4199800|1|fhP2Ker54D2+3+UZch23F0E72 .... 9qNSPIuAqpj524qLZbbA==|30001000000500003416|
    // 801|M3621037.222|1|5|011|

    // First create the text to be signed.
    boolean bCRLF = true;
    CkStringBuilder sb = new CkStringBuilder();
    // Use CRLF line endings.
    sb.AppendLine("500|1|3621|4199800|400||",bCRLF);
    sb.AppendLine("601|3621|4199800|400|IN|1||EKU9003173C9|EKU9003173C9FRNN09|1||",bCRLF);
    sb.AppendLine("507|4199800|IM|2006-7888">",bCRLF);
    sb.AppendLine("507|4199800|MS|2">",bCRLF);

    // Generate the MD5 hash of what we have so far..
    String md5_base64 = sb.getHash("md5","base64","utf-8");
    System.out.println("MD5 hash = " + md5_base64);

    // Complete the original file.
    // After signing, we'll update the BASE64_SIGNATURE and CERT_SERIAL
    sb.AppendLine("800|4199800|1|BASE64_SIGNATURE|CERT_SERIAL|",bCRLF);
    sb.AppendLine("801|M3621037.222|1|5|011|",bCRLF);

    // We're going to sign the MD5 hash using the private key.
    CkPrivateKey privKey = new CkPrivateKey();
    success = privKey.LoadAnyFormatFile("qa_data/certs/mexico_test/Certificados_de_Prueba/Certificados_Pruebas/Personas Morales/EKU9003173C9_20230517223532/CSD_EKU9003173C9_20230517223903/CSD_Sucursal_1_EKU9003173C9_20230517_223850.key","12345678a");
    if (success == false) {
        System.out.println(privKey.lastErrorText());
        return;
        }

    // Generate the ASN.1 to be signed.

    // <sequence>
    //     <sequence>
    //         <oid>1.2.840.113549.2.5</oid>
    //         <null/>
    //     </sequence>
    //     <octets>SwxHfaJhG+N3pPqay6UzVA==</octets>
    // </sequence>

    CkXml xml = new CkXml();
    xml.put_Tag("sequence");
    xml.UpdateChildContent("sequence|oid","1.2.840.113549.2.5");
    xml.UpdateChildContent("sequence|null","");
    xml.UpdateChildContent("octets",md5_base64);

    CkAsn asn = new CkAsn();
    asn.LoadAsnXml(xml.getXml());
    System.out.println("ASN.1 = " + asn.getEncodedDer("base64"));

    // Sign with the private key.
    CkRsa rsa = new CkRsa();
    success = rsa.ImportPrivateKeyObj(privKey);
    if (success == false) {
        System.out.println(rsa.lastErrorText());
        return;
        }

    // Create the opaque signature.
    CkBinData bdSig = new CkBinData();
    bdSig.AppendEncoded(asn.getEncodedDer("base64"),"base64");
    success = rsa.OpenSslSignBd(bdSig);
    if (success == false) {
        System.out.println(rsa.lastErrorText());
        return;
        }

    // bd now contains the opaque signature, which embeds the ASN.1, which contains the MD5 hash.
    // We're going to add this line:
    // 800|4199800|1|BASE64_SIGNATURE|CERT_SERIAL_NUM|

    CkCert cert = new CkCert();
    success = cert.LoadFromFile("qa_data/certs/mexico_test/Certificados_de_Prueba/Certificados_Pruebas/Personas Morales/EKU9003173C9_20230517223532/CSD_EKU9003173C9_20230517223903/CSD_Sucursal_1_EKU9003173C9_20230517_223850.cer");
    if (success == false) {
        System.out.println(cert.lastErrorText());
        return;
        }

    String serialHex = cert.serialNumber();
    // The serial in hex form looks like this:   3330303031303030303030353030303033343136
    // Decode to us-ascii.
    CkStringBuilder sbSerial = new CkStringBuilder();
    sbSerial.DecodeAndAppend(serialHex,"hex","us-ascii");
    System.out.println("serial number in us-ascii: " + sbSerial.getAsString());

    int numReplaced = sb.Replace("CERT_SERIAL",sbSerial.getAsString());
    numReplaced = sb.Replace("BASE64_SIGNATURE",bdSig.getEncoded("base64"));

    System.out.println("------------------------------------");
    System.out.println("Result:");
    System.out.println(sb.getAsString());
  }
}

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.