use Test::Simple tests => 1; use Secret::Simple; my $KEY = 'This is a test key'; my $TXT = <new( $KEY ); my $ciphertext = $ss->encrypt( $TXT ); my $plaintext = $ss->decrypt( $ciphertext ); ok ( $plaintext eq $TXT );