Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
2,999 contributions in the last year
Contribution activity
October 2020
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 4 repositories not shown
- jedisct1/rust-aes-keywrap Rust
- jedisct1/splice Rust
Created a pull request in ziglang/zig that received 6 comments
std/crypto: add a vectorized ChaCha20 implementation
Brings a 30% speed boost on x86_64 even though we still process only one block at a time for now. Only enabled on x86_64 since the non-vectorized i…
- std/crypto: vectorize Gimli
- std.rand: set DefaultCsprng to Gimli, and require a larger seed
- std/crypto/aes: add AES hardware acceleration on aarch64
- std/crypto/25519: faster (mod 2^255-19) square root computation
- std/crypto: Add support for AES-GCM
- std/crypto/hmac: remove HmacBlake2s256 definition
- std/crypto/ghash: add pmull support on aarch64
Created an issue in ziglang/zig that received 2 comments
Unexpected result when assigning a vector to itself
const std = @import("std"); const Vector = std.meta.Vector; pub fn main() anyerror!void { var b = Vector(4, u32){ 1, 2, 3, 4 }; b = Vector(4, u32){ b[