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

Unicode C 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

 

 

 

(Unicode C) How to Tell if a File is .p7m or .p7s

This example explains how to detect if a file is a .p7m or .p7s. It provides as solution to the following problem:

Sometimes people submit P7S/P7M with wrong extensions. Can I check if file is P7S or P7M with Chilkat?

Also see What is a P7M or P7S File?

Chilkat C/C++ Library Downloads

MS Visual C/C++

Linux/CentOS C/C++

Alpine Linux C/C++

MAC OS X C/C++

armhf/aarch64 C/C++

C++ Builder

iOS C/C++

Android C/C++

Solaris C/C++

MinGW C/C++

#include <C_CkBinDataW.h>
#include <C_CkStringBuilderW.h>

void ChilkatSample(void)
    {
    HCkBinDataW bd;
    BOOL success;
    HCkStringBuilderW sb;
    BOOL caseSensitive;

    // A .p7m or .p7s file is binary and contains PKCS7.
    // PKCS7 is ASN.1, and always begins with a SEQUENCE tag (a byte equal to 0x30)
    // followed by an encoded length.
    // If the file is larger than 128 bytes (and it SHOULD be), the encoded length will begin with either 0x80, 0x81, 0x82, or 0x83.
    // It can also begin with 0x84, but only for very large files (where the length is too large for 3 bytes).
    // See How ASN.1 Encodes Lengths

    // Therefore, if we have a file that might be .p7m or .p7s, we can check by
    // examining the 1st 2 bytes of the file.

    bd = CkBinDataW_Create();

    success = CkBinDataW_LoadFile(bd,L"qa_data/p7m/a.p7m");
    if (success == FALSE) {
        wprintf(L"Failed to load the file.\n");
        CkBinDataW_Dispose(bd);
        return;
    }

    sb = CkStringBuilderW_Create();
    CkStringBuilderW_Append(sb,CkBinDataW_getEncodedChunk(bd,0,2,L"hex"));

    caseSensitive = TRUE;
    if (CkStringBuilderW_ContentsEqual(sb,L"3080",caseSensitive) || CkStringBuilderW_ContentsEqual(sb,L"3081",caseSensitive) || CkStringBuilderW_ContentsEqual(sb,L"3082",caseSensitive) || CkStringBuilderW_ContentsEqual(sb,L"3083",caseSensitive)) {
        wprintf(L"This is a .p7m or .p7s file.\n");
    }
    else {
        wprintf(L"This is not a .p7m or .p7s file.\n");
    }



    CkBinDataW_Dispose(bd);
    CkStringBuilderW_Dispose(sb);

    }

 

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