diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-10-09 15:59:17 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-10-09 15:59:17 +0200 |
commit | e9abcbac3b75b2d99f04d26614826e469c47abbc (patch) | |
tree | d76ef27676f761afef4472964bb86d1d73cac756 | |
parent | 98497ff71928daff6afb393b26e230e28bf18e3e (diff) |
Fix crash when passing invalid key to Crypto.
In generate_self_signed_certificate
-rw-r--r-- | modules/mbedtls/crypto_mbedtls.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mbedtls/crypto_mbedtls.cpp b/modules/mbedtls/crypto_mbedtls.cpp index ca656b4b9b..204f4e8905 100644 --- a/modules/mbedtls/crypto_mbedtls.cpp +++ b/modules/mbedtls/crypto_mbedtls.cpp @@ -237,6 +237,7 @@ Ref<CryptoKey> CryptoMbedTLS::generate_rsa(int p_bytes) { Ref<X509Certificate> CryptoMbedTLS::generate_self_signed_certificate(Ref<CryptoKey> p_key, String p_issuer_name, String p_not_before, String p_not_after) { Ref<CryptoKeyMbedTLS> key = static_cast<Ref<CryptoKeyMbedTLS> >(p_key); + ERR_FAIL_COND_V_MSG(key.is_null(), NULL, "Invalid private key argument."); mbedtls_x509write_cert crt; mbedtls_x509write_crt_init(&crt); |