Move system-server under server/system.
[platform/framework/native/appfw.git] / inc / FSecCrypto.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           FSecCrypto.h
19  *      @brief          This is the header file for the %Crypto namespace.
20  *
21  *      This header file contains the declarations and descriptions of the %Crypto namespace.
22  */
23 #ifndef _FSEC_CRYPTO_H_
24 #define _FSEC_CRYPTO_H_
25
26 #include <FSecCryptoTypes.h>
27 #include <FSecCryptoAesCipher.h>
28 #include <FSecCryptoDesCipher.h>
29 #include <FSecCryptoDesEdeCipher.h>
30 #include <FSecCryptoRc2Cipher.h>
31 #include <FSecCryptoRc4Cipher.h>
32 #include <FSecCryptoCastCipher.h>
33 #include <FSecCryptoSkipJackCipher.h>
34 #include <FSecCryptoIAsymmetricCipher.h>
35 #include <FSecCryptoIHash.h>
36 #include <FSecCryptoIHmac.h>
37 #include <FSecCryptoISignature.h>
38 #include <FSecCryptoISymmetricCipher.h>
39 #include <FSecCryptoMd5Hash.h>
40 #include <FSecCryptoMd5Hmac.h>
41 #include <FSecCryptoRsaCipher.h>
42 #include <FSecCryptoRsaSignature.h>
43 #include <FSecCryptoSha1Hash.h>
44 #include <FSecCryptoSha1Hmac.h>
45 #include <FSecCryptoSha2Hash.h>
46 #include <FSecCryptoSha2Hmac.h>
47 #include <FSecCryptoIKeyExchange.h>
48 #include <FSecCryptoDhKeyExchange.h>
49 #include <FSecCryptoKeaKeyExchange.h>
50
51
52 /**
53  *      @namespace              Tizen::Security::Crypto
54  *      @brief                  This namespace contains classes and interfaces for the cryptographic primitives.
55  *
56  *      @since                  2.0
57  *
58  *      @remarks                @b Header @b %file: @b \#include @b <FSecurity.h> @n
59  *                                      @b Library : @b osp-appfw
60  *
61  *      The %Crypto namespace provides classes and methods to handle encryption and decryption using hashing, symmetric and asymmetric ciphers. It also provides a mechanism for sending messages over an insecure channel using a key pair (public and private keys). @n
62  *
63  *       For more information on the %Crypto namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/security/cryptography.htm">Crypto Guide</a>. @n
64  *
65  *      The following diagram illustrates the relationships between the classes belonging to the %Crypto namespace.
66  *      @image html security_crypto_classdiagram.png
67  *
68  */
69 namespace Tizen { namespace Security { namespace Crypto
70 {
71
72 } } } // Tizen::Security::Crypto
73
74 #endif // _FSEC_CRYPTO_H_