File: passphrase.t

package info (click to toggle)
libcrypt-simple-perl 0.06-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 84 kB
  • sloc: perl: 224; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 834 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/perl

=head1 NAME

passphrase.t - test

=head1 DESCRIPTION

Check we can use the 'passphrase' option.

=cut

use strict;
use warnings;

use Test::More tests => 6;

require_ok('Crypt::Simple');

{
	package Foo;
	Crypt::Simple->import(passphrase => "qwerty");
}

{
	package Bar;
	Crypt::Simple->import(passphrase => "asdfg");
}

{
	package Baz;
	Crypt::Simple->import(passphrase => "qwerty");
}

my $plaintext = "hello world";
my $footext = Foo::encrypt($plaintext);
my $bartext = Bar::encrypt($plaintext);
my $baztext = Baz::encrypt($plaintext);

isnt $footext, $bartext, "Foo and Bar are different";
is $footext, $baztext, "Foo and Baz are the same";
is Foo::decrypt($footext), $plaintext, "Foo encryption";
is Bar::decrypt($bartext), $plaintext, "Bar encryption";
is Baz::decrypt($baztext), $plaintext, "Baz encryption";