Outdated documentation
This documentation page refers to Godot
4.3,
and may be outdated or incorrect.
Additionally, this engine version is
no longer supported.
Check this page in the stable branch for the latest additions and corrections.
X509Certificate
Inherits: Resource < RefCounted < Object
An X509 certificate (e.g. for TLS).
Description
The X509Certificate class represents an X509 certificate. Certificates can be loaded and saved like any other Resource.
They can be used as the server certificate in StreamPeerTLS.accept_stream (along with the proper CryptoKey), and to specify the only certificate that should be accepted when connecting to a TLS server via StreamPeerTLS.connect_to_stream.
Tutorials
Methods
load_from_string(string: String) |
|
Method Descriptions
Loads a certificate from path ("*.crt" file).
Error load_from_string(string: String) 🔗
Loads a certificate from the given string.
Saves a certificate to the given path (should be a "*.crt" file).
Returns a string representation of the certificate, or an empty string if the certificate is invalid.