summaryrefslogtreecommitdiffstats
path: root/doc/classes/Crypto.xml
Commit message (Collapse)AuthorAgeFilesLines
* [Doc] Update Crypto exampleCarsten2024-05-091-54/+55
| | | | | - Removed redundant new() initializations - removed _ready and node - improved readability
* [Doc] Fix some incorrect uses of `a/an`A Thousand Ships2024-03-131-1/+1
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Overhaul the top sections of the class reference (Core classes)VolTer2023-05-191-3/+3
|
* Change to_utf8 to to_utf8_buffer and to_ascii to to_ascii_buffer in ↵mara2023-04-101-4/+4
| | | | | | | | remaining docs The method `to_utf8` doesn't exist in Godot 4, but is still mentioned in the documentation in some places. Replace it with the new name `to_utf8_buffer`. Same for ascii. Same for C#.
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Fix C# examples in documentationRaul Santos2023-01-311-14/+16
| | | | | | | | | | - Fix documentation after C# renames. - Add missing `partial` in C# class declarations. - Change `delta` parameter type to `double` in C#. - Ensure parameters match base declaration. - Use `$` string interpolation in C#. - Fix invalid or outdated C# code. - Changed some examples to follow our style guide more closely.
* [Net] Rename StreamPeerSSL to StreamPeerTLS.Fabio Alessandrelli2022-09-071-1/+1
| | | | SSL has been deprectated almost 10 years ago.
* [doc] Use "param" instead of "code" to refer to parameters (7)Andy Maloney2022-08-121-7/+7
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-22/+22
|
* HTML5: Enable mbedTLS module for Crypto objectRémi Verschelde2022-05-251-1/+0
| | | | | | | | | | Increases the size of the wasm by around 3% (~300-350 KiB). This enables using the Crypto object for hashing, signing and encryption, and therefore reduces the gap between the features of the HTML5 platform and other platforms. Closes https://github.com/godotengine/godot-proposals/issues/3574.
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* doc: Fix style inconsistencies for `[b]Note:[/b]` paragraphsRémi Verschelde2021-10-051-2/+2
| | | | And fix up formatting not supported by makerst.
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-62/+31
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-1/+1
|
* feat: HMAC support in Crypto APIsJon Bonazza2020-11-261-0/+26
|
* Translate GDScript Code Examples to C# (C)HaSa10022020-09-261-6/+49
| | | | | | | | | | | | | | | Translates Code Examples in classes beginning with `C`. Includes: * Callable * CanvasItem * CharFXTransform * Color * ColorRect * ConfigFile * ConfirmationDialog * Control * Crypto
* Document AES and new Crypto/CryptoKey functions.Fabio Alessandrelli2020-06-181-1/+65
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-2/+2
| | | | Handle removal of Pool*Array types and other recent changes.
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* Update documentation to reflect HTML5 limitations.Fabio Alessandrelli2020-01-141-0/+1
|
* doc: Sync classref with current sourceRémi Verschelde2019-09-271-1/+1
| | | | And various fixes to bindings, hyperlinks and an uninitialized variable.
* doc: Sync classref with current sourceRémi Verschelde2019-09-241-1/+1
|
* Add documentation for crypto-related classes.Fabio Alessandrelli2019-09-241-0/+30
| | | | | | | | Add documentation for Crypto, CryptoKey, HashingContext, and X509Certificate. Add documentation for `StreamPeerSSL.accept_peer`. Ref #29871.
* doc: Sync classref with current sourceRémi Verschelde2019-08-221-0/+43
Fix wrong hyperlinks in Control and Tree.