せんちゃん
せんちゃん9mo ago

I want to adjust around tls using fetch API

With nodejs, you could specify a cipher suite or version to be used with tls. Can't you do the same thing with deno? If there is already a way, please tell me. If the method doesn't exist at this time, we hope to add it in future updates
4 Replies
せんちゃん
せんちゃん9mo ago
NOTE: Even nodejs can not use the fetch API to specify the cipher algorithm used by tls. It is enough if there is some way to specify the cryptographic algorithm used by tls
Deno AI Helper
Deno AI Helper9mo ago
Based on the documentation, Deno does not currently provide a way to specify a cipher suite or version to be used with TLS when using the fetch API. The TLS settings are handled automatically by Deno's built-in APIs like Deno.connectTls(), Deno.listenTls(), and Deno.startTls(). These APIs do allow for some customization, such as specifying custom CA certificates, but they do not currently expose a way to specify a cipher suite or version. However, Deno is a rapidly evolving platform and new features are being added regularly. If this is a feature you need, I would recommend opening a feature request on the Deno GitHub repository. The Deno team is very responsive to community feedback and may consider adding this feature in a future update. 🦕
せんちゃん
せんちゃん9mo ago
thank you Isn't it an issue where to suggest the feature? Or discussions? @Deno AI Helper