mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 19:24:42 +02:00
byte warning casts
This commit is contained in:
@@ -4673,7 +4673,7 @@ int SetCipherList(Suites* s, const char* list)
|
|||||||
|
|
||||||
/* precede export with 1 byte length */
|
/* precede export with 1 byte length */
|
||||||
ret = ecc_export_x963(&myKey, encSecret + 1, &size);
|
ret = ecc_export_x963(&myKey, encSecret + 1, &size);
|
||||||
encSecret[0] = size;
|
encSecret[0] = (byte)size;
|
||||||
encSz = size + 1;
|
encSz = size + 1;
|
||||||
|
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
|
Reference in New Issue
Block a user