From ba07ae83b5d3f64caf0395e4a89c054571339de9 Mon Sep 17 00:00:00 2001 From: Rob Blanckaert Date: Mon, 29 Apr 2024 23:53:24 -0700 Subject: [PATCH] Update CryptoKey documentation to mention ECC. The documentation makes it seem like CryptoKey can only hold an RSA key. This is compounded by the fact that Cypto only has a function generate an RSA based key. Godot however is perfectly happy loading and using ECC based keys. --- doc/classes/CryptoKey.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/CryptoKey.xml b/doc/classes/CryptoKey.xml index ff826a3ae5d..dd128b6806a 100644 --- a/doc/classes/CryptoKey.xml +++ b/doc/classes/CryptoKey.xml @@ -1,7 +1,7 @@ - A cryptographic key (RSA). + A cryptographic key (RSA or elliptic-curve). The CryptoKey class represents a cryptographic key. Keys can be loaded and saved like any other [Resource].