also test binary import

This commit is contained in:
Steffen Jaeckel
2017-06-20 12:52:31 +02:00
parent bfae92e4ab
commit 4afc024f6a
2 changed files with 18 additions and 2 deletions
+3 -2
View File
@@ -47,8 +47,9 @@ typedef struct {
int radix;
} ltc_pk_part;
#define PK_PART_HEX(s) &((ltc_pk_part){s, 0, 16})
#define PK_PART_DEC(s) &((ltc_pk_part){s, 0, 10})
#define PK_PART_HEX(s) &((ltc_pk_part){s, 0, 16})
#define PK_PART_DEC(d) &((ltc_pk_part){d, 0, 10})
#define PK_PART_BIN(b, l) &((ltc_pk_part){b, l, 256})
/* ---- RSA ---- */
#ifdef LTC_MRSA