码迷,mamicode.com
首页 > 系统相关 > 详细

openssl 中使用 hmac_sha1

时间:2015-11-13 11:51:59      阅读:1843      评论:0      收藏:0      [点我收藏+]

标签:

废话就不说了,就是对库中API的调用,没有什么好解释的,直接上代码。

#include <stdio.h>
#include <string.h>
#include <openssl/hmac.h>

int main() {
    // The secret key for hashing
    const char key[] = "0123456789";

    // The data that we‘re going to hash
    char data[] = "hello world";
    
    // Be careful of the length of string with the choosen hash engine. SHA1 needed 20 characters.
    // Change the length accordingly with your choosen hash engine.     
    unsigned char* result;
    unsigned int len = 20;

    result = (unsigned char*)malloc(sizeof(char) * len);

    HMAC_CTX ctx;
    HMAC_CTX_init(&ctx);

    // Using sha1 hash engine here.
    // You may use other hash engines. e.g EVP_md5(), EVP_sha224, EVP_sha512, etc
    HMAC_Init_ex(&ctx, key, strlen(key), EVP_sha1(), NULL);
    HMAC_Update(&ctx, (unsigned char*)&data, strlen(data));
    HMAC_Final(&ctx, result, &len);
    HMAC_CTX_cleanup(&ctx);

    printf("HMAC digest: ");

    for (int i = 0; i != len; i++)
        printf("%02x", (unsigned int)result[i]);

    printf("\n");

    free(result);

    return 0;
}


openssl 中使用 hmac_sha1

标签:

原文地址:http://my.oschina.net/bobwei/blog/529776

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!