summaryrefslogtreecommitdiff
path: root/notes.txt
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2025-01-21 17:01:03 -0600
committer@syxhe <https://t.me/syxhe>2025-01-21 17:01:03 -0600
commit5d3068832c6094cf3b3ffce89d2398134e939b1f (patch)
treef23dc5597a1bfe76b2748f6762d09ff97f05141f /notes.txt
parentb15ffbc1e51f913d6ab1cfa345a06eecfc098405 (diff)
Write some sample code to encrypt a file via password
Diffstat (limited to 'notes.txt')
-rw-r--r--notes.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/notes.txt b/notes.txt
index 0227e6a..fad5a7c 100644
--- a/notes.txt
+++ b/notes.txt
@@ -38,6 +38,8 @@ libevent might be useful to slam everything together for async IO that I don't n
38be a lot of work that I might not need to do. I'm going to do threadpooling first and then make a branch that uses libevent to see 38be a lot of work that I might not need to do. I'm going to do threadpooling first and then make a branch that uses libevent to see
39if there's any appreciable improvement in performance 39if there's any appreciable improvement in performance
40 40
41Look into mmap()
42
41============== LIST OF POTENTIALLY USEFUL GNU C FUNCTIONS ============== 43============== LIST OF POTENTIALLY USEFUL GNU C FUNCTIONS ==============
42 scandir() - Gets a list of files in a directory: https://www.gnu.org/software/libc/manual/html_node/Scanning-Directory-Content.html 44 scandir() - Gets a list of files in a directory: https://www.gnu.org/software/libc/manual/html_node/Scanning-Directory-Content.html
43 link() - Hardlinks one file to another location: https://www.gnu.org/software/libc/manual/html_node/Hard-Links.html 45 link() - Hardlinks one file to another location: https://www.gnu.org/software/libc/manual/html_node/Hard-Links.html