blob: 4006557021c7b32115f558fb2543ec03c9d970da [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.
"""A client for AWS KMS."""
from __future__ import absolute_import
from __future__ import division
# Placeholder for import for type annotations
from __future__ import print_function
import re
from typing import Text
from tink import aead
from tink import core
from tink.cc.pybind import tink_bindings
class AwsKmsClient(object):
"""Basic AWS client for AEAD."""
def __init__(self, key_uri: Text, credentials_path: Text):
"""Creates a new AwsKmsClient that is bound to the key specified in 'key_uri'.
Uses the specifed credentials when communicating with the KMS. Either of
arguments can be empty.
If 'key_uri' is empty, then the client is not bound to any particular key.
If 'credential_path' is empty, then default credentials will be used.
For more information on credentials and in which order they are loaded see
https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html.
Args:
key_uri: Text, URI of the key the client should be bound to.
credentials_path: Text, Path to the file with the access credentials.
Raises:
ValueError: If the path or filename of the credentials is invalid.
TinkError: If the key uri is not valid.
"""
match = re.match('aws-kms://arn:aws:kms:([a-z0-9-]+):', key_uri)
if not key_uri:
self._key_uri = ''
elif match:
self._key_uri = key_uri
else:
raise core.TinkError
self.cc_client = tink_bindings.AwsKmsClient(key_uri, credentials_path)
def does_support(self, key_uri: Text) -> bool:
"""Returns true iff this client supports KMS key specified in 'key_uri'.
Args:
key_uri: Text, URI of the key to be checked.
Returns: A boolean value which is true if the key is supported and false
otherwise.
"""
return self.cc_client.does_support(key_uri)
@core.use_tink_errors
def get_aead(self, key_uri: Text) -> aead.Aead:
"""Returns an Aead-primitive backed by KMS key specified by 'key_uri'.
Args:
key_uri: Text, URI of the key which should be used.
Returns:
An AEAD primitive which uses the specified key.
Raises:
TinkError: If the key_uri is not supported.
"""
return aead.AeadCcToPyWrapper(self.cc_client.get_aead(key_uri))
@classmethod
def register_client(cls, key_uri, credentials_path) -> None:
"""Registers the KMS client internally."""
tink_bindings.AwsKmsClient.register_client(key_uri, credentials_path)