Backport HMac crypto to 3.x

Fix headers

Fix docs formatting

Changes for PR

Fix tests
This commit is contained in:
Will Whitty
2021-05-20 02:02:28 +03:00
parent be12a3dd96
commit 3f606263d5
10 changed files with 416 additions and 4 deletions

View File

@@ -36,6 +36,7 @@
#include "test_astar.h"
#include "test_basis.h"
#include "test_crypto.h"
#include "test_gdscript.h"
#include "test_gui.h"
#include "test_math.h"
@@ -109,6 +110,10 @@ MainLoop *test_main(String p_test, const List<String> &p_args) {
return TestShaderLang::test();
}
if (p_test == "crypto") {
return TestCrypto::test();
}
if (p_test == "gd_tokenizer") {
return TestGDScript::test(TestGDScript::TEST_TOKENIZER);
}