diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-13 08:34:31 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-13 08:34:31 -0600 |
commit | 1627912d11d24d631c7be08818015221d186e189 (patch) | |
tree | ce316cf203f8b5946534d190fb6b79aea9169f41 /doc/classes | |
parent | ddb2073c5cc263840a5dcd1dc0fefc7b489b19e7 (diff) | |
parent | 45593d45b3873810792170906ba4d1b299d08bea (diff) | |
download | redot-engine-1627912d11d24d631c7be08818015221d186e189.tar.gz |
Merge pull request #98918 from bruvzg/pck_enc_iv
Allow setting custom initialization vector for FileAccessEncrypted. Add export setting to set static seed for PCK encryption initialization vectors.
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/FileAccess.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/FileAccess.xml b/doc/classes/FileAccess.xml index b782937a8a..5c89b64429 100644 --- a/doc/classes/FileAccess.xml +++ b/doc/classes/FileAccess.xml @@ -308,6 +308,7 @@ <param index="0" name="path" type="String" /> <param index="1" name="mode_flags" type="int" enum="FileAccess.ModeFlags" /> <param index="2" name="key" type="PackedByteArray" /> + <param index="3" name="iv" type="PackedByteArray" default="PackedByteArray()" /> <description> Creates a new [FileAccess] object and opens an encrypted file in write or read mode. You need to pass a binary key to encrypt/decrypt it. [b]Note:[/b] The provided key must be 32 bytes long. |