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/ctr_drbg.h>
23 #include <mbedtls/entropy.h>
24 #include <mbedtls/error.h>
25 #include <crypto/asn1utils.h>
28 // NIST Special Publication 800-38A — Recommendation for block cipher modes of operation: methods and techniques, 2001.
29 int aes_encode(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *output
, int length
){
30 uint8_t iiv
[16] = {0};
34 mbedtls_aes_context aes
;
35 mbedtls_aes_init(&aes
);
36 if (mbedtls_aes_setkey_enc(&aes
, key
, 128))
38 if (mbedtls_aes_crypt_cbc(&aes
, MBEDTLS_AES_ENCRYPT
, length
, iiv
, input
, output
))
40 mbedtls_aes_free(&aes
);
45 int aes_decode(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *output
, int length
){
46 uint8_t iiv
[16] = {0};
50 mbedtls_aes_context aes
;
51 mbedtls_aes_init(&aes
);
52 if (mbedtls_aes_setkey_dec(&aes
, key
, 128))
54 if (mbedtls_aes_crypt_cbc(&aes
, MBEDTLS_AES_DECRYPT
, length
, iiv
, input
, output
))
56 mbedtls_aes_free(&aes
);
61 // NIST Special Publication 800-38B — Recommendation for block cipher modes of operation: The CMAC mode for authentication.
62 // https://csrc.nist.gov/CSRC/media/Projects/Cryptographic-Standards-and-Guidelines/documents/examples/AES_CMAC.pdf
63 int aes_cmac(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *mac
, int length
) {
64 memset(mac
, 0x00, 16);
67 return mbedtls_aes_cmac_prf_128(key
, MBEDTLS_AES_BLOCK_SIZE
, input
, length
, mac
);
70 int aes_cmac8(uint8_t *iv
, uint8_t *key
, uint8_t *input
, uint8_t *mac
, int length
) {
71 uint8_t cmac
[16] = {0};
74 int res
= aes_cmac(iv
, key
, input
, cmac
, length
);
78 for(int i
= 0; i
< 8; i
++)
79 mac
[i
] = cmac
[i
* 2 + 1];
84 static uint8_t fixed_rand_value
[250] = {0};
85 static int fixed_rand(void *rng_state
, unsigned char *output
, size_t len
) {
87 memcpy(output
, fixed_rand_value
, len
);
89 memset(output
, 0x00, len
);
95 int sha256hash(uint8_t *input
, int length
, uint8_t *hash
) {
99 mbedtls_sha256_context sctx
;
100 mbedtls_sha256_init(&sctx
);
101 mbedtls_sha256_starts(&sctx
, 0); // SHA-256, not 224
102 mbedtls_sha256_update(&sctx
, input
, length
);
103 mbedtls_sha256_finish(&sctx
, hash
);
104 mbedtls_sha256_free(&sctx
);
109 int ecdsa_init_str(mbedtls_ecdsa_context
*ctx
, char * key_d
, char *key_x
, char *key_y
) {
115 mbedtls_ecdsa_init(ctx
);
116 res
= mbedtls_ecp_group_load(&ctx
->grp
, MBEDTLS_ECP_DP_SECP256R1
); // secp256r1
121 res
= mbedtls_mpi_read_string(&ctx
->d
, 16, key_d
);
126 if (key_x
&& key_y
) {
127 res
= mbedtls_ecp_point_read_string(&ctx
->Q
, 16, key_x
, key_y
);
135 int ecdsa_init(mbedtls_ecdsa_context
*ctx
, uint8_t * key_d
, uint8_t *key_xy
) {
141 mbedtls_ecdsa_init(ctx
);
142 res
= mbedtls_ecp_group_load(&ctx
->grp
, MBEDTLS_ECP_DP_SECP256R1
); // secp256r1
147 res
= mbedtls_mpi_read_binary(&ctx
->d
, key_d
, 32);
153 res
= mbedtls_ecp_point_read_binary(&ctx
->grp
, &ctx
->Q
, key_xy
, 32 * 2 + 1);
161 int ecdsa_key_create(uint8_t * key_d
, uint8_t *key_xy
) {
163 mbedtls_ecdsa_context ctx
;
164 ecdsa_init(&ctx
, NULL
, NULL
);
167 mbedtls_entropy_context entropy
;
168 mbedtls_ctr_drbg_context ctr_drbg
;
169 const char *pers
= "ecdsaproxmark";
171 mbedtls_entropy_init(&entropy
);
172 mbedtls_ctr_drbg_init(&ctr_drbg
);
174 res
= mbedtls_ctr_drbg_seed(&ctr_drbg
, mbedtls_entropy_func
, &entropy
, (const unsigned char *)pers
, strlen(pers
));
178 res
= mbedtls_ecdsa_genkey(&ctx
, MBEDTLS_ECP_DP_SECP256R1
, mbedtls_ctr_drbg_random
, &ctr_drbg
);
182 res
= mbedtls_mpi_write_binary(&ctx
.d
, key_d
, 32);
187 uint8_t public_key
[200] = {0};
188 res
= mbedtls_ecp_point_write_binary(&ctx
.grp
, &ctx
.Q
, MBEDTLS_ECP_PF_UNCOMPRESSED
, &keylen
, public_key
, sizeof(public_key
));
192 if (keylen
!= 65) { // 0x04 <key x 32b><key y 32b>
196 memcpy(key_xy
, public_key
, 65);
199 mbedtls_entropy_free(&entropy
);
200 mbedtls_ctr_drbg_free(&ctr_drbg
);
201 mbedtls_ecdsa_free(&ctx
);
205 char *ecdsa_get_error(int ret
) {
206 static char retstr
[300];
207 memset(retstr
, 0x00, sizeof(retstr
));
208 mbedtls_strerror(ret
, retstr
, sizeof(retstr
));
212 int ecdsa_public_key_from_pk(mbedtls_pk_context
*pk
, uint8_t *key
, size_t keylen
) {
214 size_t realkeylen
= 0;
218 mbedtls_ecdsa_context ctx
;
219 mbedtls_ecdsa_init(&ctx
);
221 res
= mbedtls_ecp_group_load(&ctx
.grp
, MBEDTLS_ECP_DP_SECP256R1
); // secp256r1
225 res
= mbedtls_ecdsa_from_keypair(&ctx
, mbedtls_pk_ec(*pk
) );
229 res
= mbedtls_ecp_point_write_binary(&ctx
.grp
, &ctx
.Q
, MBEDTLS_ECP_PF_UNCOMPRESSED
, &realkeylen
, key
, keylen
);
230 if (realkeylen
!= 65)
233 mbedtls_ecdsa_free(&ctx
);
237 int ecdsa_signature_create(uint8_t *key_d
, uint8_t *key_xy
, uint8_t *input
, int length
, uint8_t *signature
, size_t *signaturelen
) {
241 uint8_t shahash
[32] = {0};
242 res
= sha256hash(input
, length
, shahash
);
246 mbedtls_entropy_context entropy
;
247 mbedtls_ctr_drbg_context ctr_drbg
;
248 const char *pers
= "ecdsaproxmark";
250 mbedtls_entropy_init(&entropy
);
251 mbedtls_ctr_drbg_init(&ctr_drbg
);
253 res
= mbedtls_ctr_drbg_seed(&ctr_drbg
, mbedtls_entropy_func
, &entropy
, (const unsigned char *)pers
, strlen(pers
));
257 mbedtls_ecdsa_context ctx
;
258 ecdsa_init(&ctx
, key_d
, key_xy
);
259 res
= mbedtls_ecdsa_write_signature(&ctx
, MBEDTLS_MD_SHA256
, shahash
, sizeof(shahash
), signature
, signaturelen
, mbedtls_ctr_drbg_random
, &ctr_drbg
);
262 mbedtls_ctr_drbg_free(&ctr_drbg
);
263 mbedtls_ecdsa_free(&ctx
);
267 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
) {
271 uint8_t shahash
[32] = {0};
272 res
= sha256hash(input
, length
, shahash
);
277 param_gethex_to_eol(random
, 0, fixed_rand_value
, sizeof(fixed_rand_value
), &rndlen
);
279 mbedtls_ecdsa_context ctx
;
280 ecdsa_init_str(&ctx
, key_d
, key_x
, key_y
);
281 res
= mbedtls_ecdsa_write_signature(&ctx
, MBEDTLS_MD_SHA256
, shahash
, sizeof(shahash
), signature
, signaturelen
, fixed_rand
, NULL
);
283 mbedtls_ecdsa_free(&ctx
);
287 int ecdsa_signature_verify_keystr(char *key_x
, char *key_y
, uint8_t *input
, int length
, uint8_t *signature
, size_t signaturelen
) {
289 uint8_t shahash
[32] = {0};
290 res
= sha256hash(input
, length
, shahash
);
294 mbedtls_ecdsa_context ctx
;
295 ecdsa_init_str(&ctx
, NULL
, key_x
, key_y
);
296 res
= mbedtls_ecdsa_read_signature(&ctx
, shahash
, sizeof(shahash
), signature
, signaturelen
);
298 mbedtls_ecdsa_free(&ctx
);
302 int ecdsa_signature_verify(uint8_t *key_xy
, 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(&ctx
, NULL
, key_xy
);
311 res
= mbedtls_ecdsa_read_signature(&ctx
, shahash
, sizeof(shahash
), signature
, signaturelen
);
313 mbedtls_ecdsa_free(&ctx
);
317 #define T_PRIVATE_KEY "C477F9F65C22CCE20657FAA5B2D1D8122336F851A508A1ED04E479C34985BF96"
318 #define T_Q_X "B7E08AFDFE94BAD3F1DC8C734798BA1C62B3A0AD1E9EA2A38201CD0889BC7A19"
319 #define T_Q_Y "3603F747959DBF7A4BB226E41928729063ADC7AE43529E61B563BBC606CC5E09"
320 #define T_K "7A1A7E52797FC8CAAA435D2A4DACE39158504BF204FBE19F14DBB427FAEE50AE"
321 #define T_R "2B42F576D07F4165FF65D1F3B1500F81E44C316F1F0B3EF57325B69ACA46104F"
322 #define T_S "DC42C2122D6392CD3E3A993A89502A8198C1886FE69D262C4B329BDB6B63FAF1"
324 int ecdsa_nist_test(bool verbose
) {
326 uint8_t input
[] = "Example of ECDSA with P-256";
327 int length
= strlen((char *)input
);
328 uint8_t signature
[300] = {0};
333 printf(" ECDSA NIST test: ");
335 res
= ecdsa_signature_create_test(T_PRIVATE_KEY
, T_Q_X
, T_Q_Y
, T_K
, input
, length
, signature
, &siglen
);
336 // printf("res: %x signature[%x]: %s\n", (res<0)?-res:res, siglen, sprint_hex(signature, siglen));
341 uint8_t rval
[300] = {0};
342 uint8_t sval
[300] = {0};
343 res
= ecdsa_asn1_get_signature(signature
, siglen
, rval
, sval
);
348 uint8_t rval_s
[33] = {0};
349 param_gethex_to_eol(T_R
, 0, rval_s
, sizeof(rval_s
), &slen
);
350 uint8_t sval_s
[33] = {0};
351 param_gethex_to_eol(T_S
, 0, sval_s
, sizeof(sval_s
), &slen
);
352 if (strncmp((char *)rval
, (char *)rval_s
, 32) || strncmp((char *)sval
, (char *)sval_s
, 32)) {
353 printf("R or S check error\n");
359 res
= ecdsa_signature_verify_keystr(T_Q_X
, T_Q_Y
, input
, length
, signature
, siglen
);
363 // verify wrong signature
365 res
= ecdsa_signature_verify_keystr(T_Q_X
, T_Q_Y
, input
, length
, signature
, siglen
);
375 printf(" ECDSA binary signature create/check test: ");
377 uint8_t key_d
[32] = {0};
378 uint8_t key_xy
[32 * 2 + 2] = {0};
379 memset(signature
, 0x00, sizeof(signature
));
382 res
= ecdsa_key_create(key_d
, key_xy
);
386 res
= ecdsa_signature_create(key_d
, key_xy
, input
, length
, signature
, &siglen
);
390 res
= ecdsa_signature_verify(key_xy
, input
, length
, signature
, siglen
);
395 res
= ecdsa_signature_verify(key_xy
, input
, length
, signature
, siglen
);
400 printf("passed\n\n");
405 printf("failed\n\n");