diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-05-25 14:19:49 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-05-25 14:19:49 +0200 |
commit | 3ff6d794c0aac0365f236cd078b5e5aeea0d996e (patch) | |
tree | 072126785fa039ec994754e156e956a02370e8d8 /platform/javascript/detect.py | |
parent | 42b48496dedf20d7dd43756efac4408e0a9c639f (diff) | |
download | redot-engine-3ff6d794c0aac0365f236cd078b5e5aeea0d996e.tar.gz |
HTML5: Enable mbedTLS module for Crypto object
Increases the size of the wasm by around 3% (~300-350 KiB).
This enables using the Crypto object for hashing, signing and encryption,
and therefore reduces the gap between the features of the HTML5 platform
and other platforms.
Closes https://github.com/godotengine/godot-proposals/issues/3574.
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r-- | platform/javascript/detect.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py index 709104c5ee..4a9652fc1c 100644 --- a/platform/javascript/detect.py +++ b/platform/javascript/detect.py @@ -48,11 +48,6 @@ def get_flags(): return [ ("tools", False), ("builtin_pcre2_with_jit", False), - # Disabling the mbedtls module reduces file size. - # The module has little use due to the limited networking functionality - # in this platform. For the available networking methods, the browser - # manages TLS. - ("module_mbedtls_enabled", False), ("vulkan", False), ] |