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

Side by Side Diff: openssl/engines/ccgost/gost_params.h

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « openssl/engines/ccgost/gost_md.c ('k') | openssl/engines/ccgost/gost_params.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /**********************************************************************
2 * gost_params.h *
3 * Copyright (c) 2005-2006 Cryptocom LTD *
4 * This file is distributed under the same license as OpenSSL *
5 * *
6 * Declaration of structures used to represent GOST R 34.10 *
7 * parameter sets, defined in RFC 4357 *
8 * OpenSSL 0.9.9 libraries required to compile and use *
9 * this code *
10 **********************************************************************/
11 #ifndef GOST_PARAMSET_H
12 #define GOST_PARAMSET_H
13 typedef struct R3410 {
14 int nid;
15 char *a;
16 char *p;
17 char *q;
18 } R3410_params;
19
20 extern R3410_params R3410_paramset[];
21
22 typedef struct R3410_2001 {
23 int nid;
24 char *a;
25 char *b;
26 char *p;
27 char *q;
28 char *x;
29 char *y;
30 } R3410_2001_params;
31
32 extern R3410_2001_params R3410_2001_paramset[];
33
34 #endif
OLDNEW
« no previous file with comments | « openssl/engines/ccgost/gost_md.c ('k') | openssl/engines/ccgost/gost_params.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698