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

Side by Side Diff: mozilla/security/nss/lib/freebl/drbg.c

Issue 11359091: Update NSS to NSS 3.14 pre-release snapshot 2012-06-26 01:00:00 PDT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 /* This Source Code Form is subject to the terms of the Mozilla Public 1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 /* $Id: drbg.c,v 1.11 2012/06/28 17:55:05 rrelyea%redhat.com Exp $ */ 4 /* $Id: drbg.c,v 1.10 2012/04/25 14:49:43 gerv%gerv.net Exp $ */
5 5
6 #ifdef FREEBL_NO_DEPEND 6 #ifdef FREEBL_NO_DEPEND
7 #include "stubs.h" 7 #include "stubs.h"
8 #endif 8 #endif
9 9
10 #include "prerror.h" 10 #include "prerror.h"
11 #include "secerr.h" 11 #include "secerr.h"
12 12
13 #include "prtypes.h" 13 #include "prtypes.h"
14 #include "prinit.h" 14 #include "prinit.h"
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 } 685 }
686 686
687 SECStatus 687 SECStatus
688 PRNGTEST_Uninstantiate() 688 PRNGTEST_Uninstantiate()
689 { 689 {
690 PORT_Memset(&testContext, 0, sizeof testContext); 690 PORT_Memset(&testContext, 0, sizeof testContext);
691 return SECSuccess; 691 return SECSuccess;
692 } 692 }
693 693
694 694
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698