Chromium Code Reviews| Index: crypto/ec_private_key_nss.cc |
| diff --git a/crypto/ec_private_key_nss.cc b/crypto/ec_private_key_nss.cc |
| index 1fb13e7e9ca91d8673ac397b00bd24dffd3e91b2..fa76e4932abb3f9af551119c99b3fe29d7cd5985 100644 |
| --- a/crypto/ec_private_key_nss.cc |
| +++ b/crypto/ec_private_key_nss.cc |
| @@ -128,7 +128,7 @@ bool ECPrivateKey::ImportFromEncryptedPrivateKeyInfo( |
| SECItem encoded_epki = { |
| siBuffer, |
| const_cast<unsigned char*>(encrypted_private_key_info), |
| - encrypted_private_key_info_len |
| + static_cast<unsigned int>(encrypted_private_key_info_len) |
|
brettw
2012/05/29 19:30:46
unsigned int -> unsigned (same elsewhere)
Han
2012/05/29 20:57:04
Done.
|
| }; |
| SECKEYEncryptedPrivateKeyInfo epki; |
| memset(&epki, 0, sizeof(epki)); |
| @@ -150,7 +150,7 @@ bool ECPrivateKey::ImportFromEncryptedPrivateKeyInfo( |
| SECItem password_item = { |
| siBuffer, |
| reinterpret_cast<unsigned char*>(const_cast<char*>(password.data())), |
| - password.size() |
| + static_cast<unsigned int>(password.size()) |
| }; |
| rv = ImportEncryptedECPrivateKeyInfoAndReturnKey( |
| @@ -185,7 +185,7 @@ bool ECPrivateKey::ExportEncryptedPrivateKey( |
| SECItem password_item = { |
| siBuffer, |
| reinterpret_cast<unsigned char*>(const_cast<char*>(password.data())), |
| - password.size() |
| + static_cast<unsigned int>(password.size()) |
| }; |
| SECKEYEncryptedPrivateKeyInfo* encrypted = PK11_ExportEncryptedPrivKeyInfo( |
| @@ -264,7 +264,8 @@ ECPrivateKey* ECPrivateKey::CreateWithParams(bool permanent, |
| DCHECK_LE(oid_data->oid.len, 127U); |
| std::vector<unsigned char> parameters_buf(2 + oid_data->oid.len); |
| SECKEYECParams ec_parameters = { |
| - siDEROID, ¶meters_buf[0], parameters_buf.size() |
| + siDEROID, ¶meters_buf[0], |
| + static_cast<unsigned int>(parameters_buf.size()) |
| }; |
| ec_parameters.data[0] = SEC_ASN1_OBJECT_ID; |
| @@ -300,7 +301,7 @@ ECPrivateKey* ECPrivateKey::CreateFromEncryptedPrivateKeyInfoWithParams( |
| SECItem encoded_spki = { |
| siBuffer, |
| const_cast<unsigned char*>(&subject_public_key_info[0]), |
| - subject_public_key_info.size() |
| + static_cast<unsigned int>(subject_public_key_info.size()) |
| }; |
| CERTSubjectPublicKeyInfo* decoded_spki = SECKEY_DecodeDERSubjectPublicKeyInfo( |
| &encoded_spki); |