1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fixed typo "blocker" to "block" in AESContext

Changed 'AES cipher blocker chaining' to 'AES cipher block chaining' in two mode definitions in AESContext
This commit is contained in:
Jon
2025-10-01 21:44:01 +02:00
committed by GitHub
parent caefb0f1c1
commit 54094b9073

View File

@@ -118,10 +118,10 @@
AES electronic codebook decryption mode.
</constant>
<constant name="MODE_CBC_ENCRYPT" value="2" enum="Mode">
AES cipher blocker chaining encryption mode.
AES cipher block chaining encryption mode.
</constant>
<constant name="MODE_CBC_DECRYPT" value="3" enum="Mode">
AES cipher blocker chaining decryption mode.
AES cipher block chaining decryption mode.
</constant>
<constant name="MODE_MAX" value="4" enum="Mode">
Maximum value for the mode enum.