ssl: Remove key exporter bug workaround
It is no longer necessary to cast the randbytes to non-const when exporting keys.
This commit is contained in:
parent
63d813d258
commit
fa63645ec8
1 changed files with 2 additions and 3 deletions
|
@ -1427,9 +1427,8 @@ static int ssl_populate_transform( mbedtls_ssl_transform *transform,
|
|||
master, keyblk,
|
||||
mac_key_len, keylen,
|
||||
iv_copy_len,
|
||||
/* work around bug in exporter type */
|
||||
(unsigned char *) randbytes + 32,
|
||||
(unsigned char *) randbytes,
|
||||
randbytes + 32,
|
||||
randbytes,
|
||||
tls_prf_get_type( tls_prf ) );
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue