source: rtems-libbsd/ipsec-tools/src/racoon/prsa_par.h

6-freebsd-12
Last change on this file was b376ae1, checked in by Christian Mauderer <christian.mauderer@…>, on 05/03/18 at 12:15:11

ipsec-tools: Port libipsec, setkey and racoon.

Note that this replaces the libipsec from FreeBSD with the one provided
by ipsec-tools.

  • Property mode set to 100644
File size: 728 bytes
Line 
1#define COLON 257
2#define HEX 258
3#define OBRACE 259
4#define EBRACE 260
5#define TAG_RSA 261
6#define TAG_PUB 262
7#define TAG_PSK 263
8#define MODULUS 264
9#define PUBLIC_EXPONENT 265
10#define PRIVATE_EXPONENT 266
11#define PRIME1 267
12#define PRIME2 268
13#define EXPONENT1 269
14#define EXPONENT2 270
15#define COEFFICIENT 271
16#define ADDR4 272
17#define ADDR6 273
18#define ADDRANY 274
19#define SLASH 275
20#define NUMBER 276
21#define BASE64 277
22#ifdef YYSTYPE
23#undef  YYSTYPE_IS_DECLARED
24#define YYSTYPE_IS_DECLARED 1
25#endif
26#ifndef YYSTYPE_IS_DECLARED
27#define YYSTYPE_IS_DECLARED 1
28typedef union {
29        BIGNUM *bn;
30        RSA *rsa;
31        char *chr;
32        long num;
33        struct netaddr *naddr;
34} YYSTYPE;
35#endif /* !YYSTYPE_IS_DECLARED */
36extern YYSTYPE racoonprsalval;
Note: See TracBrowser for help on using the repository browser.