summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2015-11-23 12:18:11 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-23 20:19:14 +0000
commit259626c7ca1971bca226343df8d88c2b44530158 (patch)
tree1db5105ff09e66497ef918cd024b8a87bab690bf /crypto
parent7367b626db3f63c3a8dd6720ffc7e4eeac180d38 (diff)
downloadchromium_src-259626c7ca1971bca226343df8d88c2b44530158.zip
chromium_src-259626c7ca1971bca226343df8d88c2b44530158.tar.gz
chromium_src-259626c7ca1971bca226343df8d88c2b44530158.tar.bz2
Cleanup: Correctly spell success(ful).
TBR=brettw@chromium.org NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1469783002 Cr-Commit-Position: refs/heads/master@{#361166}
Diffstat (limited to 'crypto')
-rw-r--r--crypto/symmetric_key_win.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/symmetric_key_win.cc b/crypto/symmetric_key_win.cc
index ec9cfa0..e2dc9b4 100644
--- a/crypto/symmetric_key_win.cc
+++ b/crypto/symmetric_key_win.cc
@@ -38,7 +38,7 @@ ALG_ID GetAESAlgIDForKeySize(size_t key_size_in_bits) {
NOTREACHED();
return 0;
}
-};
+}
// Imports a raw/plaintext key of |key_size| stored in |*key_data| into a new
// key created for the specified |provider|. |alg| contains the algorithm of
@@ -83,7 +83,7 @@ bool ImportRawKey(HCRYPTPROV provider,
CryptImportKey(provider, actual_key, actual_size, 0, flags, &unsafe_key);
// Clean up the temporary copy of key, regardless of whether it was imported
- // sucessfully or not.
+ // successfully or not.
SecureZeroMemory(actual_key, actual_size);
if (!ok)