Tony Arcieri

Results 268 issues of Tony Arcieri

domain_name transitively pulls in unf which in turn pulls in unf_ext. We've gotten some complaints about this in http.rb: https://www.reddit.com/r/ruby/comments/4gdv0u/http_the_gem_200_a_fast_elegant_http_client_for/d2gqad6 Is it really necessary, and is the transitive dependency on...

Of interest to this WG are some developments on [rust-random](https://github.com/rust-random), namely the new [getrandom](https://github.com/rust-random/getrandom) crate and plans to integrate it into `std`: https://github.com/rust-random/getrandom/issues/21 There's an open issue about `no_std` support...

Well, I hope this wasn't overly ambitious/audacious to do without really talking to anyone about it, but I made an `accelerometer` crate: - **repo:** https://github.com/NeoBirth/accelerometer.rs - **crate:** https://crates.io/crates/accelerometer - **docs:**...

It'd be good to support some kind of pluggable authentication. I'd ideally like to reuse the authentication from the app we're mounting Resque Web inside of. Perhaps we can provide...

When I started this project I foolishly called it "resque-web" which is the same as the Sinatra app presently embedded in the resque gem. This has caused some confusion. See...

When I originally wrote this crate, I made the various integer variants of `TagData` such as `Char`, `Int8`, `Int16`, `Int32` and `Int64`: https://github.com/iqlusioninc/crates/commit/ab67e78b88a6c20dc94cd9bdcb90c82d933be125#diff-8ff5175d7b1e8898d4ac2d21a9785704a370bdca9afb23e29bd2a5e7d1f805e5 At some point, I believe based on...

The test vectors presently use the following ciphersuite strings: * **XSTREAM_X25519_HKDF_SHA256_AES128_SIV** * Key Agreement: X25519 * KDF: HMAC-SHA-256 * Symmetric Cipher: AES-128-SIV * **XSTREAM_X25519_HKDF_SHA256_AES128_PMAC_SIV** * Key Agreement: X25519 * KDF:...

question
golang
js
python
ruby
rust

The key derivation used by XSTREAM is inspired by the NaCl `crypto_box()` function, which does the following (for "curve25519xsalsa20poly1305"): * `sk`: private scalar * `pk`: X25519 public key (i.e. Montgomery-u...

help wanted
question
security

**XSTREAM** constructions providing security levels higher than 128-bit are not presently specified. It would be possible using the X448 elliptic curve (i.e. the Montgomery form of [Ed448-Goldilocks](https://eprint.iacr.org/2015/625.pdf)) for key agreement...

enhancement
security

Repro: ```rust extern crate enumflags; #[macro_use] extern crate enumflags_derive; #[derive(EnumFlags, Copy, Clone, Debug)] #[repr(u64)] enum Bork { X = 0x40_0000_0000 } ``` Error: ``` error: proc-macro derive panicked --> src/lib.rs:5:10...