Attention: Here be dragons

This is the latest (unstable) version of this documentation, which may document features not available in or compatible with released stable versions of Godot.

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 an TLS server via StreamPeerTLS.connect_to_stream.

Methods

Error

load ( String path )

Error

save ( String path )


Method Descriptions

Error load ( String path )

Loads a certificate from path ("*.crt" file).


Error save ( String path )

Saves a certificate to the given path (should be a "*.crt" file).