1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
use crate::{error, utils, with_crypto_scheme, CryptoSchemeFlag, KeystoreParams};
use sp_core::crypto::SecretString;
use structopt::StructOpt;
#[derive(Debug, StructOpt, Clone)]
#[structopt(name = "sign", about = "Sign a message, with a given (secret) key")]
pub struct SignCmd {
#[structopt(long)]
suri: Option<String>,
#[structopt(long)]
message: Option<String>,
#[structopt(long)]
hex: bool,
#[allow(missing_docs)]
#[structopt(flatten)]
pub keystore_params: KeystoreParams,
#[allow(missing_docs)]
#[structopt(flatten)]
pub crypto_scheme: CryptoSchemeFlag,
}
impl SignCmd {
pub fn run(&self) -> error::Result<()> {
let message = utils::read_message(self.message.as_ref(), self.hex)?;
let suri = utils::read_uri(self.suri.as_ref())?;
let password = self.keystore_params.read_password()?;
let signature =
with_crypto_scheme!(self.crypto_scheme.scheme, sign(&suri, password, message))?;
println!("{}", signature);
Ok(())
}
}
fn sign<P: sp_core::Pair>(
suri: &str,
password: Option<SecretString>,
message: Vec<u8>,
) -> error::Result<String> {
let pair = utils::pair_from_suri::<P>(suri, password)?;
Ok(format!("{}", hex::encode(pair.sign(&message))))
}
#[cfg(test)]
mod test {
use super::SignCmd;
use structopt::StructOpt;
#[test]
fn sign() {
let seed = "0xad1fb77243b536b90cfe5f0d351ab1b1ac40e3890b41dc64f766ee56340cfca5";
let sign = SignCmd::from_iter(&[
"sign",
"--suri",
seed,
"--message",
&seed[2..],
"--password",
"12345",
]);
assert!(sign.run().is_ok());
}
}