Index: base/crypto/rsa_private_key.cc |
diff --git a/base/crypto/rsa_private_key.cc b/base/crypto/rsa_private_key.cc |
index 0c83b37af453c58de5bc7d6580aa2321e03dcbf8..e6faa3e24e0fb7234abc80978075c9c12200df92 100644 |
--- a/base/crypto/rsa_private_key.cc |
+++ b/base/crypto/rsa_private_key.cc |
@@ -53,7 +53,7 @@ |
int start, |
int num_bytes, |
std::list<uint8>* data) { |
- while (num_bytes > 0) { |
+ while(num_bytes > 0) { |
--num_bytes; |
data->push_front(val[start + num_bytes]); |
} |
@@ -288,7 +288,7 @@ |
reverse(tmp.begin(), tmp.end()); |
val = &tmp.front(); |
} |
- |
+ |
// ASN.1 integers are unpadded byte arrays, so skip any null padding bytes |
// from the most-significant end of the integer. |
int start = 0; |
@@ -360,7 +360,7 @@ |
READ_ASSERT(out->size() <= expected_size); |
} |
- while (pad) { |
+ while(pad) { |
out->push_back(0x00); |
pad--; |
} |