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
97
98
// Copyright 2020 The Tink-Rust Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////

//! This module contains pre-generated [`KeyTemplate`] instances for MAC.

use tink_proto::{prost::Message, KeyTemplate};

/// Return a [`KeyTemplate`] that generates a HMAC key with the following parameters:
///  - Key size: 32 bytes
///  - Tag size: 16 bytes
///  - Hash function: SHA256
pub fn hmac_sha256_tag128_key_template() -> KeyTemplate {
    create_hmac_key_template(32, 16, tink_proto::HashType::Sha256)
}

/// Return a [`KeyTemplate`] that generates a HMAC key with the following parameters:
///  - Key size: 32 bytes
///  - Tag size: 32 bytes
///  - Hash function: SHA256
pub fn hmac_sha256_tag256_key_template() -> KeyTemplate {
    create_hmac_key_template(32, 32, tink_proto::HashType::Sha256)
}

/// Return a [`KeyTemplate`] that generates a HMAC key with the following parameters:
///  - Key size: 64 bytes
///  - Tag size: 32 bytes
///  - Hash function: SHA512
pub fn hmac_sha512_tag256_key_template() -> KeyTemplate {
    create_hmac_key_template(64, 32, tink_proto::HashType::Sha512)
}

/// Return a [`KeyTemplate`] that generates a HMAC key with the following parameters:
///  - Key size: 64 bytes
///  - Tag size: 64 bytes
///  - Hash function: SHA512
pub fn hmac_sha512_tag512_key_template() -> KeyTemplate {
    create_hmac_key_template(64, 64, tink_proto::HashType::Sha512)
}

/// Return a [`KeyTemplate`] that generates a AES-CMAC key with the following parameters:
///  - Key size: 32 bytes
///  - Tag size: 16 bytes
pub fn aes_cmac_tag128_key_template() -> KeyTemplate {
    create_cmac_key_template(32, 16)
}

/// Create a new [`KeyTemplate`] for HMAC using the given parameters.
fn create_hmac_key_template(
    key_size: u32,
    tag_size: u32,
    hash_type: tink_proto::HashType,
) -> KeyTemplate {
    let params = tink_proto::HmacParams {
        hash: hash_type as i32,
        tag_size,
    };
    let format = tink_proto::HmacKeyFormat {
        version: crate::HMAC_KEY_VERSION,
        params: Some(params),
        key_size,
    };
    let mut serialized_format = Vec::new();
    format.encode(&mut serialized_format).unwrap(); // safe: proto-encode
    KeyTemplate {
        type_url: crate::HMAC_TYPE_URL.to_string(),
        value: serialized_format,
        output_prefix_type: tink_proto::OutputPrefixType::Tink as i32,
    }
}

/// Create a new [`KeyTemplate`] for CMAC using the given parameters.
fn create_cmac_key_template(key_size: u32, tag_size: u32) -> KeyTemplate {
    let params = tink_proto::AesCmacParams { tag_size };
    let format = tink_proto::AesCmacKeyFormat {
        params: Some(params),
        key_size,
    };
    let mut serialized_format = Vec::new();
    format.encode(&mut serialized_format).unwrap(); // safe: proto-encode
    KeyTemplate {
        type_url: crate::CMAC_TYPE_URL.to_string(),
        value: serialized_format,
        output_prefix_type: tink_proto::OutputPrefixType::Tink as i32,
    }
}