diff options
author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-09-26 16:27:23 +0000 |
---|---|---|
committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-09-26 16:27:23 +0000 |
commit | 94659b3edc461c3da419e8980d96b5c4ca74b13f (patch) | |
tree | eb89a8fb185a9d774708897e779143f51ca752f1 /ext/digest/md5/md5ossl.c | |
parent | d29b165e2a2a228d21d2882f9978083ceb92f8d6 (diff) | |
download | ruby-94659b3edc461c3da419e8980d96b5c4ca74b13f.tar.gz ruby-94659b3edc461c3da419e8980d96b5c4ca74b13f.tar.xz ruby-94659b3edc461c3da419e8980d96b5c4ca74b13f.zip |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@2893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/md5/md5ossl.c')
-rw-r--r-- | ext/digest/md5/md5ossl.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/ext/digest/md5/md5ossl.c b/ext/digest/md5/md5ossl.c new file mode 100644 index 000000000..3c9f4ba49 --- /dev/null +++ b/ext/digest/md5/md5ossl.c @@ -0,0 +1,28 @@ +/* $Id$ */ + +#include "md5ossl.h" +#include <sys/types.h> + +void +MD5_End(MD5_CTX *pctx, unsigned char *hexdigest) +{ + unsigned char digest[16]; + size_t i; + + MD5_Final(digest, pctx); + + for (i = 0; i < 16; i++) + sprintf(hexdigest + i * 2, "%02x", digest[i]); +} + +int +MD5_Equal(MD5_CTX* pctx1, MD5_CTX* pctx2) { + return pctx1->num == pctx2->num + && pctx1->A == pctx2->A + && pctx1->B == pctx2->B + && pctx1->C == pctx2->C + && pctx1->D == pctx2->D + && pctx1->Nl == pctx2->Nl + && pctx1->Nh == pctx2->Nh + && memcmp(pctx1->data, pctx2->data, sizeof(pctx1->data)) == 0; +} |