Android™
Android™
How to Tell if a File is .p7m or .p7s
See more Misc Examples
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 Android™ Downloads
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
boolean success = false;
// 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.
CkBinData bd = new CkBinData();
success = bd.LoadFile("qa_data/p7m/a.p7m");
if (success == false) {
Log.i(TAG, "Failed to load the file.");
return;
}
CkStringBuilder sb = new CkStringBuilder();
sb.Append(bd.getEncodedChunk(0,2,"hex"));
boolean caseSensitive = true;
if (sb.ContentsEqual("3080",caseSensitive) or sb.ContentsEqual("3081",caseSensitive) or sb.ContentsEqual("3082",caseSensitive) or sb.ContentsEqual("3083",caseSensitive)) {
Log.i(TAG, "This is a .p7m or .p7s file.");
}
else {
Log.i(TAG, "This is not a .p7m or .p7s file.");
}
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}