Sample code for 30+ languages & platforms
Dart

Load a PFX from BinData

See more PFX/P12 Examples

Demonstrates Pfx.LoadPfxBd, which loads a PFX / PKCS#12 container from the bytes held in a BinData object.

The file path is relative to the application's current working directory. An absolute path may also be used. Supply the path appropriate to your own environment.

Background. This is the in-memory equivalent of LoadPfxFile, for when the PKCS#12 data is already available as bytes rather than in a file.

Chilkat Dart Downloads

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

void main() {
  final pfx = CkPfx();

  // The file path is relative to the application's current working directory.  An absolute path
  // may also be used.  Supply the path appropriate to your own environment.
  // Load the PFX bytes into a BinData.
  final bd = CkBinData();
  try {
    bd.loadFile('qa_data/identity.pfx');
  } on ChilkatException {
    print('Failed to load the PFX file.');
    return;
  }

  // The PFX password should come from a secure source rather than being hard-coded.
  final password = 'myPfxPassword';

  // Load the PFX / PKCS#12 container from the bytes held in the BinData.
  try {
    pfx.loadPfxBd(bd, password);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  print('Loaded ${pfx.numCerts} certificate(s).');
}