Пример на основе принятого ответа:
#!/usr/bin/perl
use strict;
use warnings;
use MIME::Base64;
my $certPath = 'cert.pem';
open my $fh, '<', $certPath or die(sprintf('Could not open %s file: %s', $certPath, $!));
my $derBlob = do { local $/; decode_base64(<$fh> =~ s/^-.*?\n//gmr); };
close($fh);
print $derBlob;
1;
__END__