Silke Hofstra

Results 28 issues of Silke Hofstra

I came across these benchmarks, and found the current Go implementation relatively hard to read. This (completely new) implementation aims to be better to read and maintain, with the following...

Add the required types and hooks for confidential comment events, and update the relevant fixtures with the latest GitLab examples. Note that the types can be differentiated using `event_type`, which...

The following should show a blinking *Blink*: ```sh echo -e "Normal \e[5mBlink" ``` However, this is not shown in a recording: ![blink](https://users.slxh.eu/silex/termtosvg_blink.svg) PS: this tool is incredible, thanks for the...

This PR builds on #238 with support for having the root filesystem on a Btrfs subvolume. ~~Note: this is only actually [this commit](https://github.com/clearlinux/clr-boot-manager/commit/e0506fe3f294254d3f017ae4bb56273083712695), as #238 is included. I will rebase...

#174 restored support for partitionless /boot. However, this introduced issues when (for whatever reason) there is content in the /boot directory (instead of being empty) (see #175). As partitionless boot...

As noted in #134, I believe the order is the wrong way round. I have tested this on Solus with Btrfs on LUKS, and Btrfs on LVM on LUKS. I...

This PR adds a new wrapping of `crypto_box` (for libsodium 1.0.15) The `crypto_box` functions are split into: - `crypto/box` - `crypto/box/curve25519xchacha20poly1305` - `crypto/box/curve25519xsalsa20poly1305` All code includes tests with 100% coverage...

This PR adds tests to the `randombytes` package and removes the stutter. For backwards compatibility, aliases for the old functions are provided.

For performing the size checks from libsodium 1.0.14 the `support.CheckSizeMax` function is added. libsodium also added a warning to `crypto_aead_aes256gcm` (below), should we include it as well? ``` /* *...

This PR wraps all the `crypto_stream` functions (for libsodium 1.0.15) in the following packages: - `crypto_stream` - `crypto/stream/chacha20` - `crypto/stream/chacha20ietf` - `crypto/stream/salsa2012` - `crypto/stream/salsa20` - `crypto/stream/xchacha20` - `crypto/stream/xsalsa20` For performing...