Chromium Code Reviews| Index: crypto/encryptor_nss.cc |
| diff --git a/crypto/encryptor_nss.cc b/crypto/encryptor_nss.cc |
| index aaa66268341623e15c87ff7e9d63e1ebe4c0e7df..750ae5ca1f2fd92b754144fb24289da9dc67e3c7 100644 |
| --- a/crypto/encryptor_nss.cc |
| +++ b/crypto/encryptor_nss.cc |
| @@ -13,6 +13,24 @@ |
| namespace crypto { |
| +namespace { |
| + |
| +inline CK_MECHANISM_TYPE GetMechanism(Encryptor::Mode mode) { |
| + switch (mode) { |
| + case Encryptor::CBC: |
| + return CKM_AES_CBC_PAD; |
| + case Encryptor::CTR: |
| + // AES-CTR encryption uses ECB encryptor as a building block. |
|
wtc
2011/06/21 00:33:32
Please explain this is necessary because NSS doesn
Alpha Left Google
2011/06/22 21:25:17
Done.
|
| + return CKM_AES_ECB; |
| + default: |
| + NOTREACHED() << "Unsupported mode of operation"; |
| + break; |
| + } |
| + return 0; |
| +} |
| + |
| +} // namespace |
| + |
| Encryptor::Encryptor() |
| : key_(NULL), |
| mode_(CBC) { |
| @@ -24,101 +42,144 @@ Encryptor::~Encryptor() { |
| bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) { |
| DCHECK(key); |
| - DCHECK_EQ(CBC, mode); |
| + DCHECK(CBC == mode || CTR == mode) << "Unsupported mode of operation"; |
| key_ = key; |
| mode_ = mode; |
| - if (iv.size() != AES_BLOCK_SIZE) |
| + if (mode == CBC && iv.size() != AES_BLOCK_SIZE) |
| return false; |
| - slot_.reset(PK11_GetBestSlot(CKM_AES_CBC_PAD, NULL)); |
| + slot_.reset(PK11_GetBestSlot(GetMechanism(mode), NULL)); |
| if (!slot_.get()) |
| return false; |
| - SECItem iv_item; |
| - iv_item.type = siBuffer; |
| - iv_item.data = reinterpret_cast<unsigned char*>( |
| - const_cast<char *>(iv.data())); |
| - iv_item.len = iv.size(); |
| + if (mode == CBC) { |
| + SECItem iv_item; |
| + iv_item.type = siBuffer; |
| + iv_item.data = reinterpret_cast<unsigned char*>( |
| + const_cast<char *>(iv.data())); |
| + iv_item.len = iv.size(); |
| + |
| + param_.reset(PK11_ParamFromIV(GetMechanism(mode), &iv_item)); |
| + } else { |
| + param_.reset(PK11_ParamFromIV(GetMechanism(mode), NULL)); |
| + } |
|
wtc
2011/06/21 00:33:32
I would probably use a "switch" statement here so
Alpha Left Google
2011/06/22 21:25:17
Done.
|
| - param_.reset(PK11_ParamFromIV(CKM_AES_CBC_PAD, &iv_item)); |
| if (!param_.get()) |
| return false; |
| - |
| return true; |
| } |
| bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) { |
| - ScopedPK11Context context(PK11_CreateContextBySymKey(CKM_AES_CBC_PAD, |
| + ScopedPK11Context context(PK11_CreateContextBySymKey(GetMechanism(mode_), |
| CKA_ENCRYPT, |
| key_->key(), |
| param_.get())); |
| if (!context.get()) |
| return false; |
| - size_t ciphertext_len = plaintext.size() + AES_BLOCK_SIZE; |
| - std::vector<unsigned char> buffer(ciphertext_len); |
| + return mode_ == CTR ? CryptCTR(context.get(), plaintext, ciphertext) : |
| + Crypt(context.get(), plaintext, ciphertext); |
|
wtc
2011/06/21 00:33:32
Nit: please use an "if" or "switch" statement here
Alpha Left Google
2011/06/22 21:25:17
Done.
|
| +} |
| + |
| +bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { |
| + if (ciphertext.empty()) |
| + return false; |
| + |
| + ScopedPK11Context context(PK11_CreateContextBySymKey( |
| + GetMechanism(mode_), (mode_ == CTR ? CKA_ENCRYPT : CKA_DECRYPT), |
| + key_->key(), param_.get())); |
| + if (!context.get()) |
| + return false; |
| + |
| + return mode_ == CTR ? CryptCTR(context.get(), ciphertext, plaintext) : |
| + Crypt(context.get(), ciphertext, plaintext); |
| +} |
| + |
| +bool Encryptor::Crypt(PK11Context* context, const std::string& input, |
| + std::string* output) { |
| + size_t output_len = input.size() + AES_BLOCK_SIZE; |
| + CHECK(output_len > input.size()) << "Output size overflow"; |
| + |
| + output->resize(output_len); |
| + uint8* output_data = |
| + reinterpret_cast<uint8*>(const_cast<char*>(output->data())); |
| + |
| + int input_len = input.size(); |
| + uint8* input_data = |
| + reinterpret_cast<uint8*>(const_cast<char*>(input.data())); |
| int op_len; |
| - SECStatus rv = PK11_CipherOp(context.get(), |
| - &buffer[0], |
| + SECStatus rv = PK11_CipherOp(context, |
| + output_data, |
| &op_len, |
| - ciphertext_len, |
| - reinterpret_cast<unsigned char*>( |
| - const_cast<char*>(plaintext.data())), |
| - plaintext.size()); |
| + output_len, |
| + input_data, |
| + input_len); |
| + |
| if (SECSuccess != rv) |
| return false; |
| unsigned int digest_len; |
| - rv = PK11_DigestFinal(context.get(), |
| - &buffer[op_len], |
| + rv = PK11_DigestFinal(context, |
| + output_data + op_len, |
| &digest_len, |
| - ciphertext_len - op_len); |
| + output_len - op_len); |
| if (SECSuccess != rv) |
| return false; |
| - ciphertext->assign(reinterpret_cast<char *>(&buffer[0]), |
| - op_len + digest_len); |
| + output->resize(op_len + digest_len); |
| return true; |
| } |
| -bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { |
| - if (ciphertext.empty()) |
| +bool Encryptor::CryptCTR(PK11Context* context, const std::string& input, |
| + std::string* output) { |
| + if (!counter_.get()) { |
| + LOG(ERROR) << "Counter value not set in CTR mode."; |
| return false; |
| + } |
| - ScopedPK11Context context(PK11_CreateContextBySymKey(CKM_AES_CBC_PAD, |
| - CKA_DECRYPT, |
| - key_->key(), |
| - param_.get())); |
| - if (!context.get()) |
| - return false; |
| + size_t output_len = input.size() + AES_BLOCK_SIZE; |
|
Ryan Sleevi
2011/06/20 23:47:23
nit: Is it necessary to pad |output_len| ? The und
Alpha Left Google
2011/06/20 23:59:44
This is just for convenience, it's easier to check
|
| + CHECK(output_len > input.size()) << "Output size overflow"; |
| + |
| + output->resize(output_len); |
| + uint8* output_data = |
| + reinterpret_cast<uint8*>(const_cast<char*>(output->data())); |
| + |
| + size_t input_len = input.size(); |
| + uint8* input_data = |
| + reinterpret_cast<uint8*>(const_cast<char*>(input.data())); |
| - size_t plaintext_len = ciphertext.size(); |
| - std::vector<unsigned char> buffer(plaintext_len); |
| + scoped_array<uint8> ctr_mask; |
| + GenerateCounterMask(input_len, &ctr_mask, &input_len); |
|
wtc
2011/06/21 00:33:32
Since PK11_CipherOp can encrypt in place, you shou
|
| + CHECK(input_len <= output_len); |
| + input_data = ctr_mask.get(); |
| int op_len; |
| - SECStatus rv = PK11_CipherOp(context.get(), |
| - &buffer[0], |
| + SECStatus rv = PK11_CipherOp(context, |
| + output_data, |
| &op_len, |
| - plaintext_len, |
| - reinterpret_cast<unsigned char*>( |
| - const_cast<char*>(ciphertext.data())), |
| - ciphertext.size()); |
| + output_len, |
| + input_data, |
| + input_len); |
|
Ryan Sleevi
2011/06/20 23:47:23
BUG: There is no guarantee that |op_len| will == |
Alpha Left Google
2011/06/20 23:59:44
Since this is using ECB and input_len is a multipl
|
| if (SECSuccess != rv) |
| return false; |
| unsigned int digest_len; |
| - rv = PK11_DigestFinal(context.get(), |
| - &buffer[op_len], |
| + rv = PK11_DigestFinal(context, |
| + NULL, |
| &digest_len, |
| - plaintext_len - op_len); |
| + 0); |
| if (SECSuccess != rv) |
| return false; |
| + CHECK(!digest_len); |
| - plaintext->assign(reinterpret_cast<char *>(&buffer[0]), |
| - op_len + digest_len); |
| + // Use |output_data| to mask |input|. |
| + MaskMessage( |
| + reinterpret_cast<uint8*>(const_cast<char*>(input.data())), |
| + input.length(), output_data, output_data); |
| + output->resize(input.length()); |
| return true; |
| } |