2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-06-20 10:06:49 +02:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
use rand::os::OsRng;
|
2017-07-14 20:40:28 +02:00
|
|
|
use super::{Generator, KeyPair, SECP256K1};
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2017-07-14 20:40:28 +02:00
|
|
|
/// Randomly generates new keypair, instantiating the RNG each time.
|
2016-06-20 00:10:34 +02:00
|
|
|
pub struct Random;
|
|
|
|
|
|
|
|
impl Generator for Random {
|
2017-07-14 20:40:28 +02:00
|
|
|
type Error = ::std::io::Error;
|
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
fn generate(&mut self) -> Result<KeyPair, Self::Error> {
|
2016-12-27 12:53:56 +01:00
|
|
|
let mut rng = OsRng::new()?;
|
2017-07-14 20:40:28 +02:00
|
|
|
match rng.generate() {
|
|
|
|
Ok(pair) => Ok(pair),
|
|
|
|
Err(void) => match void {}, // LLVM unreachable
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
impl Generator for OsRng {
|
2017-07-14 20:40:28 +02:00
|
|
|
type Error = ::Void;
|
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
fn generate(&mut self) -> Result<KeyPair, Self::Error> {
|
2017-07-14 20:40:28 +02:00
|
|
|
let (sec, publ) = SECP256K1.generate_keypair(self)
|
|
|
|
.expect("context always created with full capabilities; qed");
|
2016-06-20 00:10:34 +02:00
|
|
|
|
|
|
|
Ok(KeyPair::from_keypair(sec, publ))
|
|
|
|
}
|
|
|
|
}
|