2019-08-22 14:49:30 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "CryptoKey" inherits= "Resource" version= "4.0" >
2019-08-22 14:49:30 +02:00
<brief_description >
2019-09-23 18:16:41 +02:00
A cryptographic key (RSA).
2019-08-22 14:49:30 +02:00
</brief_description>
<description >
2019-09-23 18:16:41 +02:00
The CryptoKey class represents a cryptographic key. Keys can be loaded and saved like any other [Resource].
2019-09-27 22:16:32 +02:00
They can be used to generate a self-signed [X509Certificate] via [method Crypto.generate_self_signed_certificate] and as private key in [method StreamPeerSSL.accept_stream] along with the appropriate certificate.
2020-01-14 13:54:31 +01:00
[b]Note:[/b] Not available in HTML5 exports.
2019-08-22 14:49:30 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "load" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "path" type= "String" >
</argument>
<description >
2019-09-23 18:16:41 +02:00
Loads a key from [code]path[/code] ("*.key" file).
2019-08-22 14:49:30 +02:00
</description>
</method>
<method name= "save" >
<return type= "int" enum= "Error" >
</return>
<argument index= "0" name= "path" type= "String" >
</argument>
<description >
2019-09-23 18:16:41 +02:00
Saves a key to the given [code]path[/code] (should be a "*.key" file).
2019-08-22 14:49:30 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>