aboutsummaryrefslogtreecommitdiff
path: root/libsylph
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-08 08:17:19 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-08 08:17:19 +0000
commit2a2ab0cd013810f059cf378f3e88fc910952c7d5 (patch)
tree0e505f6d5d24f9bcb71047dc79583382e0e42c02 /libsylph
parent6badcad3d326f555c46c25c00e5e64ea02154531 (diff)
md5_hmac_get(): minor code cleanup.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@561 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r--libsylph/md5_hmac.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libsylph/md5_hmac.c b/libsylph/md5_hmac.c
index 46c0f523..c9091f83 100644
--- a/libsylph/md5_hmac.c
+++ b/libsylph/md5_hmac.c
@@ -55,9 +55,7 @@ md5_hmac_get(const guchar *text, gint text_len,
/* if key is longer than 64 bytes reset it to key=MD5(key) */
SMD5 *tmd5;
- tmd5 = s_gnet_md5_new_incremental();
- s_gnet_md5_update(tmd5, key, key_len);
- s_gnet_md5_final(tmd5);
+ tmd5 = s_gnet_md5_new(key, key_len);
memcpy(k_ipad, s_gnet_md5_get_digest(tmd5),
S_GNET_MD5_HASH_LENGTH);
memcpy(k_opad, s_gnet_md5_get_digest(tmd5),