From fe418e3baf8ec8f8fc30892b8b4c24af23e5b3de Mon Sep 17 00:00:00 2001 From: ame Date: Mon, 15 Apr 2024 11:52:28 -0500 Subject: docs --- docs/crypto.md | 5 ----- docs/net.md | 9 +++++++++ 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'docs') diff --git a/docs/crypto.md b/docs/crypto.md index f82a006..c988211 100644 --- a/docs/crypto.md +++ b/docs/crypto.md @@ -4,11 +4,6 @@ \* is optional -sadly i didnt think about being able to update hashes, using the common init-update-final. -this is a pretty big problem meaning the input must be given at once, this is better for passwords, -but bad for big files. because of this, i decided not to support inputs over 2^64 characters (which is an -insane amount anyways). i likely will go back and rewrite all of these to fix both of these issues. - |name|out len|other args|extra|incremental| |--|--|--|--|--| | adler32 | 32 | nil | | y | diff --git a/docs/net.md b/docs/net.md index 8becf4c..8c4f53b 100644 --- a/docs/net.md +++ b/docs/net.md @@ -10,6 +10,15 @@ the function will be ran on initilization, the argument has info on the server a ** right now everything within a server:GET function is partially global, it can read global variables (by making a copy), it can not read/copy local variables or modify globals + +also, (for now) all globals must be refrenced as _G, +ie: +function foo() + ... +end + +_G.foo() +_G.llib.crypto.md5("hewwo purr") ** ```lua -- cgit v1.2.3