2019-08-22 14:49:30 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
<class name= "CryptoKey" inherits= "Resource" category= "Core" version= "3.2" >
<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].
They can be used to generate a self-signed [X509Certificate] via [method Crypto.generate_self_signed] and as private key in [method StreamPeerSSL.accept_stream] along with the appropriate certificate.
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>