Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Unified Diff: crypto/hkdf.h

Issue 1539353003: Switch to standard integer types in crypto/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « crypto/ghash_unittest.cc ('k') | crypto/hkdf.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crypto/hkdf.h
diff --git a/crypto/hkdf.h b/crypto/hkdf.h
index e91bccf5b4f38c1f486c8423b28813d09de8662e..6b7d00dd6e200bd093cb8311d211d8d0f5a05efd 100644
--- a/crypto/hkdf.h
+++ b/crypto/hkdf.h
@@ -5,9 +5,11 @@
#ifndef CRYPTO_HKDF_H_
#define CRYPTO_HKDF_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <vector>
-#include "base/basictypes.h"
#include "base/strings/string_piece.h"
#include "crypto/crypto_export.h"
@@ -57,7 +59,7 @@ class CRYPTO_EXPORT HKDF {
}
private:
- std::vector<uint8> output_;
+ std::vector<uint8_t> output_;
base::StringPiece client_write_key_;
base::StringPiece server_write_key_;
« no previous file with comments | « crypto/ghash_unittest.cc ('k') | crypto/hkdf.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698