summaryrefslogtreecommitdiffstats
path: root/third_party/rust/authenticator/src/crypto/dummy.rs
blob: 9d16856958f9c1255681509e740b27951dcf9941 (plain)
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
use super::CryptoError;

/*
This is a dummy implementation for CI, to avoid having to install NSS or openSSL in the CI-pipeline
*/

pub type Result<T> = std::result::Result<T, CryptoError>;

pub fn ecdhe_p256_raw(_peer_spki: &[u8]) -> Result<(Vec<u8>, Vec<u8>)> {
    unimplemented!()
}

pub fn encrypt_aes_256_cbc_no_pad(
    _key: &[u8],
    _iv: Option<&[u8]>,
    _data: &[u8],
) -> Result<Vec<u8>> {
    unimplemented!()
}

pub fn decrypt_aes_256_cbc_no_pad(
    _key: &[u8],
    _iv: Option<&[u8]>,
    _data: &[u8],
) -> Result<Vec<u8>> {
    unimplemented!()
}

pub fn hmac_sha256(_key: &[u8], _data: &[u8]) -> Result<Vec<u8>> {
    unimplemented!()
}

pub fn sha256(_data: &[u8]) -> Result<Vec<u8>> {
    unimplemented!()
}

pub fn random_bytes(_count: usize) -> Result<Vec<u8>> {
    unimplemented!()
}

pub fn gen_p256() -> Result<(Vec<u8>, Vec<u8>)> {
    unimplemented!()
}

pub fn ecdsa_p256_sha256_sign_raw(_private: &[u8], _data: &[u8]) -> Result<Vec<u8>> {
    unimplemented!()
}

#[allow(dead_code)]
#[cfg(test)]
pub fn test_ecdsa_p256_sha256_verify_raw(
    _public: &[u8],
    _signature: &[u8],
    _data: &[u8],
) -> Result<()> {
    unimplemented!()
}