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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
# --
# Crypt.t - Crypt tests
# Copyright (C) 2001-2008 OTRS GmbH, http://otrs.org/
# --
# $Id: Crypt.t,v 1.4.2.1 2008/01/07 13:02:33 martin Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
use utf8;
use Kernel::System::Crypt;
# set config
$Self->{ConfigObject}->Set(Key => 'PGP', Value => 1);
$Self->{ConfigObject}->Set(Key => 'PGP::Options', Value => '--batch --no-tty --yes');
$Self->{ConfigObject}->Set(Key => 'PGP::Key::Password', Value => { '04A17B7A' => 'somepass'} );
# check if gpg is located there
if (! -e $Self->{ConfigObject}->Get('PGP::Bin')) {
# maybe it's a mac with macport
if (-e '/opt/local/bin/gpg') {
$Self->{ConfigObject}->Set(Key => 'PGP::Bin', Value => '/opt/local/bin/gpg');
}
}
# create crypt object
$Self->{CryptObject} = Kernel::System::Crypt->new(
%{$Self},
CryptType => 'PGP',
);
if (!$Self->{CryptObject}) {
print STDERR "NOTICE: No PGP support!\n";
return;
}
my %Search = (
1 => 'unittest@example.com',
2 => 'unittest2@example.com',
);
my %Check = (
1 => {
Type => 'pub',
Identifier => 'UnitTest <unittest@example.com>',
Bit => '1024D',
Key => '38677C3B',
KeyPrivate => '04A17B7A',
Created => '2007-08-21',
Expires => '',
Fingerprint => '4124 DFBD CF52 D129 AB3E 3C44 1404 FBCB 3867 7C3B',
FingerprintShort => '4124DFBDCF52D129AB3E3C441404FBCB38677C3B',
},
2 => {
Type => 'pub',
Identifier => 'UnitTest2 <unittest2@example.com>',
Bit => '1024D',
Key => 'F0974D10',
KeyPrivate => '8593EAE2',
Created => '2007-08-21',
Expires => '2037-08-13',
Fingerprint => '36E9 9F7F AD76 6405 CBE1 BB42 F533 1A46 F097 4D10',
FingerprintShort => '36E99F7FAD766405CBE1BB42F5331A46F0974D10',
},
);
foreach my $Count (1..2) {
my @Keys = $Self->{CryptObject}->KeySearch(
Search => $Search{$Count},
);
$Self->False(
$Keys[0] || '',
"#$Count KeySearch()",
);
# get keys
my $KeyString = $Self->{MainObject}->FileRead(
Directory => $Self->{ConfigObject}->Get('Home')."/scripts/test/sample/",
Filename => "PGPPrivateKey-$Count.asc",
);
my $Message = $Self->{CryptObject}->KeyAdd(
Key => ${$KeyString},
);
$Self->True(
$Message || '',
"#$Count KeyAdd()",
);
@Keys = $Self->{CryptObject}->KeySearch(
Search => $Search{$Count},
);
$Self->True(
$Keys[0] || '',
"#$Count KeySearch()",
);
foreach my $ID (qw(Type Identifier Bit Key KeyPrivate Created Expires Fingerprint FingerprintShort)) {
$Self->Is(
$Keys[0]->{$ID} || '',
$Check{$Count}->{$ID},
"#$Count KeySearch() - $ID",
);
}
my $PublicKeyString = $Self->{CryptObject}->PublicKeyGet(
Key => $Keys[0]->{Key},
);
$Self->True(
$PublicKeyString || '',
"#$Count PublicKeyGet()",
);
my $PrivateKeyString = $Self->{CryptObject}->SecretKeyGet(
Key => $Keys[0]->{KeyPrivate},
);
$Self->True(
$PrivateKeyString || '',
"#$Count SecretKeyGet()",
);
# crypt
my $Crypted = $Self->{CryptObject}->Crypt(
Message => 'hello1234567890öäüß',
Key => $Keys[0]->{Key},
);
$Self->True(
$Crypted || '',
"#$Count Crypt()",
);
# decrypt
my %Decrypt = $Self->{CryptObject}->Decrypt(
Message => $Crypted,
);
$Self->True(
$Decrypt{Successful} || '',
"#$Count Decrypt() - Successful",
);
$Self->Is(
$Decrypt{Data} || '',
'hello1234567890öäüß',
"#$Count Decrypt() - Data",
);
# sign inline
my $Sign = $Self->{CryptObject}->Sign(
Message => 'hello1234567890äöß',
Key => $Keys[0]->{KeyPrivate},
Type => 'Inline' # Detached|Inline
);
$Self->True(
$Sign || '',
"#$Count Sign() - inline",
);
# verify
my %Verify = $Self->{CryptObject}->Verify(
Message => $Sign,
);
$Self->True(
$Verify{Successful} || '',
"#$Count Verify() - inline",
);
# sign detached
$Sign = $Self->{CryptObject}->Sign(
Message => 'hello1234567890äöß',
Key => $Keys[0]->{KeyPrivate},
Type => 'Detached' # Detached|Inline
);
$Self->True(
$Sign || '',
"#$Count Sign() - detached",
);
# verify
%Verify = $Self->{CryptObject}->Verify(
Message => 'hello1234567890äöß',
Sign => $Sign,
);
$Self->True(
$Verify{Successful} || '',
"#$Count Verify() - detached",
);
# file checks
foreach my $File (qw(xls txt doc png pdf)) {
my $Content = $Self->{MainObject}->FileRead(
Directory => $Self->{ConfigObject}->Get('Home')."/scripts/test/sample/",
Filename => "PGP-Test1.$File",
Mode => 'binmode',
);
my $Reference = ${$Content};
# crypt
my $Crypted = $Self->{CryptObject}->Crypt(
Message => $Reference,
Key => $Keys[0]->{Key},
);
$Self->True(
$Crypted || '',
"#$Count Crypt()",
);
# decrypt
my %Decrypt = $Self->{CryptObject}->Decrypt(
Message => $Crypted,
);
$Self->True(
$Decrypt{Successful} || '',
"#$Count Decrypt() - Successful",
);
$Self->True(
$Decrypt{Data} eq ${$Content},
"#$Count Decrypt() - Data",
);
# sign inline
my $Sign = $Self->{CryptObject}->Sign(
Message => $Reference,
Key => $Keys[0]->{KeyPrivate},
Type => 'Inline' # Detached|Inline
);
$Self->True(
$Sign || '',
"#$Count Sign() - inline .$File",
);
# verify
my %Verify = $Self->{CryptObject}->Verify(
Message => $Sign,
);
$Self->True(
$Verify{Successful} || '',
"#$Count Verify() - inline .$File",
);
# sign detached
$Sign = $Self->{CryptObject}->Sign(
Message => $Reference,
Key => $Keys[0]->{KeyPrivate},
Type => 'Detached' # Detached|Inline
);
$Self->True(
$Sign || '',
"#$Count Sign() - detached .$File",
);
# verify
%Verify = $Self->{CryptObject}->Verify(
Message => ${$Content},
Sign => $Sign,
);
$Self->True(
$Verify{Successful} || '',
"#$Count Verify() - detached .$File",
);
}
}
# delete keys
foreach my $Count (1..2) {
my @Keys = $Self->{CryptObject}->KeySearch(
Search => $Search{$Count},
);
$Self->True(
$Keys[0] || '',
"#$Count KeySearch()",
);
my $DeleteSecretKey = $Self->{CryptObject}->SecretKeyDelete(
Key => $Keys[0]->{KeyPrivate},
);
$Self->True(
$DeleteSecretKey || '',
"#$Count SecretKeyDelete()",
);
my $DeletePublicKey = $Self->{CryptObject}->PublicKeyDelete(
Key => $Keys[0]->{Key},
);
$Self->True(
$DeletePublicKey || '',
"#$Count PublicKeyDelete()",
);
@Keys = $Self->{CryptObject}->KeySearch(
Search => $Search{$Count},
);
$Self->False(
$Keys[0] || '',
"#$Count KeySearch()",
);
}
# reset config
$Self->{ConfigObject}->Set(Key => 'PGP', Value => 0);
1;
|