XML-Enc

 view release on metacpan or  search on metacpan

t/07-decrypt-xmlsec.t  view on Meta::CPAN

use warnings;
use Test::More tests => 70;
use Test::Lib;
use Test::XML::Enc;
use XML::Enc;
use MIME::Base64 qw/decode_base64/;
use File::Slurper qw/read_text/;

my $plaintext = <<'UNENCRYPTED';
<?xml version="1.0" encoding="utf-8" ?>
<PayInfo>
  <Name>John Smith</Name>
  <CreditCard Limit='2,000' Currency='USD'>
    <Number>1076 2478 0678 5589</Number>
    <Issuer>CitiBank</Issuer>
    <Expiration>06/10</Expiration>
  </CreditCard>
</PayInfo>
UNENCRYPTED

my @key_methods     = qw/rsa-1_5 rsa-oaep-mgf1p/;
my @data_methods    = qw/aes128-cbc aes192-cbc aes256-cbc tripledes-cbc aes128-gcm aes192-gcm aes256-gcm/;

my %uri = (
                'aes128-cbc'    => 'http://www.w3.org/2001/04/xmlenc#',
                'aes192-cbc'    => 'http://www.w3.org/2001/04/xmlenc#',
                'aes256-cbc'    => 'http://www.w3.org/2001/04/xmlenc#',
                'tripledes-cbc' => 'http://www.w3.org/2001/04/xmlenc#',
                'aes128-gcm'    => 'http://www.w3.org/2009/xmlenc11#',
                'aes192-gcm'    => 'http://www.w3.org/2009/xmlenc11#',
                'aes256-gcm'    => 'http://www.w3.org/2009/xmlenc11#',
            );

my %sesskey = (
                'aes128-cbc'    => 'aes-128',
                'aes192-cbc'    => 'aes-192',
                'aes256-cbc'    => 'aes-256',
                'tripledes-cbc' => 'des-192',
                'aes128-gcm'    => 'aes-128-GCM',
                'aes192-gcm'    => 'aes-192-GCM',
                'aes256-gcm'    => 'aes-256-GCM',
            );

my $xmlsec = get_xmlsec_features();
my $lax_key_search = $xmlsec->{lax_key_search} ? '--lax-key-search' :  '';

foreach my $km (@key_methods) {
    foreach my $dm (@data_methods) {

        my $element_tmpl = <<"ELEMENT";
<?xml version="1.0" encoding="UTF-8"?>
<!--
XML Security Library example: Original XML
 doc file before encryption (encrypt3 example).
-->
<EncryptedData
  xmlns="http://www.w3.org/2001/04/xmlenc#"
  Type="http://www.w3.org/2001/04/xmlenc#Element">
 <EncryptionMethod Algorithm=
   "$uri{$dm}$dm"/>
 <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
  <EncryptedKey xmlns="http://www.w3.org/2001/04/xmlenc#">
   <EncryptionMethod Algorithm=
     "http://www.w3.org/2001/04/xmlenc#$km"/>
   <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
    <KeyName/>
   </KeyInfo>
   <CipherData>
    <CipherValue/>
   </CipherData>
  </EncryptedKey>
 </KeyInfo>
 <CipherData>
  <CipherValue/>
 </CipherData>
</EncryptedData>
ELEMENT

my $content_tmpl = <<"CONTENT";
<?xml version="1.0" encoding="UTF-8"?>
<!--
XML Security Library example: Original XML
 doc file before encryption (encrypt3 example).
-->
<EncryptedData
  xmlns="http://www.w3.org/2001/04/xmlenc#"
  Type="http://www.w3.org/2001/04/xmlenc#Content">
 <EncryptionMethod Algorithm=
   "$uri{$dm}$dm"/>
 <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
  <EncryptedKey xmlns="http://www.w3.org/2001/04/xmlenc#">
   <EncryptionMethod Algorithm=
     "http://www.w3.org/2001/04/xmlenc#$km"/>
   <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
    <KeyName/>
   </KeyInfo>
   <CipherData>
    <CipherValue/>
   </CipherData>
  </EncryptedKey>
 </KeyInfo>
 <CipherData>
  <CipherValue/>
 </CipherData>
</EncryptedData>
CONTENT

SKIP: {
            skip "xmlsec1 not installed", 5 unless $xmlsec->{installed};
            skip "xmlsec1 no support for MGF element", 5 if $km eq 'rsa-oaep';
            skip "xmlsec version 1.2.27 minimum for GCM", 5 if ! $xmlsec->{aes_gcm};

            ok( open XML, '>', 'plaintext.xml' );
            print XML $plaintext;
            close XML;

            ok( open ELEMENT, '>', 'element_tmpl.xml' );
            print ELEMENT $element_tmpl;
            close ELEMENT;

            # Encrypt using xmlsec
            my $encrypt_response = `xmlsec1 encrypt $lax_key_search --pubkey-cert-pem t/sign-certonly.pem --session-key $sesskey{$dm} --xml-data plaintext.xml --output encrypted-element.xml element_tmpl.xml 2>&1`;

            my $encrypted = read_text('encrypted-element.xml');

            unlink 'element_tmpl.xml';
            unlink 'encrypted-element.xml';

            my $decrypter = XML::Enc->new(
                        {
                            key                 => 't/sign-private.pem',
                            no_xml_declaration  => 1
                        }
            );

            # Decrypt using XML::Enc
            like($decrypter->decrypt($encrypted), qr/1076 2478 0678 5589/,
                    "Decrypted xmlsec1 $dm $km Element");

            # Test Encrypted Content
            ok( open CONTENT, '>', 'content-template.xml' );
            print CONTENT $content_tmpl;
            close CONTENT;

            $encrypt_response = `xmlsec1 encrypt $lax_key_search --pubkey-cert-pem t/sign-certonly.pem   --session-key $sesskey{$dm} --xml-data plaintext.xml --output encrypted-content.xml --node-xpath '/PayInfo/CreditCard/Number' content-template.xm...

            $encrypted = read_text('encrypted-content.xml');

            unlink 'plaintext.xml';
            unlink 'content-template.xml';
            unlink 'encrypted-content.xml';

            # Decrypt using XML::Enc
            like($decrypter->decrypt($encrypted), qr/1076 2478 0678 5589/,



( run in 0.497 second using v1.01-cache-2.11-cpan-71847e10f99 )