Merge "Update deprecated libprivilege-control API functions." into tizen
[platform/framework/native/appfw.git] / inc / FSecAesSecureRandom.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                FSecAesSecureRandom.h
19  * @brief               This is the header file for the %AesSecureRandom class.
20  *
21  * This header file contains the declarations of the %AesSecureRandom class.
22  */
23 #ifndef _FSEC_AES_SECURE_RANDOM_H_
24 #define _FSEC_AES_SECURE_RANDOM_H_
25
26 #include <FSecISecureRandom.h>
27
28
29 namespace Tizen { namespace Security
30 {
31
32 /**
33  *      @class          AesSecureRandom
34  *      @brief          This class generates a secure random object with the Advanced Encryption Standard (AES) method.
35  *
36  *      @since          2.0
37  *
38  * The %AesSecureRandom class generates a secure random object for seeding cryptographic algorithms.
39  * The Advanced Encryption Standard (AES) method generates a user-defined number of random bytes. @n
40  *
41  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/security/key_mgmt_and_csprng.htm">Key Management and CSPRNG</a>.
42  *
43  *      @see    ISecureRandom
44  *      @see    DesSecureRandom
45  *      @see    DesEdeSecureRandom
46  */
47 class _OSP_EXPORT_ AesSecureRandom
48         : public virtual ISecureRandom
49         , public Tizen::Base::Object
50 {
51
52 public:
53         /**
54          *      This is the default constructor for this class.
55          *
56          *      @since          2.0
57          */
58         AesSecureRandom(void);
59
60         /**
61          *      This destructor overrides Tizen::Base::Object::~Object().
62          *
63          *      @since          2.0
64          */
65         virtual ~AesSecureRandom(void);
66
67         /**
68          *      Generates a user-defined number of random bytes.
69          *
70          *      @since                  2.0
71          *
72          *      @return                 A pointer to the Tizen::Base::ByteBuffer class, @n
73          *                                      else @c null if an error occurs
74          *      @param[in]      numBytes                                The number of random bytes to generate
75          *      @exception              E_SUCCESS                               The method is successful.
76          *      @exception              E_OUT_OF_MEMORY                 The memory is insufficient.
77          *      @exception              E_INVALID_ARG                   The specified @c numBytes is @c 0 or negative.
78          *      @exception              E_SYSTEM                                A system error has occurred.
79          *      @remarks                The specific error code can be accessed using the GetLastResult() method.
80          */
81         virtual Tizen::Base::ByteBuffer* GenerateRandomBytesN(int numBytes);
82
83 private:
84
85         //
86         // The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
87         //
88         // @since 2.0
89         //
90         AesSecureRandom(const AesSecureRandom& rhs);
91
92         //
93         // The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
94         //
95         // @since 2.0
96         //
97         AesSecureRandom& operator =(const AesSecureRandom& rhs);
98
99 private:
100         class _AesSecureRandomImpl* __pAesSecureRandomImpl;
101         friend class _AesSecureRandomImpl;
102
103 }; //AesSecureRandom
104
105 } } //Tizen::Security
106
107 #endif  //_FSEC_AES_SECURE_RANDOM_H_