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.
18 * @file FSecIKeyPairGenerator.h
19 * @brief This is the header file for the %IKeyPairGenerator interface.
21 * This header file contains the declarations of the %IKeyPairGenerator interface.
23 #ifndef _FSEC_IKEY_PAIR_GENERATOR_H_
24 #define _FSEC_IKEY_PAIR_GENERATOR_H_
26 #include <FBaseString.h>
27 #include <FSecKeyPair.h>
30 namespace Tizen { namespace Security
34 * @interface IKeyPairGenerator
35 * @brief This interface provides the abstract methods for generating a pair of public and private keys.
39 * The %IKeyPairGenerator interface provides the abstract methods for generating a pair of public and private keys. @n
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>.
43 * @see Tizen::Security::KeyPair
45 class _OSP_EXPORT_ IKeyPairGenerator
50 * This polymorphic destructor should be overridden if required. This way, the destructors of the derived classes @n
51 * are called when the destructor of this interface is called.
55 virtual ~IKeyPairGenerator(void){}
58 * Constructs and initializes an instance of %IKeyPairGenerator with the specified modulus size.
62 * @return An error code
63 * @param[in] modulusBitSize The modulus size in bits
64 * @exception E_SUCCESS The method is successful.
65 * @exception E_INVALID_ARG The specified @c modulusBitSize is invalid. @n
66 * The modulus size must be atleast greater than or equal to @c 1024 bits @n
67 * to generate cryptographically secure keys.
69 virtual result Construct(int modulusBitSize) = 0;
72 * Generates a new key pair.
76 * @return A pointer to the KeyPair class, @n
77 * else @c null if the method fails to generate the key pair
78 * @exception E_SUCCESS The method is successful.
79 * @exception E_UNSUPPORTED_ALGORITHM The requested algorithm is not supported.
80 * @exception E_OUT_OF_MEMORY The memory is insufficient.
81 * @exception E_SYSTEM A system error has occurred. @n
82 * The method has failed to operate with the OpenSSL library.
83 * @remarks The specific error code can be accessed using the GetLastResult() method.
85 virtual Tizen::Security::KeyPair* GenerateKeyPairN(void) const = 0;
89 // This method is for internal use only. Using this method can cause behavioral, security-related,
90 // and consistency-related issues in the application.
92 // This method is reserved and may change its name at any time without prior notice.
96 virtual void IKeyPairGenerator_Reserved1(void) {}
98 }; //IKeyPairGenerator
100 } } //Tizen::Security
102 #endif // _FSEC_IKEY_PAIR_GENERATOR_H_