|
|
@@ -11,6 +11,7 @@
|
|
|
#include "hwcrypto.h"
|
|
|
|
|
|
#ifdef RT_HWCRYPTO_USING_MD5
|
|
|
+#define LUAT_CRYPTO_MD5
|
|
|
int luat_crypto_md5_simple(const char* str, size_t str_size, void* out_ptr) {
|
|
|
struct rt_hwcrypto_ctx *ctx;
|
|
|
|
|
|
@@ -71,6 +72,7 @@ int luat_crypto_hmac_md5_simple(const char* input, size_t ilen, const char* key,
|
|
|
#endif
|
|
|
|
|
|
#ifdef RT_HWCRYPTO_USING_SHA1
|
|
|
+#define LUAT_CRYPTO_SHA1
|
|
|
int luat_crypto_sha1_simple(const char* str, size_t str_size, void* out_ptr) {
|
|
|
struct rt_hwcrypto_ctx *ctx;
|
|
|
|
|
|
@@ -269,3 +271,303 @@ _exit:
|
|
|
#endif
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+#ifdef PKG_USING_MBEDTLS
|
|
|
+
|
|
|
+#if !defined(MBEDTLS_CONFIG_FILE)
|
|
|
+#include "mbedtls/config.h"
|
|
|
+#else
|
|
|
+#include MBEDTLS_CONFIG_FILE
|
|
|
+#endif
|
|
|
+
|
|
|
+#include "mbedtls/sha1.h"
|
|
|
+#include "mbedtls/sha256.h"
|
|
|
+#ifdef MBEDTLS_SHA512_C
|
|
|
+#include "mbedtls/sha512.h"
|
|
|
+#endif
|
|
|
+#include "mbedtls/md5.h"
|
|
|
+
|
|
|
+#define LUAT_LOG_TAG "luat.crypto"
|
|
|
+#include "luat_log.h"
|
|
|
+
|
|
|
+void luat_crypto_HmacSha1(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen);
|
|
|
+void luat_crypto_HmacSha256(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen);
|
|
|
+void luat_crypto_HmacSha512(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen);
|
|
|
+void luat_crypto_HmacMd5(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen);
|
|
|
+
|
|
|
+#ifndef LUAT_CRYPTO_MD5
|
|
|
+#define LUAT_CRYPTO_MD5
|
|
|
+int luat_crypto_md5_simple(const char* str, size_t str_size, void* out_ptr) {
|
|
|
+ mbedtls_md5_context ctx;
|
|
|
+ mbedtls_md5_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_md5_starts(&ctx);
|
|
|
+ mbedtls_md5_update(&ctx, (const unsigned char *)str, str_size);
|
|
|
+ mbedtls_md5_finish(&ctx, (unsigned char *)out_ptr);
|
|
|
+ mbedtls_md5_free(&ctx);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#endif
|
|
|
+#ifndef LUAT_CRYPTO_SHA1
|
|
|
+#define LUAT_CRYPTO_SHA1
|
|
|
+int luat_crypto_sha1_simple(const char* str, size_t str_size, void* out_ptr) {
|
|
|
+ mbedtls_sha1_context ctx;
|
|
|
+ mbedtls_sha1_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_sha1_starts(&ctx);
|
|
|
+ mbedtls_sha1_update(&ctx, (const unsigned char *)str, str_size);
|
|
|
+ mbedtls_sha1_finish(&ctx, (unsigned char *)out_ptr);
|
|
|
+ mbedtls_sha1_free(&ctx);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+int luat_crypto_sha256_simple(const char* str, size_t str_size, void* out_ptr) {
|
|
|
+ mbedtls_sha256_context ctx;
|
|
|
+ mbedtls_sha256_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_sha256_starts(&ctx, 0);
|
|
|
+ mbedtls_sha256_update(&ctx, (const unsigned char *)str, str_size);
|
|
|
+ mbedtls_sha256_finish(&ctx, (unsigned char *)out_ptr);
|
|
|
+ mbedtls_sha256_free(&ctx);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#ifdef MBEDTLS_SHA512_C
|
|
|
+int luat_crypto_sha512_simple(const char* str, size_t str_size, void* out_ptr) {
|
|
|
+ mbedtls_sha512_context ctx;
|
|
|
+ mbedtls_sha512_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_sha512_starts(&ctx, 0);
|
|
|
+ mbedtls_sha512_update(&ctx, (const unsigned char *)str, str_size);
|
|
|
+ mbedtls_sha512_finish(&ctx, (unsigned char *)out_ptr);
|
|
|
+ mbedtls_sha512_free(&ctx);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+#ifndef LUAT_CRYPTO_MD5
|
|
|
+#define LUAT_CRYPTO_MD5
|
|
|
+int luat_crypto_hmac_md5_simple(const char* str, size_t str_size, const char* mac, size_t mac_size, void* out_ptr) {
|
|
|
+ luat_crypto_HmacMd5((const unsigned char *)str, str_size, (unsigned char *)out_ptr, (const unsigned char *)mac, mac_size);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#endif
|
|
|
+#ifndef LUAT_CRYPTO_SHA1
|
|
|
+#define LUAT_CRYPTO_SHA1
|
|
|
+int luat_crypto_hmac_sha1_simple(const char* str, size_t str_size, const char* mac, size_t mac_size, void* out_ptr) {
|
|
|
+ luat_crypto_HmacSha1((const unsigned char *)str, str_size, (unsigned char *)out_ptr, (const unsigned char *)mac, mac_size);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+int luat_crypto_hmac_sha256_simple(const char* str, size_t str_size, const char* mac, size_t mac_size, void* out_ptr) {
|
|
|
+ luat_crypto_HmacSha256((const unsigned char *)str, str_size, (unsigned char *)out_ptr, (const unsigned char *)mac, mac_size);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#ifdef MBEDTLS_SHA512_C
|
|
|
+int luat_crypto_hmac_sha512_simple(const char* str, size_t str_size, const char* mac, size_t mac_size, void* out_ptr) {
|
|
|
+ luat_crypto_HmacSha512((const unsigned char *)str, str_size, (unsigned char *)out_ptr, (const unsigned char *)mac, mac_size);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+///----------------------------
|
|
|
+
|
|
|
+#define ALI_SHA1_KEY_IOPAD_SIZE (64)
|
|
|
+#define ALI_SHA1_DIGEST_SIZE (20)
|
|
|
+
|
|
|
+#define ALI_SHA256_KEY_IOPAD_SIZE (64)
|
|
|
+#define ALI_SHA256_DIGEST_SIZE (32)
|
|
|
+
|
|
|
+#define ALI_SHA512_KEY_IOPAD_SIZE (128)
|
|
|
+#define ALI_SHA512_DIGEST_SIZE (64)
|
|
|
+
|
|
|
+#define ALI_MD5_KEY_IOPAD_SIZE (64)
|
|
|
+#define ALI_MD5_DIGEST_SIZE (16)
|
|
|
+
|
|
|
+// char atHb2Hex(unsigned char hb)
|
|
|
+// {
|
|
|
+// hb = hb&0xF;
|
|
|
+// return (char)(hb<10 ? '0'+hb : hb-10+'a');
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
+/*
|
|
|
+ * output = SHA-1( input buffer )
|
|
|
+ */
|
|
|
+void luat_crypto_HmacSha1(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen)
|
|
|
+{
|
|
|
+ int i;
|
|
|
+ mbedtls_sha1_context ctx;
|
|
|
+ unsigned char k_ipad[ALI_SHA1_KEY_IOPAD_SIZE] = {0};
|
|
|
+ unsigned char k_opad[ALI_SHA1_KEY_IOPAD_SIZE] = {0};
|
|
|
+ unsigned char tempbuf[ALI_SHA1_DIGEST_SIZE];
|
|
|
+
|
|
|
+ memset(k_ipad, 0x36, ALI_SHA1_KEY_IOPAD_SIZE);
|
|
|
+ memset(k_opad, 0x5C, ALI_SHA1_KEY_IOPAD_SIZE);
|
|
|
+
|
|
|
+ for(i=0; i<keylen; i++)
|
|
|
+ {
|
|
|
+ if(i>=ALI_SHA1_KEY_IOPAD_SIZE)
|
|
|
+ {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ k_ipad[i] ^=key[i];
|
|
|
+ k_opad[i] ^=key[i];
|
|
|
+ }
|
|
|
+ mbedtls_sha1_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_sha1_starts(&ctx);
|
|
|
+ mbedtls_sha1_update(&ctx, k_ipad, ALI_SHA1_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_sha1_update(&ctx, input, ilen);
|
|
|
+ mbedtls_sha1_finish(&ctx, tempbuf);
|
|
|
+
|
|
|
+ mbedtls_sha1_starts(&ctx);
|
|
|
+ mbedtls_sha1_update(&ctx, k_opad, ALI_SHA1_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_sha1_update(&ctx, tempbuf, ALI_SHA1_DIGEST_SIZE);
|
|
|
+ mbedtls_sha1_finish(&ctx, tempbuf);
|
|
|
+
|
|
|
+ // for(i=0; i<ALI_SHA1_DIGEST_SIZE; ++i)
|
|
|
+ // {
|
|
|
+ // output[i*2] = atHb2Hex(tempbuf[i]>>4);
|
|
|
+ // output[i*2+1] = atHb2Hex(tempbuf[i]);
|
|
|
+ // }
|
|
|
+ memcpy(output, tempbuf, ALI_SHA1_DIGEST_SIZE);
|
|
|
+
|
|
|
+ mbedtls_sha1_free(&ctx);
|
|
|
+}
|
|
|
+/*
|
|
|
+ * output = SHA-256( input buffer )
|
|
|
+ */
|
|
|
+void luat_crypto_HmacSha256(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen)
|
|
|
+{
|
|
|
+ int i;
|
|
|
+ mbedtls_sha256_context ctx;
|
|
|
+ unsigned char k_ipad[ALI_SHA256_KEY_IOPAD_SIZE] = {0};
|
|
|
+ unsigned char k_opad[ALI_SHA256_KEY_IOPAD_SIZE] = {0};
|
|
|
+
|
|
|
+ memset(k_ipad, 0x36, 64);
|
|
|
+ memset(k_opad, 0x5C, 64);
|
|
|
+
|
|
|
+ if ((NULL == input) || (NULL == key) || (NULL == output)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (keylen > ALI_SHA256_KEY_IOPAD_SIZE) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ for(i=0; i<keylen; i++)
|
|
|
+ {
|
|
|
+ if(i>=ALI_SHA256_KEY_IOPAD_SIZE)
|
|
|
+ {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ k_ipad[i] ^=key[i];
|
|
|
+ k_opad[i] ^=key[i];
|
|
|
+ }
|
|
|
+ mbedtls_sha256_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_sha256_starts(&ctx, 0);
|
|
|
+ mbedtls_sha256_update(&ctx, k_ipad, ALI_SHA256_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_sha256_update(&ctx, input, ilen);
|
|
|
+ mbedtls_sha256_finish(&ctx, output);
|
|
|
+
|
|
|
+ mbedtls_sha256_starts(&ctx, 0);
|
|
|
+ mbedtls_sha256_update(&ctx, k_opad, ALI_SHA256_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_sha256_update(&ctx, output, ALI_SHA256_DIGEST_SIZE);
|
|
|
+ mbedtls_sha256_finish(&ctx, output);
|
|
|
+
|
|
|
+ mbedtls_sha256_free(&ctx);
|
|
|
+}
|
|
|
+#ifdef MBEDTLS_SHA512_C
|
|
|
+/*
|
|
|
+ * output = SHA-512( input buffer )
|
|
|
+ */
|
|
|
+void luat_crypto_HmacSha512(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen)
|
|
|
+{
|
|
|
+ int i;
|
|
|
+ mbedtls_sha512_context ctx;
|
|
|
+ unsigned char k_ipad[ALI_SHA512_KEY_IOPAD_SIZE] = {0};
|
|
|
+ unsigned char k_opad[ALI_SHA512_KEY_IOPAD_SIZE] = {0};
|
|
|
+
|
|
|
+ memset(k_ipad, 0x36, 64);
|
|
|
+ memset(k_opad, 0x5C, 64);
|
|
|
+
|
|
|
+ if ((NULL == input) || (NULL == key) || (NULL == output)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (keylen > ALI_SHA512_KEY_IOPAD_SIZE) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ for(i=0; i<keylen; i++)
|
|
|
+ {
|
|
|
+ if(i>=ALI_SHA512_KEY_IOPAD_SIZE)
|
|
|
+ {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ k_ipad[i] ^=key[i];
|
|
|
+ k_opad[i] ^=key[i];
|
|
|
+ }
|
|
|
+ mbedtls_sha512_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_sha512_starts(&ctx, 0);
|
|
|
+ mbedtls_sha512_update(&ctx, k_ipad, ALI_SHA512_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_sha512_update(&ctx, input, ilen);
|
|
|
+ mbedtls_sha512_finish(&ctx, output);
|
|
|
+
|
|
|
+ mbedtls_sha512_starts(&ctx, 0);
|
|
|
+ mbedtls_sha512_update(&ctx, k_opad, ALI_SHA512_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_sha512_update(&ctx, output, ALI_SHA512_DIGEST_SIZE);
|
|
|
+ mbedtls_sha512_finish(&ctx, output);
|
|
|
+
|
|
|
+ mbedtls_sha512_free(&ctx);
|
|
|
+}
|
|
|
+#endif
|
|
|
+/*
|
|
|
+ * output = MD-5( input buffer )
|
|
|
+ */
|
|
|
+void luat_crypto_HmacMd5(const unsigned char *input, int ilen, unsigned char *output,const unsigned char *key, int keylen)
|
|
|
+{
|
|
|
+ int i;
|
|
|
+ mbedtls_md5_context ctx;
|
|
|
+ unsigned char k_ipad[ALI_MD5_KEY_IOPAD_SIZE] = {0};
|
|
|
+ unsigned char k_opad[ALI_MD5_KEY_IOPAD_SIZE] = {0};
|
|
|
+ unsigned char tempbuf[ALI_MD5_DIGEST_SIZE];
|
|
|
+
|
|
|
+ memset(k_ipad, 0x36, ALI_MD5_KEY_IOPAD_SIZE);
|
|
|
+ memset(k_opad, 0x5C, ALI_MD5_KEY_IOPAD_SIZE);
|
|
|
+
|
|
|
+ for(i=0; i<keylen; i++)
|
|
|
+ {
|
|
|
+ if(i>=ALI_MD5_KEY_IOPAD_SIZE)
|
|
|
+ {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ k_ipad[i] ^=key[i];
|
|
|
+ k_opad[i] ^=key[i];
|
|
|
+ }
|
|
|
+ mbedtls_md5_init(&ctx);
|
|
|
+
|
|
|
+ mbedtls_md5_starts(&ctx);
|
|
|
+ mbedtls_md5_update(&ctx, k_ipad, ALI_MD5_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_md5_update(&ctx, input, ilen);
|
|
|
+ mbedtls_md5_finish(&ctx, tempbuf);
|
|
|
+
|
|
|
+ mbedtls_md5_starts(&ctx);
|
|
|
+ mbedtls_md5_update(&ctx, k_opad, ALI_MD5_KEY_IOPAD_SIZE);
|
|
|
+ mbedtls_md5_update(&ctx, tempbuf, ALI_MD5_DIGEST_SIZE);
|
|
|
+ mbedtls_md5_finish(&ctx, tempbuf);
|
|
|
+
|
|
|
+ // for(i=0; i<ALI_MD5_DIGEST_SIZE; ++i)
|
|
|
+ // {
|
|
|
+ // output[i*2] = atHb2Hex(tempbuf[i]>>4);
|
|
|
+ // output[i*2+1] = atHb2Hex(tempbuf[i]);
|
|
|
+ // }
|
|
|
+ memcpy(output, tempbuf, ALI_MD5_DIGEST_SIZE);
|
|
|
+ mbedtls_md5_free(&ctx);
|
|
|
+}
|
|
|
+#endif
|