Joe Richey
Joe Richey
Is [this](http://www.linuxhowtos.org/System/creatingman.htm) a good place to get started on writing a man page? Also, the ecryptfs man pages are spread throughout many sections. The root page is in [section 7](https://linux.die.net/man/7/ecryptfs)...
Below is the basic plan for man page entries. After they are completed, a good amount of the documentation in `README.md` will be deleted and replaced with the appropriate man...
@fancytenseletters Fixed, Thanks!
https://github.com/google/fscrypt/issues/350#issuecomment-1093145691 brings up another reason why we might want to avoid using PAM modules written in Go. Having `fscrypt` run in a systemd service might help resolve some of these...
I ended up needing something like this for c-string parsing. I have a sequence of bytes and want to return the prefix containing the c-string data (not including the null...
So notes on why we might want this (both in `once_cell` and eventually merged into `libstd`/`libcore`): - `ring` needs a `no_std` compatible replacement for `spin-rs` (which is unmaintained), https://github.com/briansmith/ring/issues/921 -...
`wasi 0.10.3` has been yanked, so running `cargo update` (or the equivalent) should fix your issue.
This issue can be closed. Per @tstruk's comment https://github.com/tpm2-software/tpm2-tss/issues/2020#issuecomment-795765251, this warning is unavoidable with automake if tpm2-tools wants to maintain backwards compatibility. Unfortunately, it seems like autotools is just unergonomic...
We could manually patch the simulator code, the problem is that the TCG spec explicitly uses this function: - https://trustedcomputinggroup.org/resource/tpm-library-specification/ - Specifically Line `442`, Section `B.2.3.2.3.17.` of [Version 1.59, Part...
I was able to reproduce this issue specifically on Debian 10, maybe it's a kernel bug? I confirmed that tpm2-tools also encountered issues replaying PCRs 4 and 5. I also...