Searched refs:ciphertext_blob (Results 1 – 1 of 1) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/kms/ |
D | layer1.py | 257 def decrypt(self, ciphertext_blob, encryption_context=None, argument 277 if not isinstance(ciphertext_blob, six.binary_type): 281 ciphertext_blob = base64.b64encode(ciphertext_blob) 282 params = {'CiphertextBlob': ciphertext_blob, } 701 def re_encrypt(self, ciphertext_blob, destination_key_id, argument 731 if not isinstance(ciphertext_blob, six.binary_type): 735 ciphertext_blob = base64.b64encode(ciphertext_blob) 737 'CiphertextBlob': ciphertext_blob,
|