Merge "Remove the memory leak on osp-security-service" into tizen_2.2
[platform/framework/native/appfw.git] / inc / FSecurity.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file                FSecurity.h
19  * @brief               This is the header file for the %Security namespace.
20  *
21  * This header file contains the declarations of the %Security namespace.
22  *
23  */
24 #ifndef _FSECURITY_H_
25 #define _FSECURITY_H_
26
27 #include "FSecAesSecureRandom.h"
28 #include "FSecDesEdeSecureRandom.h"
29 #include "FSecDesSecureRandom.h"
30 #include "FSecIKey.h"
31 #include "FSecIKeyPairGenerator.h"
32 #include "FSecIPrivateKey.h"
33 #include "FSecIPublicKey.h"
34 #include "FSecISecretKey.h"
35 #include "FSecISecretKeyGenerator.h"
36 #include "FSecISecureRandom.h"
37 #include "FSecKeyPair.h"
38 #include "FSecKeyPairGenerator.h"
39 #include "FSecPrivateKey.h"
40 #include "FSecPublicKey.h"
41 #include "FSecSecretKey.h"
42 #include "FSecSecretKeyGenerator.h"
43 #include "FSecIKeyParameters.h"
44 #include "FSecCryptoIKeyExchange.h"
45 #include "FSecCryptoKeaKeyExchange.h"
46 #include "FSecCryptoDhKeyExchange.h"
47 #include "FSecKeaKeyParameters.h"
48 #include "FSecDhKeyParameters.h"
49 #include "FSecRsaKeyConverter.h"
50 #include "FSecCrypto.h"
51 #include "FSecCert.h"
52 #include "FSecPkcs.h"
53 #include "FSecPrivacyManager.h"
54 #include "FSecPrivacyInfo.h"
55 #include "FSecPrivilegeInfo.h"
56 #include "FSecAccessController.h"
57
58
59 /**
60  * @namespace   Tizen::Security
61  * @brief               This namespace contains classes and interfaces for security services.
62  *
63  * @since               2.0
64  *
65  * @remarks             @b Header @b %file: @b \#include @b <FSecurity.h> @n
66  *                              @b Library: @b osp-appfw
67  *
68  *
69  * The %Security namespace contains classes for managing certificates, cryptographic keys, signatures, 
70  * and for generating pseudo-random numbers. @n
71  *
72  * For more information on the %Security namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/security/security_namespace.htm">Security Guide</a>. @n
73  *
74  * The following diagram illustrates the relationships between the classes and sub-namespaces belonging to the %Security namespace.
75  * @image html security_classdiagram.png
76  *
77  */
78 namespace Tizen { namespace Security
79 {
80
81 } } //Tizen::Security
82
83 #endif // _FSECURITY_H_