2019-08-22 14:49:30 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-03-01 01:44:37 +01:00
<class name= "X509Certificate" inherits= "Resource" version= "4.1" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2019-08-22 14:49:30 +02:00
<brief_description >
2022-09-07 08:25:47 +02:00
An X509 certificate (e.g. for TLS).
2019-08-22 14:49:30 +02:00
</brief_description>
<description >
2019-09-23 18:16:41 +02:00
The X509Certificate class represents an X509 certificate. Certificates can be loaded and saved like any other [Resource].
2022-09-07 08:25:47 +02:00
They can be used as the server certificate in [method StreamPeerTLS.accept_stream] (along with the proper [CryptoKey]), and to specify the only certificate that should be accepted when connecting to an TLS server via [method StreamPeerTLS.connect_to_stream].
2019-08-22 14:49:30 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "load" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Error" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "path" type= "String" />
2019-08-22 14:49:30 +02:00
<description >
2022-08-09 01:41:07 +02:00
Loads a certificate from [param path] ("*.crt" file).
2019-08-22 14:49:30 +02:00
</description>
</method>
<method name= "save" >
2021-07-30 15:28:05 +02:00
<return type= "int" enum= "Error" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "path" type= "String" />
2019-08-22 14:49:30 +02:00
<description >
2022-08-09 01:41:07 +02:00
Saves a certificate to the given [param path] (should be a "*.crt" file).
2019-08-22 14:49:30 +02:00
</description>
</method>
</methods>
</class>