HomeSort by relevance Sort by last modified time
    Searched refs:encryption_context (Results 1 - 2 of 2) sorted by null

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/kms/
layer1.py 257 def decrypt(self, ciphertext_blob, encryption_context=None,
266 :type encryption_context: map
267 :param encryption_context: The encryption context. If this was
283 if encryption_context is not None:
284 params['EncryptionContext'] = encryption_context
378 def encrypt(self, key_id, plaintext, encryption_context=None,
391 :type encryption_context: map
392 :param encryption_context: Name:value pair that specifies the
407 if encryption_context is not None:
408 params['EncryptionContext'] = encryption_context
    [all...]
  /system/tpm/attestation/common/
crypto_utility_impl.cc 334 EVP_CIPHER_CTX encryption_context; local
335 EVP_CIPHER_CTX_init(&encryption_context);
336 if (!EVP_EncryptInit_ex(&encryption_context, cipher, nullptr, key_buffer,
341 if (!EVP_EncryptUpdate(&encryption_context, output_buffer, &output_size,
344 EVP_CIPHER_CTX_cleanup(&encryption_context);
350 if (!EVP_EncryptFinal_ex(&encryption_context, output_buffer, &output_size)) {
352 EVP_CIPHER_CTX_cleanup(&encryption_context);
357 EVP_CIPHER_CTX_cleanup(&encryption_context);

Completed in 67 milliseconds