@@ -218,6 +218,9 @@ unsigned char* ANXOpenSSL::sha256FromBytes(const unsigned char* input, uint32_t
218
218
*outputLength = md_len * 2 ;
219
219
220
220
char * buffer = (char *)malloc (sizeof (char ) * (*outputLength) + 1 );
221
+ if (!buffer) {
222
+ return NULL ;
223
+ }
221
224
222
225
int offset = 0 ;
223
226
for (int i = 0 ; i < md_len; i++) {
@@ -285,32 +288,17 @@ unsigned char* ANXOpenSSL::hmacFromBytes(const unsigned char *bytes, int bytesLe
285
288
#pragma region HEX
286
289
287
290
unsigned char * ANXOpenSSL::hexEncodeString (const unsigned char * input, uint32_t inputLength, uint32_t * outputLength) {
288
- _OutputDebugString (L" [ANX] input: %s with length: %i" , input , inputLength);
291
+ _OutputDebugString (L" [ANX] input with length: %i" , inputLength);
289
292
290
- *outputLength = inputLength * 2 ;
293
+ BIGNUM* bn = BN_bin2bn (input, inputLength, NULL ) ;
291
294
292
- char * buffer = (char *)malloc (sizeof (char ) * (*outputLength) + 1 );
293
-
294
- int offset = 0 ;
295
- for (int i = 0 ; i < inputLength; i++) {
296
- #ifdef __APPLE__
297
- int count = sprintf (buffer + offset, " %02x" , input[i]);
298
- #elif defined(_WIN32) || defined(_WIN64)
299
- int count = sprintf_s (buffer + offset, *outputLength, " %02x" , input[i]);
300
- #endif
301
- if (count == -1 ) {
302
- _OutputDebugString (L" [ANX] EOF received, return NULL" );
303
- free (buffer);
304
- return NULL ;
305
- }
306
- offset += count;
307
- }
295
+ char * output = BN_bn2hex (bn);
308
296
309
- buffer[ *outputLength] = ' \0 ' ;
297
+ *outputLength = ( uint32_t ) strlen (output) ;
310
298
311
- _OutputDebugString ( L" [ANX] output: %s with length: %i " , buffer, *outputLength );
299
+ BN_free (bn );
312
300
313
- return (unsigned char *)buffer ;
301
+ return (unsigned char *)output ;
314
302
}
315
303
316
304
unsigned char * ANXOpenSSL::hexDecodeString (const unsigned char * input, uint32_t inputLength, uint32_t * outputLength) {
@@ -321,26 +309,22 @@ unsigned char* ANXOpenSSL::hexDecodeString(const unsigned char* input, uint32_t
321
309
return NULL ;
322
310
}
323
311
324
- char * string = (char *)input;
325
-
326
- *outputLength = inputLength / 2 ;
327
- char * output = (char *)malloc (sizeof (char ) * (*outputLength));
312
+ BIGNUM* bn = BN_new ();
328
313
329
- for (int i = 0 ; i < *outputLength; i++) {
330
- #ifdef __APPLE__
331
- int result = sscanf (string, " %2hhx" , &output[i]);
332
- #elif defined(_WIN32) || defined(_WIN64)
333
- int result = sscanf_s (string, " %2hhx" , &output[i]);
334
- #endif
335
- if (result == -1 ) {
336
- _OutputDebugString (L" [ANX] EOF received, return NULL" );
337
- free (output);
338
- return NULL ;
339
- }
340
- string += 2 ;
314
+ int input_length = BN_hex2bn (&bn, (const char *)input);
315
+ if (input_length == 0 ) {
316
+ return NULL ;
341
317
}
342
318
343
- return (unsigned char *)output;
319
+ unsigned int numOfBytes = BN_num_bytes (bn);
320
+
321
+ unsigned char * output = (unsigned char *)OPENSSL_malloc (numOfBytes);
322
+
323
+ *outputLength = BN_bn2bin (bn, output);
324
+
325
+ BN_free (bn);
326
+
327
+ return output;
344
328
}
345
329
346
330
#pragma endregion
0 commit comments