From: Matt Corallo Date: Fri, 19 Jul 2019 02:17:36 +0000 (-0400) Subject: Stop using rng in peer_channel_encryptor to generate ephemeral keys X-Git-Tag: v0.0.12~204^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;ds=sidebyside;h=084ef28708765c0b1ecc041e64a125a7090eeed1;hp=084ef28708765c0b1ecc041e64a125a7090eeed1;p=rust-lightning Stop using rng in peer_channel_encryptor to generate ephemeral keys This removes the bulk of our reliance on the rand crate in non-test envs, paving a way towards a syscall-less rust-lightning and WASM. Since this is a breaking change for full_stack_target (and several fuzz targets), go ahead and make other changes to make things more distinct. ---