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
use crate::{env::internal, Bytes, BytesN, Env};
pub struct Crypto {
env: Env,
}
impl Crypto {
pub(crate) fn new(env: &Env) -> Crypto {
Crypto { env: env.clone() }
}
pub fn env(&self) -> &Env {
&self.env
}
pub fn sha256(&self, data: &Bytes) -> BytesN<32> {
let env = self.env();
let bin_obj = internal::Env::compute_hash_sha256(env, data.into());
unsafe { BytesN::unchecked_new(bin_obj.in_env(env)) }
}
pub fn ed25519_verify(&self, public_key: &BytesN<32>, message: &Bytes, signature: &BytesN<64>) {
let env = self.env();
let _ = internal::Env::verify_sig_ed25519(
env,
message.to_object(),
public_key.to_object(),
signature.to_object(),
);
}
}