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:
Jaeden Amero 2019-09-12 10:47:37 +01:00
parent 63d813d258
commit fa63645ec8

View file

@ -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