sync with tizen_2.0
[platform/framework/native/appfw.git] / inc / FSecCrypto.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  *      @file           FSecCrypto.h
20  *      @brief          This is the header file for the %Crypto namespace.
21  *
22  *      This header file contains the declarations and descriptions of the %Crypto namespace.
23  */
24 #ifndef _FSEC_CRYPTO_H_
25 #define _FSEC_CRYPTO_H_
26
27 #include <FSecCryptoTypes.h>
28 #include <FSecCryptoAesCipher.h>
29 #include <FSecCryptoDesCipher.h>
30 #include <FSecCryptoDesEdeCipher.h>
31 #include <FSecCryptoRc2Cipher.h>
32 #include <FSecCryptoRc4Cipher.h>
33 #include <FSecCryptoCastCipher.h>
34 #include <FSecCryptoSkipJackCipher.h>
35 #include <FSecCryptoIAsymmetricCipher.h>
36 #include <FSecCryptoIHash.h>
37 #include <FSecCryptoIHmac.h>
38 #include <FSecCryptoISignature.h>
39 #include <FSecCryptoISymmetricCipher.h>
40 #include <FSecCryptoMd5Hash.h>
41 #include <FSecCryptoMd5Hmac.h>
42 #include <FSecCryptoRsaCipher.h>
43 #include <FSecCryptoRsaSignature.h>
44 #include <FSecCryptoSha1Hash.h>
45 #include <FSecCryptoSha1Hmac.h>
46 #include <FSecCryptoSha2Hash.h>
47 #include <FSecCryptoSha2Hmac.h>
48 #include <FSecCryptoIKeyExchange.h>
49 #include <FSecCryptoDhKeyExchange.h>
50 #include <FSecCryptoKeaKeyExchange.h>
51
52
53 /**
54  *      @namespace              Tizen::Security::Crypto
55  *      @brief                  This namespace contains classes and interfaces for the cryptographic primitives.
56  *
57  *      @since                  2.0
58  *
59  *      @remarks                @b Header @b %file: @b \#include @b <FSecurity.h> @n
60  *                                      @b Library : @b osp-appfw
61  *
62  *      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
63  *
64  *       For more information on the %Crypto namespace features, see <a href="../org.tizen.native.appprogramming/html/guide/security/cryptography.htm">Crypto Guide</a>. @n
65  *
66  *      The following diagram illustrates the relationships between the classes belonging to the %Crypto namespace.
67  *      @image html security_crypto_classdiagram.png
68  *
69  */
70 namespace Tizen { namespace Security { namespace Crypto
71 {
72
73 } } } // Tizen::Security::Crypto
74
75 #endif // _FSEC_CRYPTO_H_