aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/des/asm
Commit message (Collapse)AuthorAgeFilesLines
* Copyright consolidation: perl filesRich Salz2016-04-203-7/+22
| | | | | | | | | Add copyright to most .pl files This does NOT cover any .pl file that has other copyright in it. Most of those are Andy's but some are public domain. Fix typo's in some existing files. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Unified - adapt the generation of des assembler to use GENERATERichard Levitte2016-03-092-0/+10
| | | | | | | | | This gets rid of the BEGINRAW..ENDRAW sections in crypto/des/build.info. This also moves the assembler generating perl scripts to take the output file name as last command line argument, where necessary. Reviewed-by: Andy Polyakov <appro@openssl.org>
* SPARCv9 assembly pack: unify build rules and argument handling.Andy Polyakov2016-03-081-4/+7
| | | | | | | | | | Make all scripts produce .S, make interpretation of $(CFLAGS) pre-processor's responsibility, start accepting $(PERLASM_SCHEME). [$(PERLASM_SCHEME) is redundant in this case, because there are no deviataions between Solaris and Linux assemblers. This is purely to unify .pl->.S handling across all targets.] Reviewed-by: Richard Levitte <levitte@openssl.org>
* des/asm/des_enc.m4: fix brown-bag typo in last commit.Andy Polyakov2015-02-091-0/+1
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* des/asm/des_enc.m4: strip #ifdef OPENSSL_SYS_ULTRASPARC as part ofAndy Polyakov2015-01-271-117/+0
| | | | | | | | | | | pre-processor controls cleanup. It doesn't mean that it no longer works on UltraSPARC, only that it doesn't utilize sparcv9-specific features like branch prediction hints and load in little-endian byte order anymore. This "costs" ~3% in EDE3 performance regression on UltraSPARC. Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org>
* ifdef cleanup part 3: OPENSSL_SYSNAMERich Salz2015-01-231-24/+24
| | | | | | | | Rename OPENSSL_SYSNAME_xxx to OPENSSL_SYS_xxx Remove MS_STATIC; it's a relic from platforms <32 bits. Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org>
* Remove all .cvsignore filesRich Salz2014-11-281-7/+0
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* SPARC T4 assembly pack: treat zero input length in CBC.Andy Polyakov2014-03-071-0/+15
| | | | | | | | | | | The problem is that OpenSSH calls EVP_Cipher, which is not as protective as EVP_CipherUpdate. Formally speaking we ought to do more checks in *_cipher methods, including rejecting lengths not divisible by block size (unless ciphertext stealing is in place). But for now I implement check for zero length in low-level based on precedent. PR: 3087, 2775
* des/asm/des-586.pl: shortcut reference to DES_SPtrans.Andy Polyakov2014-02-271-1/+3
|
* misspellings fixes by https://github.com/vlajos/misspell_fixerVeres Lajos2013-09-051-2/+2
|
* SPARC T4 DES support: fix typo.Andy Polyakov2013-06-181-2/+2
|
* dest4-sparcv9.pl: add clarification comment.Andy Polyakov2013-04-041-0/+8
|
* Add support for SPARC T4 DES opcode.Andy Polyakov2013-03-311-0/+594
|
* des_enc.m4: add missing #include.Andy Polyakov2013-03-311-0/+2
| | | | Submitted by: David Miller
* SPARC assembler pack: fix FIPS linking errors.Andy Polyakov2011-08-121-0/+4
|
* Make SPARC assembler Pirify-friendly (Purify can't cope with certainAndy Polyakov2009-03-161-25/+30
| | | | PIC constructs).
* des-596.pl update: short-circuit reference to DES_SPtrans.Andy Polyakov2008-07-151-2/+6
|
* Update perl asm scripts include paths for perlasm.Dr. Stephen Henson2008-01-052-2/+4
|
* To exclude contention for shared FPU on T1, trade 3% of DES performance.Andy Polyakov2005-12-151-3/+3
|
* Address MASM-specific problems introduced withAndy Polyakov2005-11-063-233/+2
| | | | http://cvs.openssl.org/chngview?cn=14547.
* Eliminate ~3.5KB of duplicate code in des-586.pl and reserve for foldedAndy Polyakov2005-10-251-32/+89
| | | | loop option, which can give further 3KB code reduction.
* Move DES_SPtrans to where it really belongs, dec_enc to be specific.Andy Polyakov2005-10-252-90/+345
|
* PIC-ify SPARC assembler in alternative manner to eliminate dependency onAndy Polyakov2005-08-031-39/+45
| | | | OPENSSL_PIC macro.
* Add emacs cache files to .cvsignore.Richard Levitte2005-04-111-0/+2
|
* A few more files to ignoreRichard Levitte2003-01-161-0/+3
|
* gcc wants character constants to be correct. Before this change, theRichard Levitte2003-01-091-2/+2
| | | | | | | | | following would happen on Solaris: m4 -B 8192 asm/des_enc.m4 > asm/des_enc-sparc.S gcc -DOPENSSL_SYSNAME_ULTRASPARC -DOPENSSL_NO_STATIC_ENGINE -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_NO_KRB5 -m32 -mcpu=ultrasparc -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W -DMD5_ASM -c -o asm/des_enc-sparc.o asm/des_enc-sparc.S asm/des_enc-sparc.S:2007: unterminated character constant asm/des_enc-sparc.S:2008: unterminated character constant
* Another GAS fix-up and some commentary...Andy Polyakov2003-01-041-1/+17
|
* GAS can't stand stub, which is stb's synonym.Andy Polyakov2003-01-041-0/+1
|
* Unified targets for ELF assembler modules. Tested on Linux, Solaris andAndy Polyakov2003-01-032-4/+6
| | | | FreeBSD. Goal is to extend support even to SCO5, UnixWare/OpenUnix...
* Complete integration of SPARC assembler DES implementation. Tested on SolarisAndy Polyakov2003-01-021-1/+1
| | | | only. I'll keep my eyes open for Linux and OpenBSD targets.
* UltraSPARC assembler DES implementation tune-up. The code can beAndy Polyakov2003-01-021-214/+356
| | | | | compiled for any SPARC CPU (UltraSPARC performance is *not* affected), can be compiled for 64-bit ABI and is position-independent.
* Very old submission (from 2000) of UltraSPARC assembler DES implementation.Andy Polyakov2003-01-021-0/+1815
| | | | | | | It was not accepted because code is not PIC, too UltraSPARC-specific when it doesn't have to and 32-bit only. I'm committing the original version mostly for reference purposes. 64, PIC, blended CPU tune-up follows shortly. Obtained from: http://inet.uni2.dk/~svolaf/des.htm
* IA-32 assembler modules (primarily DES) PIC-ification. Idea is to keepAndy Polyakov2002-12-132-47/+47
| | | | shared libraries shared.
* Rename des_SPtrans to DES_SPtrans to differentiate from libdes and avoid ↵Richard Levitte2002-03-043-15/+15
| | | | certain linkage clashes.
* Due to an increasing number of clashes between modern OpenSSL andRichard Levitte2001-10-243-16/+16
| | | | | | | | | | | | libdes (which is still used out there) or other des implementations, the OpenSSL DES functions are renamed to begin with DES_ instead of des_. Compatibility routines are provided and declared by including openssl/des_old.h. Those declarations are the same as were in des.h when the OpenSSL project started, which is exactly how libdes looked at that time, and hopefully still looks today. The compatibility functions will be removed in some future release, at the latest in version 1.0.
* Complete the des_encrypt to des_encrypt1 rename in the mainRichard Levitte2001-03-303-4/+4
| | | | development line as well.
* Remove Win32 assembler files. They are always rebuilt (with someBodo Möller2000-03-132-4061/+0
| | | | choice of parameters) when they are needed.
* More NASM support code it still doesn't work but it doesn't work less than itDr. Stephen Henson1999-07-122-4/+4
| | | | didn't work before :-)
* Remove obsolete files.Ulf Möller1999-04-0110-6089/+0
|
* More CVS ignore stuff...Ralf S. Engelschall1999-02-251-0/+2
|
* Whoops, missed one.Ben Laurie1999-02-131-3202/+0
|
* Some cleanup.Ben Laurie1999-02-133-1011/+2
|
* Import of old SSLeay release: SSLeay 0.9.1b (unreleased)Ralf S. Engelschall1998-12-211-0/+6
|
* Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1998-12-219-499/+6399
|
* Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1998-12-2115-0/+9352