gwenhywfar  5.11.1beta
ssl_cert_flags.h
Go to the documentation of this file.
1 /***************************************************************************
2  begin : Wed Mar 16 2005
3  copyright : (C) 2005-2010 by Martin Preuss
4  email : martin@libchipcard.de
5 
6  ***************************************************************************
7  * Please see toplevel file COPYING for license details *
8  ***************************************************************************/
9 
10 
11 #ifndef GWEN_SSL_CERT_FLAGS_H
12 #define GWEN_SSL_CERT_FLAGS_H
13 
14 
15 #define GWEN_SSL_CERT_FLAGS_SIGNER_NOT_FOUND 0x00000001
16 #define GWEN_SSL_CERT_FLAGS_INVALID 0x00000002
17 #define GWEN_SSL_CERT_FLAGS_REVOKED 0x00000004
18 #define GWEN_SSL_CERT_FLAGS_EXPIRED 0x00000008
19 #define GWEN_SSL_CERT_FLAGS_NOT_ACTIVE 0x00000010
20 #define GWEN_SSL_CERT_FLAGS_BAD_HOSTNAME 0x00000020
21 #define GWEN_SSL_CERT_FLAGS_BAD_DATA 0x00000040
22 #define GWEN_SSL_CERT_FLAGS_SYSTEM 0x00000080
23 #define GWEN_SSL_CERT_FLAGS_OK 0x80000000
24 
25 
26 #endif
27 
28