2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-06-20 10:06:49 +02:00
|
|
|
// 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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-06-20 10:06:49 +02:00
|
|
|
// 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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2021-03-12 10:12:42 +01:00
|
|
|
use parity_crypto::{
|
|
|
|
publickey::{KeyPair, Secret},
|
|
|
|
Keccak256,
|
|
|
|
};
|
2017-12-01 09:40:07 +01:00
|
|
|
use parity_wordlist;
|
2016-06-20 00:10:34 +02:00
|
|
|
|
|
|
|
/// Simple brainwallet.
|
|
|
|
pub struct Brain(String);
|
|
|
|
|
|
|
|
impl Brain {
|
|
|
|
pub fn new(s: String) -> Self {
|
|
|
|
Brain(s)
|
|
|
|
}
|
2017-12-01 09:40:07 +01:00
|
|
|
|
|
|
|
pub fn validate_phrase(phrase: &str, expected_words: usize) -> Result<(), ::WordlistError> {
|
|
|
|
parity_wordlist::validate_phrase(phrase, expected_words)
|
|
|
|
}
|
2017-07-14 20:40:28 +02:00
|
|
|
|
2021-03-12 10:12:42 +01:00
|
|
|
pub fn generate(&mut self) -> KeyPair {
|
2017-12-01 09:40:07 +01:00
|
|
|
let seed = self.0.clone();
|
2017-03-29 17:07:58 +02:00
|
|
|
let mut secret = seed.into_bytes().keccak256();
|
2016-06-20 00:10:34 +02:00
|
|
|
|
|
|
|
let mut i = 0;
|
|
|
|
loop {
|
|
|
|
secret = secret.keccak256();
|
2017-01-11 12:16:47 +01:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
match i > 16384 {
|
|
|
|
false => i += 1,
|
|
|
|
true => {
|
2021-03-12 10:12:42 +01:00
|
|
|
if let Ok(pair) = Secret::import_key(&secret).and_then(KeyPair::from_secret) {
|
2017-12-01 09:40:07 +01:00
|
|
|
if pair.address()[0] == 0 {
|
|
|
|
trace!("Testing: {}, got: {:?}", self.0, pair.address());
|
2021-03-12 10:12:42 +01:00
|
|
|
return pair;
|
2017-12-01 09:40:07 +01:00
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use Brain;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_brain() {
|
|
|
|
let words = "this is sparta!".to_owned();
|
2021-03-12 10:12:42 +01:00
|
|
|
let first_keypair = Brain::new(words.clone()).generate();
|
|
|
|
let second_keypair = Brain::new(words.clone()).generate();
|
2016-06-20 00:10:34 +02:00
|
|
|
assert_eq!(first_keypair.secret(), second_keypair.secret());
|
|
|
|
}
|
|
|
|
}
|