1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/digest/md5: Use OpenSSL's MD5 engine if available. It is

much faster than what we have now (md5.[ch]).  Add a knob
  (--with-bundled-md5) to extconf.rb which makes it use the
  bundled one anyway.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2002-09-26 16:27:23 +00:00
parent b00af5f83a
commit 965393cbb8
6 changed files with 63 additions and 4 deletions

View file

@ -2,7 +2,11 @@
/* $Id$ */
#include "digest.h"
#if defined(HAVE_OPENSSL_MD5_H)
#include "md5ossl.h"
#else
#include "md5.h"
#endif
static algo_t md5 = {
MD5_DIGEST_LENGTH,