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

Side by Side Diff: webrtc/rtc_base/sha1.cc

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: Fix invalid merge Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * SHA-1 in C 2 * SHA-1 in C
3 * By Steve Reid <sreid@sea-to-sky.net> 3 * By Steve Reid <sreid@sea-to-sky.net>
4 * 100% Public Domain 4 * 100% Public Domain
5 * 5 *
6 * ----------------- 6 * -----------------
7 * Modified 7/98 7 * Modified 7/98
8 * By James H. Brown <jbrown@burgoyne.com> 8 * By James H. Brown <jbrown@burgoyne.com>
9 * Still 100% Public Domain 9 * Still 100% Public Domain
10 * 10 *
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 memset(context->state, 0, 20); 289 memset(context->state, 0, 20);
290 memset(context->count, 0, 8); 290 memset(context->count, 0, 8);
291 memset(finalcount, 0, 8); // SWR 291 memset(finalcount, 0, 8); // SWR
292 292
293 #ifdef SHA1HANDSOFF // Make SHA1Transform overwrite its own static vars. 293 #ifdef SHA1HANDSOFF // Make SHA1Transform overwrite its own static vars.
294 SHA1Transform(context->state, context->buffer); 294 SHA1Transform(context->state, context->buffer);
295 #endif 295 #endif
296 } 296 }
297 297
298 } // namespace rtc 298 } // namespace rtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698