1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2018 Merlok
3 // Copyright (C) 2018 drHatson
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
10 //-----------------------------------------------------------------------------
12 #include "crypto/libpcrypto.h"
16 #include <mbedtls/asn1.h>
17 #include <mbedtls/aes.h>
18 #include <mbedtls/cmac.h>
19 #include <mbedtls/pk.h>
20 #include <mbedtls/ecdsa.h>
21 #include <mbedtls/sha256.h>
22 #include <mbedtls/sha512.h>
23 #include <mbedtls/ctr_drbg.h>
24 #include <mbedtls/entropy.h>
25 #include <mbedtls/error.h>
26 #include <crypto/asn1utils.h>
29 // NIST Special Publication 800-38A — Recommendation for block cipher modes of operation: methods and techniques, 2001.
30 int aes_encode(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *output
, int length
){
31 uint8_t iiv
[16] = {0};
35 mbedtls_aes_context aes
;
36 mbedtls_aes_init(&aes
);
37 if (mbedtls_aes_setkey_enc(&aes
, key
, 128))
39 if (mbedtls_aes_crypt_cbc(&aes
, MBEDTLS_AES_ENCRYPT
, length
, iiv
, input
, output
))
41 mbedtls_aes_free(&aes
);
46 int aes_decode(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *output
, int length
){
47 uint8_t iiv
[16] = {0};
51 mbedtls_aes_context aes
;
52 mbedtls_aes_init(&aes
);
53 if (mbedtls_aes_setkey_dec(&aes
, key
, 128))
55 if (mbedtls_aes_crypt_cbc(&aes
, MBEDTLS_AES_DECRYPT
, length
, iiv
, input
, output
))
57 mbedtls_aes_free(&aes
);
62 // NIST Special Publication 800-38B — Recommendation for block cipher modes of operation: The CMAC mode for authentication.
63 // https://csrc.nist.gov/CSRC/media/Projects/Cryptographic-Standards-and-Guidelines/documents/examples/AES_CMAC.pdf
64 int aes_cmac(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *mac
, int length
) {
65 memset(mac
, 0x00, 16);
68 return mbedtls_aes_cmac_prf_128(key
, MBEDTLS_AES_BLOCK_SIZE
, input
, length
, mac
);
71 int aes_cmac8(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *mac
, int length
) {
72 uint8_t cmac
[16] = {0};
75 int res
= aes_cmac(iv
, key
, input
, cmac
, length
);
79 for(int i
= 0; i
< 8; i
++)
80 mac
[i
] = cmac
[i
* 2 + 1];
85 static uint8_t fixed_rand_value
[250] = {0};
86 static int fixed_rand(void *rng_state
, unsigned char *output
, size_t len
) {
88 memcpy(output
, fixed_rand_value
, len
);
90 memset(output
, 0x00, len
);
96 int sha256hash(uint8_t *input
, int length
, uint8_t *hash
) {
100 mbedtls_sha256_context sctx
;
101 mbedtls_sha256_init(&sctx
);
102 mbedtls_sha256_starts(&sctx
, 0); // SHA-256, not 224
103 mbedtls_sha256_update(&sctx
, input
, length
);
104 mbedtls_sha256_finish(&sctx
, hash
);
105 mbedtls_sha256_free(&sctx
);
110 int sha512hash(uint8_t *input
, int length
, uint8_t *hash
) {
114 mbedtls_sha512_context sctx
;
115 mbedtls_sha512_init(&sctx
);
116 mbedtls_sha512_starts(&sctx
, 0); //SHA-512, not 384
117 mbedtls_sha512_update(&sctx
, input
, length
);
118 mbedtls_sha512_finish(&sctx
, hash
);
119 mbedtls_sha512_free(&sctx
);
124 int ecdsa_init_str(mbedtls_ecdsa_context
*ctx
, char * key_d
, char *key_x
, char *key_y
) {
130 mbedtls_ecdsa_init(ctx
);
131 res
= mbedtls_ecp_group_load(&ctx
->grp
, MBEDTLS_ECP_DP_SECP256R1
); // secp256r1
136 res
= mbedtls_mpi_read_string(&ctx
->d
, 16, key_d
);
141 if (key_x
&& key_y
) {
142 res
= mbedtls_ecp_point_read_string(&ctx
->Q
, 16, key_x
, key_y
);
150 int ecdsa_init(mbedtls_ecdsa_context
*ctx
, uint8_t * key_d
, uint8_t *key_xy
) {
156 mbedtls_ecdsa_init(ctx
);
157 res
= mbedtls_ecp_group_load(&ctx
->grp
, MBEDTLS_ECP_DP_SECP256R1
); // secp256r1
162 res
= mbedtls_mpi_read_binary(&ctx
->d
, key_d
, 32);
168 res
= mbedtls_ecp_point_read_binary(&ctx
->grp
, &ctx
->Q
, key_xy
, 32 * 2 + 1);
176 int ecdsa_key_create(uint8_t * key_d
, uint8_t *key_xy
) {
178 mbedtls_ecdsa_context ctx
;
179 ecdsa_init(&ctx
, NULL
, NULL
);
182 mbedtls_entropy_context entropy
;
183 mbedtls_ctr_drbg_context ctr_drbg
;
184 const char *pers
= "ecdsaproxmark";
186 mbedtls_entropy_init(&entropy
);
187 mbedtls_ctr_drbg_init(&ctr_drbg
);
189 res
= mbedtls_ctr_drbg_seed(&ctr_drbg
, mbedtls_entropy_func
, &entropy
, (const unsigned char *)pers
, strlen(pers
));
193 res
= mbedtls_ecdsa_genkey(&ctx
, MBEDTLS_ECP_DP_SECP256R1
, mbedtls_ctr_drbg_random
, &ctr_drbg
);
197 res
= mbedtls_mpi_write_binary(&ctx
.d
, key_d
, 32);
202 uint8_t public_key
[200] = {0};
203 res
= mbedtls_ecp_point_write_binary(&ctx
.grp
, &ctx
.Q
, MBEDTLS_ECP_PF_UNCOMPRESSED
, &keylen
, public_key
, sizeof(public_key
));
207 if (keylen
!= 65) { // 0x04 <key x 32b><key y 32b>
211 memcpy(key_xy
, public_key
, 65);
214 mbedtls_entropy_free(&entropy
);
215 mbedtls_ctr_drbg_free(&ctr_drbg
);
216 mbedtls_ecdsa_free(&ctx
);
220 char *ecdsa_get_error(int ret
) {
221 static char retstr
[300];
222 memset(retstr
, 0x00, sizeof(retstr
));
223 mbedtls_strerror(ret
, retstr
, sizeof(retstr
));
227 int ecdsa_public_key_from_pk(mbedtls_pk_context
*pk
, uint8_t *key
, size_t keylen
) {
229 size_t realkeylen
= 0;
233 mbedtls_ecdsa_context ctx
;
234 mbedtls_ecdsa_init(&ctx
);
236 res
= mbedtls_ecp_group_load(&ctx
.grp
, MBEDTLS_ECP_DP_SECP256R1
); // secp256r1
240 res
= mbedtls_ecdsa_from_keypair(&ctx
, mbedtls_pk_ec(*pk
) );
244 res
= mbedtls_ecp_point_write_binary(&ctx
.grp
, &ctx
.Q
, MBEDTLS_ECP_PF_UNCOMPRESSED
, &realkeylen
, key
, keylen
);
245 if (realkeylen
!= 65)
248 mbedtls_ecdsa_free(&ctx
);
252 int ecdsa_signature_create(uint8_t *key_d
, uint8_t *key_xy
, uint8_t *input
, int length
, uint8_t *signature
, size_t *signaturelen
) {
256 uint8_t shahash
[32] = {0};
257 res
= sha256hash(input
, length
, shahash
);
261 mbedtls_entropy_context entropy
;
262 mbedtls_ctr_drbg_context ctr_drbg
;
263 const char *pers
= "ecdsaproxmark";
265 mbedtls_entropy_init(&entropy
);
266 mbedtls_ctr_drbg_init(&ctr_drbg
);
268 res
= mbedtls_ctr_drbg_seed(&ctr_drbg
, mbedtls_entropy_func
, &entropy
, (const unsigned char *)pers
, strlen(pers
));
272 mbedtls_ecdsa_context ctx
;
273 ecdsa_init(&ctx
, key_d
, key_xy
);
274 res
= mbedtls_ecdsa_write_signature(&ctx
, MBEDTLS_MD_SHA256
, shahash
, sizeof(shahash
), signature
, signaturelen
, mbedtls_ctr_drbg_random
, &ctr_drbg
);
277 mbedtls_ctr_drbg_free(&ctr_drbg
);
278 mbedtls_ecdsa_free(&ctx
);
282 int ecdsa_signature_create_test(char * key_d
, char *key_x
, char *key_y
, char *random
, uint8_t *input
, int length
, uint8_t *signature
, size_t *signaturelen
) {
286 uint8_t shahash
[32] = {0};
287 res
= sha256hash(input
, length
, shahash
);
292 param_gethex_to_eol(random
, 0, fixed_rand_value
, sizeof(fixed_rand_value
), &rndlen
);
294 mbedtls_ecdsa_context ctx
;
295 ecdsa_init_str(&ctx
, key_d
, key_x
, key_y
);
296 res
= mbedtls_ecdsa_write_signature(&ctx
, MBEDTLS_MD_SHA256
, shahash
, sizeof(shahash
), signature
, signaturelen
, fixed_rand
, NULL
);
298 mbedtls_ecdsa_free(&ctx
);
302 int ecdsa_signature_verify_keystr(char *key_x
, char *key_y
, uint8_t *input
, int length
, uint8_t *signature
, size_t signaturelen
) {
304 uint8_t shahash
[32] = {0};
305 res
= sha256hash(input
, length
, shahash
);
309 mbedtls_ecdsa_context ctx
;
310 ecdsa_init_str(&ctx
, NULL
, key_x
, key_y
);
311 res
= mbedtls_ecdsa_read_signature(&ctx
, shahash
, sizeof(shahash
), signature
, signaturelen
);
313 mbedtls_ecdsa_free(&ctx
);
317 int ecdsa_signature_verify(uint8_t *key_xy
, uint8_t *input
, int length
, uint8_t *signature
, size_t signaturelen
) {
319 uint8_t shahash
[32] = {0};
320 res
= sha256hash(input
, length
, shahash
);
324 mbedtls_ecdsa_context ctx
;
325 ecdsa_init(&ctx
, NULL
, key_xy
);
326 res
= mbedtls_ecdsa_read_signature(&ctx
, shahash
, sizeof(shahash
), signature
, signaturelen
);
328 mbedtls_ecdsa_free(&ctx
);
332 #define T_PRIVATE_KEY "C477F9F65C22CCE20657FAA5B2D1D8122336F851A508A1ED04E479C34985BF96"
333 #define T_Q_X "B7E08AFDFE94BAD3F1DC8C734798BA1C62B3A0AD1E9EA2A38201CD0889BC7A19"
334 #define T_Q_Y "3603F747959DBF7A4BB226E41928729063ADC7AE43529E61B563BBC606CC5E09"
335 #define T_K "7A1A7E52797FC8CAAA435D2A4DACE39158504BF204FBE19F14DBB427FAEE50AE"
336 #define T_R "2B42F576D07F4165FF65D1F3B1500F81E44C316F1F0B3EF57325B69ACA46104F"
337 #define T_S "DC42C2122D6392CD3E3A993A89502A8198C1886FE69D262C4B329BDB6B63FAF1"
339 int ecdsa_nist_test(bool verbose
) {
341 uint8_t input
[] = "Example of ECDSA with P-256";
342 int length
= strlen((char *)input
);
343 uint8_t signature
[300] = {0};
348 printf(" ECDSA NIST test: ");
350 res
= ecdsa_signature_create_test(T_PRIVATE_KEY
, T_Q_X
, T_Q_Y
, T_K
, input
, length
, signature
, &siglen
);
351 // printf("res: %x signature[%x]: %s\n", (res<0)?-res:res, siglen, sprint_hex(signature, siglen));
356 uint8_t rval
[300] = {0};
357 uint8_t sval
[300] = {0};
358 res
= ecdsa_asn1_get_signature(signature
, siglen
, rval
, sval
);
363 uint8_t rval_s
[33] = {0};
364 param_gethex_to_eol(T_R
, 0, rval_s
, sizeof(rval_s
), &slen
);
365 uint8_t sval_s
[33] = {0};
366 param_gethex_to_eol(T_S
, 0, sval_s
, sizeof(sval_s
), &slen
);
367 if (strncmp((char *)rval
, (char *)rval_s
, 32) || strncmp((char *)sval
, (char *)sval_s
, 32)) {
368 printf("R or S check error\n");
374 res
= ecdsa_signature_verify_keystr(T_Q_X
, T_Q_Y
, input
, length
, signature
, siglen
);
378 // verify wrong signature
380 res
= ecdsa_signature_verify_keystr(T_Q_X
, T_Q_Y
, input
, length
, signature
, siglen
);
390 printf(" ECDSA binary signature create/check test: ");
392 uint8_t key_d
[32] = {0};
393 uint8_t key_xy
[32 * 2 + 2] = {0};
394 memset(signature
, 0x00, sizeof(signature
));
397 res
= ecdsa_key_create(key_d
, key_xy
);
401 res
= ecdsa_signature_create(key_d
, key_xy
, input
, length
, signature
, &siglen
);
405 res
= ecdsa_signature_verify(key_xy
, input
, length
, signature
, siglen
);
410 res
= ecdsa_signature_verify(key_xy
, input
, length
, signature
, siglen
);
415 printf("passed\n\n");
420 printf("failed\n\n");