diff options
| author | cvs2svn <admin@example.com> | 2008-02-26 10:48:17 +0000 |
|---|---|---|
| committer | cvs2svn <admin@example.com> | 2008-02-26 10:48:17 +0000 |
| commit | f73a33b004c9c6281768846f2609a4496ce518a3 (patch) | |
| tree | cd1f342f086d6b52c792f34136f57e906cf705e8 /src/lib/libcrypto/bn/asm/x86.pl | |
| parent | b89c0dd40131bd782fa134e50e256db35c015e98 (diff) | |
| download | openbsd-OPENBSD_4_3_BASE.tar.gz openbsd-OPENBSD_4_3_BASE.tar.bz2 openbsd-OPENBSD_4_3_BASE.zip | |
This commit was manufactured by cvs2git to create tag 'OPENBSD_4_3_BASE'.OPENBSD_4_3_BASE
Diffstat (limited to 'src/lib/libcrypto/bn/asm/x86.pl')
| -rw-r--r-- | src/lib/libcrypto/bn/asm/x86.pl | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/lib/libcrypto/bn/asm/x86.pl b/src/lib/libcrypto/bn/asm/x86.pl deleted file mode 100644 index 1bc4f1bb27..0000000000 --- a/src/lib/libcrypto/bn/asm/x86.pl +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | #!/usr/local/bin/perl | ||
| 2 | |||
| 3 | push(@INC,"perlasm","../../perlasm"); | ||
| 4 | require "x86asm.pl"; | ||
| 5 | |||
| 6 | require("x86/mul_add.pl"); | ||
| 7 | require("x86/mul.pl"); | ||
| 8 | require("x86/sqr.pl"); | ||
| 9 | require("x86/div.pl"); | ||
| 10 | require("x86/add.pl"); | ||
| 11 | require("x86/sub.pl"); | ||
| 12 | require("x86/comba.pl"); | ||
| 13 | |||
| 14 | &asm_init($ARGV[0],$0); | ||
| 15 | |||
| 16 | &bn_mul_add_words("bn_mul_add_words"); | ||
| 17 | &bn_mul_words("bn_mul_words"); | ||
| 18 | &bn_sqr_words("bn_sqr_words"); | ||
| 19 | &bn_div_words("bn_div_words"); | ||
| 20 | &bn_add_words("bn_add_words"); | ||
| 21 | &bn_sub_words("bn_sub_words"); | ||
| 22 | &bn_mul_comba("bn_mul_comba8",8); | ||
| 23 | &bn_mul_comba("bn_mul_comba4",4); | ||
| 24 | &bn_sqr_comba("bn_sqr_comba8",8); | ||
| 25 | &bn_sqr_comba("bn_sqr_comba4",4); | ||
| 26 | |||
| 27 | &asm_finish(); | ||
| 28 | |||
