Sebastian Messmer
Sebastian Messmer
Can you run cryfs in debug mode (`cryfs -o -d -f [basedir] [mountdir]`) and see if it reports any errors? The errors you've posted are from rsync's error logs, not...
Quantum-Safe encryption is an interesting topic. Symmetric crypto as used by CryFS is still relatively safe and not as easily broken as the public key crypto most people talk about...
CryFS currently uses scrypt not argon2, but they're conceptually similar. Both are memory hard hash functions based on ideas from symmetric crypto. I would be open to adding argon2, but...
What kind of security certificate do you mean? On October 7, 2022 10:57:35 PM GongHeng2017 ***@***.***> wrote: > > @smessmer > — > Reply to this email directly, view it...
Is this a big endian architecture?
hm I looked through that code path and didn't find any obvious endianness errors, unless it's a bug in the crypto++ library we use. Where does debian run those tests?...
I'm not sure what "error 9" means. Can you post what cryfs is exactly showing when you try to mount it? Maybe you've entered the wrong password?
Thanks for your fast reply. Do you know what it actually is that is taking so much time here? Is it expansion of the `#[rstest]` macros? Expansion of the `#[tokio::test]`...
I investigated a bit more. Looks like it's mostly because `rstest` duplicates the boilerplate of `#[tokio::test]` and the number of lines becomes just so large that both macro expansion and...