Sign in
flutter
/
third_party
/
openssl
/
a0a5407901ae93fadcfead6d44b923b8ef1ad579
/
.
/
perl
/
test3.pl
blob: 8ee262a08e0f30aec840529670abcb56ac26d949 [
file
] [
log
] [
blame
]
#!/usr/local/bin/perl
use
ExtUtils
::
testlib
;
use
SSLeay
;
@md
=();
(
$c
=
SSLeay
::
Cipher
::
new
(
"idea"
))
||
die
"'des' is an unknown cipher algorithm\n"
;
$key
=
" "
;
$iv
=
" "
;
$c
->
init
(
$key
,
$iv
,
0
);
while
(<>)
{
print
$c
->
update
(
$_
);
}
print
$c
->
final
();