aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorame <[email protected]>2024-04-15 11:52:28 -0500
committerame <[email protected]>2024-04-15 11:52:28 -0500
commit14e3ec0e4cf84b5e5fcc19b2e3c1a6bb0ca8787d (patch)
tree0b7d95ec3294e4eec51a341a19a9207a07d521ff /docs
parent4e5f5216d1af6ba4cf32103d04dc1a0b543af07b (diff)
docs
Diffstat (limited to 'docs')
-rw-r--r--docs/crypto.md5
-rw-r--r--docs/net.md9
2 files changed, 9 insertions, 5 deletions
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