Commit a2578653 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix for some platforms where "char" is unsigned.

(cherry picked from commit 08b433540416c5bc9a874ba0343e35ba490c65f1)
parent 60adefa6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ typedef struct
	/* Duplicate key if custom cofactor needed */
	EC_KEY *co_key;
	/* Cofactor mode */
	char cofactor_mode;
	signed char cofactor_mode;
	/* KDF (if any) to use for ECDH */
	char kdf_type;
	/* Message digest to use for key derivation */