diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-02-11 02:09:23 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-02-11 02:09:23 +0000 |
commit | 935275bb5952b59b65c6a038a4b825aea95562ae () | |
tree | 4f6fe32cbd24811dcc0b38153d426adc845dde02 /ext/digest/md5 | |
parent | b632ca436c5d06defc87df8b2a4774680e9cf6ef (diff) |
digest: define Finish func from Final func
* ext/digest/digest.h (DEFINE_FINISH_FUNC_FROM_FINAL): macro for finish functions, by inverting arguments order. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49564 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/digest/md5/md5ossl.c | 9 | ||||
-rw-r--r-- | ext/digest/md5/md5ossl.h | 4 |
2 files changed, 3 insertions, 10 deletions
@@ -1,9 +0,0 @@ -/* $Id$ */ - -#include "md5ossl.h" - -void -MD5_Finish(MD5_CTX *pctx, unsigned char *digest) -{ - MD5_Final(digest, pctx); -} @@ -8,6 +8,8 @@ #define MD5_BLOCK_LENGTH MD5_CBLOCK -void MD5_Finish(MD5_CTX *pctx, unsigned char *digest); #endif |