blob: a034238dea16d1cc80f82d022a27c5f2a3244d7b [file] [log] [blame]
# Copyright 2019 Google LLC
#
# 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.
"""Tests for tink.python.tink.deterministic_aead_key_templates."""
from absl.testing import absltest
from absl.testing import parameterized
from tink.proto import aes_siv_pb2
from tink.proto import tink_pb2
from tink import daead
class DeterministicAeadKeyTemplatesTest(parameterized.TestCase):
def test_create_aes_siv_key_template(self):
# Intentionally using 'weird' or invalid values for parameters,
# to test that the function correctly puts them in the resulting template.
template = None
with self.assertWarns(DeprecationWarning):
template = (
daead.deterministic_aead_key_templates.create_aes_siv_key_template(
key_size=42))
self.assertEqual('type.googleapis.com/google.crypto.tink.AesSivKey',
template.type_url)
self.assertEqual(tink_pb2.TINK, template.output_prefix_type)
key_format = aes_siv_pb2.AesSivKeyFormat()
key_format.ParseFromString(template.value)
self.assertEqual(42, key_format.key_size)
if __name__ == '__main__':
absltest.main()