I'll probably get murdered for asking this but I'm not sure where else to look. I'm using Crypt::CBC in conjunction with Crypt::OpenSSL::AES on a 64-bit CentOS box... I'm trying to determine if in fact the resulting encoding is 256 opposed to 128 bit.

my $cipher = Crypt::CBC->new( -key => '1234567890123456', -cipher => 'Crypt::OpenSSL::AES', -header => 'none', -iv => '6543210987654321' );

I realize that by passing a 'key' rather than a 'literal_key', CBC will take that and compute an MD5 hash for the literal key used with AES ... I'm just not positive what bit length that is. Basically I need to prove one way or another that I'm using AES128 or AES256... and I'm at a loss where to confirm that.


In reply to Determine Encryption Strength - Crypt::CBC & OpenSSL::AES by perlgoon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.