Lines Matching full:ciphertext
475 string ciphertext =
484 return ciphertext;
506 string ciphertext =
515 return ciphertext;
525 string ciphertext =
534 return ciphertext;
545 string Keymaster2Test::DecryptMessage(const string& ciphertext, keymaster_padding_t padding) {
550 return ProcessMessage(KM_PURPOSE_DECRYPT, ciphertext, begin_params, update_params);
553 string Keymaster2Test::DecryptMessage(const string& ciphertext, keymaster_digest_t digest,
560 return ProcessMessage(KM_PURPOSE_DECRYPT, ciphertext, begin_params, update_params);
563 string Keymaster2Test::DecryptMessage(const string& ciphertext, keymaster_block_mode_t block_mode,
570 return ProcessMessage(KM_PURPOSE_DECRYPT, ciphertext, begin_params, update_params);
573 string Keymaster2Test::DecryptMessage(const string& ciphertext, keymaster_digest_t digest,
581 return ProcessMessage(KM_PURPOSE_DECRYPT, ciphertext, begin_params, update_params);
584 string Keymaster2Test::DecryptMessage(const string& ciphertext, keymaster_block_mode_t block_mode,
592 return ProcessMessage(KM_PURPOSE_DECRYPT, ciphertext, begin_params, update_params);
596 const string& ciphertext, keymaster_digest_t digest,
603 return ProcessMessage(KM_PURPOSE_DECRYPT, ciphertext, begin_params, update_params);
651 string ciphertext =
653 EXPECT_EQ(expected_ciphertext, ciphertext);