Jordan Bancino jordan
jordan commented on pull request Telodendria/Telodendria#55 2024-08-21 18:32:39 +00:00
Fix build issues with #28

(we really need CI back, don't we?)

Yes we do! I promise I'm working on this... my server infrastructure has been undergoing lots of changes to make this easier.

jordan commented on pull request Telodendria/Telodendria#28 2024-08-18 23:31:36 +00:00
User Directory Patch #70

I'm not sure where we left this but I think it looks okay from my quick glance.

jordan pushed to master at Telodendria/Telodendria 2024-08-18 23:31:16 +00:00
ac9372a30a User Directory Patch #70 (#28)
jordan merged pull request Telodendria/Telodendria#28 2024-08-18 23:31:15 +00:00
User Directory Patch #70
jordan commented on pull request Telodendria/Telodendria#54 2024-08-18 23:30:13 +00:00
WIP: Leapfrog to Room Version 1 support

Wow, great work. I understand that the code is still very incomplete and messy, but you've contributed a lot and that's something to be proud of. Just let me know when you're happy with this and…

jordan commented on pull request Telodendria/Cytoplasm#43 2024-08-18 23:27:36 +00:00
Getting optional LMDB support into Cytoplasm

Can you give some sort of rationale statement for this? I'm not opposed to it, and if you say it works I can go ahead and merge it, but a little comment here as to why this is necessary might be…

jordan pushed to master at Telodendria/Cytoplasm 2024-08-18 23:26:21 +00:00
39c25e5a17 Merge pull request 'Copy filename into preallocated field with Cytoplasm's Memory API' (#33) from lda/Cytoplasm:direct-filenames into master
138ea1c8e9 [FIX] Oops.
cdf4430a9e [FIX] Fix issue with const strings which may be invalidated
Compare 3 commits »
jordan merged pull request Telodendria/Cytoplasm#33 2024-08-18 23:26:20 +00:00
Copy filename into preallocated field with Cytoplasm's Memory API
jordan commented on pull request Telodendria/Cytoplasm#33 2024-08-18 23:26:14 +00:00
Copy filename into preallocated field with Cytoplasm's Memory API

After further consideration, this is probably fine. If people complain that Cytoplasm uses too much memory, we can re-evaluate, but I'm okay with this for now.

jordan commented on pull request Telodendria/Cytoplasm#36 2024-08-18 23:25:17 +00:00
Fast memory allocation

The code looks good, I'll have to find the time to go through it more to see if it's something we want to merge. I'll have to decide if the functionality we're losing can be implemented in any…

jordan commented on pull request Telodendria/Cytoplasm#44 2024-08-18 23:22:00 +00:00
Start optionally using the SHA implementation from the existing crypto API

Faster, yes, probably.

More secure, probably not. It's just an algorithm. Unless I didn't implement it properly, it should be just as secure as the TLS library's. Anyone can audit the code if…

jordan pushed to master at jordan/Dotfiles 2024-08-09 19:20:48 +00:00
443616c3a6 Update .ashrc
jordan pushed to master at jordan/Dotfiles 2024-08-09 19:09:09 +00:00
40de72c20d Update dotfiles.
jordan commented on issue Telodendria/Cytoplasm#42 2024-08-09 13:31:18 +00:00
ShaToHex can treat a 0x00 byte in a hash as a 'end-of-hash'

That's a very good observation. Wouldn't it be easier if we just pass the length (or type as a constant, like SHA_SHA1 or SHA_SHA256 as a parameter to ShaToHex()? Something like this:

`Sha…

jordan commented on pull request Telodendria/Cytoplasm#41 2024-08-09 13:26:59 +00:00
Pre-emptively free out the key

Yeah I'm not sure how I missed that!

jordan pushed to master at Telodendria/Cytoplasm 2024-08-09 13:26:51 +00:00
4903c075e8 Merge pull request 'Pre-emptively free out the key' (#41) from lda/Cytoplasm:hashmap-del-leak into master
da857a3d53 [FIX] Pre-emptively free out the key
Compare 2 commits »
jordan merged pull request Telodendria/Cytoplasm#41 2024-08-09 13:26:50 +00:00
Pre-emptively free out the key
jordan pushed to master at Telodendria/Cytoplasm 2024-07-02 15:56:20 +00:00
c3646294f5 Merge pull request 'Fix HTTP header leakage' (#39) from lda/Cytoplasm:fix-duplicate-leak into master
b284fb607a [FIX] Fix HTTP leakage
Compare 2 commits »
jordan merged pull request Telodendria/Cytoplasm#39 2024-07-02 15:56:18 +00:00
Fix HTTP header leakage
jordan commented on pull request Telodendria/Cytoplasm#39 2024-07-02 15:56:16 +00:00
Fix HTTP header leakage

Good catch.