fix char* vs. const char* (tests related part)

This commit is contained in:
Karel Miko
2017-09-18 09:24:19 +02:00
parent 0ceb1c1213
commit 3b663a199f
25 changed files with 80 additions and 80 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ int hkdf_test(void)
static const struct hkdf_test_case {
int num;
char* Hash;
const char* Hash;
unsigned char IKM[80];
unsigned long IKM_l;
unsigned char salt[80];
+2 -2
View File
@@ -35,9 +35,9 @@ int pkcs_5_test (void)
#else
typedef struct {
char* P;
const char* P;
unsigned long P_len;
char* S;
const char* S;
unsigned long S_len;
int c;
unsigned long dkLen;