Fix invalid C# in crypto docs

This commit is contained in:
Raul Santos 2022-09-15 11:04:32 +02:00
parent 20d6672846
commit d762500164
No known key found for this signature in database
GPG key ID: B532473AE3A803E4
2 changed files with 10 additions and 9 deletions

View file

@ -45,6 +45,7 @@
public class Example : Node
{
public AESContext Aes = new AESContext();
public override void _Ready()
{
string key = "My secret key!!!"; // Key must be either 16 or 32 bytes.

View file

@ -32,22 +32,22 @@
public class CryptoNode : Node
{
private HMACContext ctx = new HMACContext();
public override void _Ready()
{
PackedByteArray key = String("supersecret").to_utf8();
Error err = ctx.Start(HashingContext.HASH_SHA256, key);
GD.Assert(err == OK);
PackedByteArray msg1 = String("this is ").to_utf8();
PackedByteArray msg2 = String("super duper secret").to_utf8();
byte[] key = "supersecret".ToUTF8();
Error err = ctx.Start(HashingContext.HashType.Sha256, key);
Debug.Assert(err == Error.Ok);
byte[] msg1 = "this is ".ToUTF8();
byte[] msg2 = "super duper secret".ToUTF8();
err = ctx.Update(msg1);
GD.Assert(err == OK);
Debug.Assert(err == Error.Ok);
err = ctx.Update(msg2);
GD.Assert(err == OK);
PackedByteArray hmac = ctx.Finish();
Debug.Assert(err == Error.Ok);
byte[] hmac = ctx.Finish();
GD.Print(hmac.HexEncode());
}
}
[/csharp]
[/codeblocks]
</description>