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

Unified Diff: base/md5.h

Issue 1099453002: base: Simplify the construction of MD5Digest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 8 months 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 | « no previous file | base/md5.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/md5.h
diff --git a/base/md5.h b/base/md5.h
index 0b4cbcef3a8711d9fe8ebc90903f81538aa44523..82ce89c5f341adb4c5fd1262537bc2acc6c96e1c 100644
--- a/base/md5.h
+++ b/base/md5.h
@@ -36,9 +36,7 @@ namespace base {
// You can call MD5DigestToBase16() to generate a string of the digest.
// The output of an MD5 operation.
-struct MD5Digest {
- uint8_t a[16];
-};
+typedef uint8_t MD5Digest[16];
// Used for storing intermediate data during an MD5 computation. Callers
// should not access the data.
« no previous file with comments | « no previous file | base/md5.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698