Sample code for 30+ languages & platforms
Dart

Decrypt S/MIME with an Explicit Certificate and Private Key

See more MIME Examples

Loads a CMS/PKCS #7 encrypted S/MIME message and decrypts it back to the original MIME content.

Decrypt2 accepts the certificate and its private key directly as arguments.

The file paths are relative to the application's current working directory. Absolute paths may also be used. Supply the paths appropriate to your own environment.

Background. When the certificate and private key are already loaded as separate objects, Decrypt2 uses them directly rather than searching an internal collection of credential sources.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final mime = CkMime();
  try {
    mime.loadMimeFile('qa_data/encrypted.eml');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Decrypt using an explicitly supplied certificate and private key.  The 1st argument is the
  // certificate and the 2nd is its private key.
  final cert = CkCert();
  try {
    cert.loadFromFile('qa_data/recipient.cer');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final privKey = CkPrivateKey();
  try {
    privKey.loadPemFile('qa_data/recipient_privkey.pem');
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  try {
    mime.decrypt2(cert, privKey);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  final String body;
  try {
    body = mime.getBodyDecoded();
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  print(body);
}