summaryrefslogtreecommitdiffstats
path: root/perl/f.pl
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-02-10 09:38:31 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-02-10 09:38:31 +0000
commit8073036dd62848b616c6a817c155c3255074ec83 (patch)
tree8ae62e46c555ccc9e65b5dffd43cff25234c96af /perl/f.pl
parent0517335e3cdc565edbecb53dec8ef9091c936763 (diff)
Overhauled the Perl interface (perl/*):
- ported BN stuff to OpenSSL's different BN library - made the perl/ source tree CVS-aware - renamed the package from SSLeay to OpenSSL (the files still contain their history because I've copied them in the repository) - removed obsolete files (the test scripts will be replaced by better Test::Harness variants in the future)
Diffstat (limited to 'perl/f.pl')
-rw-r--r--perl/f.pl11
1 files changed, 0 insertions, 11 deletions
diff --git a/perl/f.pl b/perl/f.pl
deleted file mode 100644
index 4b6b2b75bf..0000000000
--- a/perl/f.pl
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/local/bin/perl
-
-use ExtUtils::testlib;
-
-use SSLeay;
-
-for (7 .. 7926)
- {
- my $num = SSLeay::BN::dec2bn($_);
- print "$_ is ".($num->is_prime ? 'prime' : 'composite'), "\n";
- }