Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 8b34ac9
  • /
  • gost_params.h
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:4c3f5567d7f29b229449ae611cee5cfd096dcce9
directory badge Iframe embedding
swh:1:dir:8b34ac9123355b8f32364c05f06c33c7cc5b82b6
gost_params.h
/**********************************************************************
 *                        gost_params.h                               *
 *             Copyright (c) 2005-2006 Cryptocom LTD                  *
 *       This file is distributed under the same license as OpenSSL   *
 *                                                                    *
 *       Declaration of structures used to represent  GOST R 34.10    *
 * 	               parameter sets, defined in RFC 4357                *
 *         OpenSSL 0.9.9 libraries required to compile and use        *
 *                              this code                             *
 **********************************************************************/ 
#ifndef GOST_PARAMSET_H
#define GOST_PARAMSET_H
typedef struct R3410 {
		int nid;
		char *a;
		char *p;
		char *q;
} R3410_params;

extern R3410_params R3410_paramset[];

typedef struct R3410_2001 {
		int nid;
		char *a;
		char *b;
		char *p;
		char *q;
		char *x;
		char *y;
} R3410_2001_params;

extern R3410_2001_params R3410_2001_paramset[];

#endif

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top