summaryrefslogtreecommitdiffstats
path: root/demos/engines/rsaref
AgeCommit message (Collapse)Author
2016-03-07Remove really old demo'sRich Salz
Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-02-17Finish 02f7114a7fbb3f3ac171bae87be8c13bc69e4005David Woodhouse
Reviewed-by: Tim Hudson <tjh@openssl.org>
2016-01-29Remove clean-dependRich Salz
Remove depend hacks from demos/engines. Remove clean-depend; just call makedepend (or $CC -M) and use that. Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-01-26Remove /* foo.c */ commentsRich Salz
This was done by the following find . -name '*.[ch]' | /tmp/pl where /tmp/pl is the following three-line script: print unless $. == 1 && m@/\* .*\.[ch] \*/@; close ARGV if eof; # Close file to reset $. And then some hand-editing of other files. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
2016-01-20Consolidate "make update"Rich Salz
Rename 'update' to 'generate'. Rather than recurse, just explicitly call the three generate targets directly. Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-01-12Move Makefiles to Makefile.inRich Salz
Create Makefile's from Makefile.in Rename Makefile.org to Makefile.in Rename Makefiles to Makefile.in Address review feedback from Viktor and Richard Reviewed-by: Viktor Dukhovni <viktor@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-02-02Dead code cleanup: crypto/*.c, x509v3, demosRich Salz
Some of the #if 0 code in demo's was kept, but given helpful #ifdef names, to show more sample code. Reviewed-by: Andy Polyakov <appro@openssl.org>
2015-01-24ifdef cleanup, part 4a: '#ifdef undef'Rich Salz
This removes all code surrounded by '#ifdef undef' One case is left: memmove() replaced by open-coded for loop, in crypto/stack/stack.c That needs further review. Also removed a couple of instances of /* dead code */ if I saw them while doing the main removal. Reviewed-by: Matt Caswell <matt@openssl.org>
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell
Reviewed-by: Tim Hudson <tjh@openssl.org>
2014-11-28Remove all .cvsignore filesRich Salz
Reviewed-by: Tim Hudson <tjh@openssl.org>
2009-05-15Functional VMS changes submitted by sms@antinode.info (Steven M. Schweda).Richard Levitte
Thank you\! (note: not tested for now, a few nightly builds should give indications though)
2005-04-11Add emacs cache files to .cvsignore.Richard Levitte
2004-08-11Stupid casts...Richard Levitte
2002-11-13Make internal functions static.Richard Levitte
2002-11-13Name the flag files correctly.Richard Levitte
2002-10-24There's a name clash between OpenSSL and RSAref. Since this engine handlesRichard Levitte
RSAref data, pretend we don't care for OpenSSL's MD2 and MD5 structures or implementation. Remove all kinds of silly warning
2002-10-10Add a few more target platforms, to see how well the shared libraryRichard Levitte
linking works on them.
2002-08-13Merge in demo engines from 0.9.7-stable.Richard Levitte
2002-08-01Add the CBC flag for cbc ciphersRichard Levitte
2001-11-16Build dynamic rsaref engine on VMS. Tested on VAX so far.Richard Levitte
2001-11-15make updateRichard Levitte
2001-11-15Add MD digests.Richard Levitte
And this finishes this engine, it now offers all ciphers and digests that RSAref 2.0 has.
2001-11-15Add DES functions.Richard Levitte
Restructure the code and comment it a bit. Prepare for the presence of digests.
2001-11-15Use the generated error code files.Richard Levitte
2001-11-15'make update' + some touches.Richard Levitte
2001-11-15Add targets to update the error code files.Richard Levitte
2001-11-15Add a local error code configuration file for the rsaref dynamicRichard Levitte
engine.
2001-11-14Make use of RSAref's header files instead of EAY's crafted rsaref.h.Richard Levitte
2001-11-14In a Debian Linux environment, it's not a good idea, apparently, toRichard Levitte
manually declare the include directory /usr/include at the same time as the macro PROTOTYPES is defined with the value 1. Besides, /usr/include is the standard include directory anyway, so there's no need to specify it explicitely.
2001-11-14Add a demo that reimplements the RSAref glue in form of a dynamicallyRichard Levitte
loadable engine.