aboutsummaryrefslogtreecommitdiff
path: root/libcmix-crypto/keypair.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcmix-crypto/keypair.h')
-rw-r--r--libcmix-crypto/keypair.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcmix-crypto/keypair.h b/libcmix-crypto/keypair.h
index 90cf16b..df5ec88 100644
--- a/libcmix-crypto/keypair.h
+++ b/libcmix-crypto/keypair.h
@@ -13,8 +13,8 @@ typedef void(*KeyPairDeleter)(struct KeyPair*);
void keypair_deleter(struct KeyPair* p) ;
struct KeyPair {
- char* sec;
- char* pub;
+ unsigned char* sec;
+ unsigned char* pub;
unsigned int sec_len;
unsigned int pub_len;
KeyPairDeleter deleter;