Ordo  0.3.4
Symmetric Cryptography Library
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
stream_params.h
Go to the documentation of this file.
1 /*===-- primitives/stream_ciphers/stream_params.h ------*- PUBLIC -*- H -*-===*/
8 /*===----------------------------------------------------------------------===*/
9 
10 #ifndef ORDO_STREAM_PARAMS_H
11 #define ORDO_STREAM_PARAMS_H
12 
14 #include "ordo/common/interface.h"
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 /*===----------------------------------------------------------------------===*/
22 
25 struct RC4_PARAMS
26 {
34  unsigned int drop;
35 };
36 
40 {
41  struct RC4_PARAMS rc4;
42 };
43 
44 /*===----------------------------------------------------------------------===*/
45 
46 #ifdef __cplusplus
47 }
48 #endif
49 
50 #endif
unsigned int drop
Definition: stream_params.h:34
Polymorphic stream cipher parameter union.
Definition: stream_params.h:39
RC4 stream cipher parameters.
Definition: stream_params.h:25