Skip to content

Commit

Permalink
Merge pull request #93176 from Faless/crypto/expose_get_system_ca_cer…
Browse files Browse the repository at this point in the history
…tificates

[Crypto] Expose `get_system_ca_certificates`.
  • Loading branch information
akien-mga committed Jun 17, 2024
2 parents 70a0bee + 33d0e1c commit 8cbe4fb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/core_bind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@ void ResourceSaver::_bind_methods() {

////// OS //////

String OS::get_system_ca_certificates() {
return ::OS::get_singleton()->get_system_ca_certificates();
}

PackedStringArray OS::get_connected_midi_inputs() {
return ::OS::get_singleton()->get_connected_midi_inputs();
}
Expand Down Expand Up @@ -573,6 +577,7 @@ String OS::get_unique_id() const {
OS *OS::singleton = nullptr;

void OS::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_system_ca_certificates"), &OS::get_system_ca_certificates);
ClassDB::bind_method(D_METHOD("get_connected_midi_inputs"), &OS::get_connected_midi_inputs);
ClassDB::bind_method(D_METHOD("open_midi_inputs"), &OS::open_midi_inputs);
ClassDB::bind_method(D_METHOD("close_midi_inputs"), &OS::close_midi_inputs);
Expand Down
2 changes: 2 additions & 0 deletions core/core_bind.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@ class OS : public Object {
RENDERING_DRIVER_D3D12,
};

String get_system_ca_certificates();

virtual PackedStringArray get_connected_midi_inputs();
virtual void open_midi_inputs();
virtual void close_midi_inputs();
Expand Down
6 changes: 6 additions & 0 deletions doc/classes/OS.xml
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,12 @@
Returns the amount of static memory being used by the program in bytes. Only works in debug builds.
</description>
</method>
<method name="get_system_ca_certificates">
<return type="String" />
<description>
Returns the list of certification authorities trusted by the operating system as a string of concatenated certificates in PEM format.
</description>
</method>
<method name="get_system_dir" qualifiers="const">
<return type="String" />
<param index="0" name="dir" type="int" enum="OS.SystemDir" />
Expand Down

0 comments on commit 8cbe4fb

Please sign in to comment.