1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     ssl_Types.h
4 
5   Copyright (C)2009 Nintendo Co., Ltd.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Rev: 18106 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_SSL_SSL_TYPES_H_
17 #define NN_SSL_SSL_TYPES_H_
18 
19 #include <nn/net/compatible/nssl.h>
20 
21 /*!
22   @addtogroup nn_ssl                       ssl
23   @{
24 */
25 
26 /**
27    @brief 証明書ID。
28  */
29 typedef NSSLCertId NnSslCertId;
30 
31 /**
32    @brief CRL ID。
33  */
34 typedef NSSLCRLId NnSslCrlId;
35 
36 /*!
37   @}
38 */
39 
40 #ifdef __cplusplus
41 
42 namespace nn {
43 namespace ssl {
44 
45 /**
46    @brief 証明書ID。
47  */
48 typedef NnSslCertId CertId;
49 
50 /**
51    @brief CRL ID。
52  */
53 typedef NnSslCrlId CrlId;
54 
55 /**
56    @brief SSLコネクションID。
57  */
58 typedef NSSLId ConnectionHandle;
59 
60 /**
61    @brief 証明書ストアID。
62  */
63 typedef NSSLCertStoreId CertStoreId;
64 
65 /**
66    @brief CRL ストア ID。
67  */
68 typedef NSSLCRLStoreId CrlStoreId;
69 
70 
71 } // end of namespace ssl
72 } // end of namespace nn
73 
74 #endif /*__cplusplus*/
75 
76 
77 #endif /* NN_NHTTP_NHTTP_TYPES_H_ */
78