2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
8 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 * @brief This is the header file for the %Crypto namespace.
21 * This header file contains the declarations and descriptions of the %Crypto namespace.
23 #ifndef _FSEC_CRYPTO_H_
24 #define _FSEC_CRYPTO_H_
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>
53 * @namespace Tizen::Security::Crypto
54 * @brief This namespace contains classes and interfaces for the cryptographic primitives.
58 * @remarks @b Header @b %file: @b \#include @b <FSecurity.h> @n
59 * @b Library : @b osp-appfw
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
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
65 * The following diagram illustrates the relationships between the classes belonging to the %Crypto namespace.
66 * @image html security_crypto_classdiagram.png
69 namespace Tizen { namespace Security { namespace Crypto
72 } } } // Tizen::Security::Crypto
74 #endif // _FSEC_CRYPTO_H_