Codebase list python-castellan / b8bdc30
Merge "Mock key manager takes configuration as an arg" Jenkins authored 8 years ago Gerrit Code Review committed 8 years ago
1 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
5252 This key manager is not suitable for use in production deployments.
5353 """
5454
55 def __init__(self):
55 def __init__(self, configuration=None):
56 self.conf = configuration
5657 self.keys = {}
5758
5859 def _generate_hex_key(self, key_length):