blob: 04ea6ed100121e967fbd6f7c02d84d3598ab823e [file] [log] [blame]
# 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.tools.testing.cross_language.util.tinkey_cli."""
from absl.testing import absltest
from absl.testing import parameterized
from tools.testing.cross_language.util import cli_aead
from tools.testing.cross_language.util import cli_daead
from tools.testing.cross_language.util import cli_hybrid
from tools.testing.cross_language.util import cli_mac
from tools.testing.cross_language.util import cli_tinkey
class TinkeyCliWrapperTest(parameterized.TestCase):
@parameterized.parameters(*cli_tinkey.AEAD_KEY_TEMPLATES)
def test_generate_encrypt_decrypt(self, key_template):
keyset_handle = cli_tinkey.generate_keyset_handle(key_template)
primitive = cli_aead.CliAead('java', keyset_handle)
plaintext = b'plaintext'
associated_data = b'associated_data'
ciphertext = primitive.encrypt(plaintext, associated_data)
output = primitive.decrypt(ciphertext, associated_data)
self.assertEqual(output, plaintext)
def test_generate_encrypt_decrypt_deterministically(self):
keyset_handle = cli_tinkey.generate_keyset_handle(
cli_tinkey.DAEAD_KEY_TEMPLATE)
p = cli_daead.CliDeterministicAead('java', keyset_handle)
plaintext = b'plaintext'
associated_data = b'associated_data'
ciphertext = p.encrypt_deterministically(plaintext, associated_data)
output = p.decrypt_deterministically(ciphertext, associated_data)
self.assertEqual(output, plaintext)
@parameterized.parameters(*cli_tinkey.MAC_KEY_TEMPLATES)
def test_mac_generate_compute_verify(self, key_template):
keyset_handle = cli_tinkey.generate_keyset_handle(key_template)
p = cli_mac.CliMac('java', keyset_handle)
data = b'data'
mac_value = p.compute_mac(data)
self.assertIsNone(p.verify_mac(mac_value, data))
@parameterized.parameters(*cli_tinkey.HYBRID_KEY_TEMPLATES)
def test_hybrid_generate_encrypt_decrypt(self, key_template):
private_handle = cli_tinkey.generate_keyset_handle(key_template)
public_handle = cli_tinkey.public_keyset_handle(private_handle)
enc = cli_hybrid.CliHybridEncrypt('java', public_handle)
dec = cli_hybrid.CliHybridDecrypt('java', private_handle)
plaintext = b'plaintext'
context_info = b'context_info'
ciphertext = enc.encrypt(plaintext, context_info)
output = dec.decrypt(ciphertext, context_info)
self.assertEqual(output, plaintext)
if __name__ == '__main__':
absltest.main()