Sign in
flutter
/
third_party
/
openssl
/
8938272b322353aa564c21597ff43c010a0dd487
/
.
/
perl
/
testdec.pl
blob: 287332009b458913da135d42430ac33b4a8b1999 [
file
] [
log
] [
blame
]
#!/usr/local/bin/perl
use
ExtUtils
::
testlib
;
use
SSLeay
;
$a
=
SSLeay
::
BN
::
dec2bn
(
"1234"
);
foreach
(
1.
.
4
)
{
$a
*=
$a
;
print
$a
.
"\n"
,
$a
->
bn2dec
().
"\n"
;
}