summaryrefslogtreecommitdiffstats
path: root/crypto/engine/hw_sureware.c
AgeCommit message (Collapse)Author
2002-10-11Step 13 of move of engines: Remove old files.Richard Levitte
2002-07-10Reorder inclusion of header files:Lutz Jänicke
des_old.h redefines crypt: #define crypt(b,s)\ DES_crypt((b),(s)) This scheme leads to failure, if header files with the OS's true definition of crypt() are processed _after_ des_old.h was processed. This is e.g. the case on HP-UX with unistd.h. As evp.h now again includes des.h (which includes des_old.h), this problem only came up after this modification. Solution: move header files (indirectly) including e_os.h before the header files (indirectly) including evp.h. Submitted by: Reviewed by: PR:
2002-04-29Synchronise with 0.9.7-stable.Richard Levitte
2002-04-03Forgot one of the castsRichard Levitte
2002-04-03Cast the pointers to the BIGNUM data to unsigned long *. This would beRichard Levitte
harmful if we didn't also pass the exact number of bytes of that data
2002-03-22fix conditational compilation for OPENSSL_NO_...Bodo Möller
2002-03-14Fixes for 'no-hw' combined with 'no-SOME_CIPHER'.Bodo Möller
Fix dsaparam usage output. Submitted by: Nils Larsch
2002-02-14Fix warnings.Ben Laurie
2002-02-07Add aep and sureware implementations and clean up some error reasonsRichard Levitte
that were never part of the engine framework. The aep and sureware implementations are taken directly from 0.9.6c [engine] and have been modified to fit the newer engine framework and to be possible to build shared libraries of. The aep implementation has gone through quite a bunch of tests and is cleaned up (there were some misunderstandings in it about how to use locks). The sureware hasn't been tested at all in this incarnation and is basically a quick hack to get it to compile properly.