Sample code for 30+ languages & platforms
Perl Requires Chilkat v11.0.0+

Workaround for the deprecated Crypt2.AddPfxSourceData method

Shows how to replace the deprecated AddPfxSourceData method. (Chilkat is moving away from the use of CkByteData.)

Chilkat Perl Downloads

Perl
use chilkat();

$success = 0;

$crypt = chilkat::CkCrypt2->new();

$path = "c:/data/example.pfx";
$pfxPassword = "secret";

#  ------------------------------------------------------------------------
#  The AddPfxSourceData method is deprecated:

$inData = chilkat::CkByteData->new();
$inData->loadFile($path);

$success = $crypt->AddPfxSourceData($inData,$pfxPassword);

#  ------------------------------------------------------------------------
#  Workaround.
#  (Chilkat is moving away from using CkByteData)
$bdIn = chilkat::CkBinData->new();
$bdIn->LoadFile($path);

$success = $crypt->AddPfxSourceBd($bdIn,$pfxPassword);