Add a _LocalizedNumParser class and 4 static functions
[platform/framework/native/appfw.git] / inc / FSecPkcsIAlgorithmParameters.h
old mode 100644 (file)
new mode 100755 (executable)
index 9fe225a..a9c7f15
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2013 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -32,11 +31,15 @@ namespace Tizen { namespace Security { namespace Pkcs
 
 /**
  * @interface  IAlgorithmParameters
- * @brief              This is an interface class for cryptographic algorithm parameters like IV etc. It provides the generic
- *                                     functionalities which must be supported by all derived algorithm parameters like PbKdf2Parameters, PbEs2Parameters.
- *                                     This is an abstract class and hence object of this class cannot be instantiated.
+ * @brief              This interface is an interface class for cryptographic algorithm parameters such as IV, etc. It provides the generic
+ *                                     functionalities that must be supported by all derived algorithm parameters such PbKdf2Parameters, PbEs2Parameters.
+ *
  * @since              2.1
  *
+ * The %IAlgorithmParameters interface is an interface class for cryptographic algorithm parameters such as IV, etc. It provides the generic
+ *                                     functionalities that must be supported by all derived algorithm parameters such PbKdf2Parameters, PbEs2Parameters.
+ *                                     This is an abstract class and hence, object of this class cannot be instantiated.
+ *
  */
 
 class _OSP_EXPORT_ IAlgorithmParameters
@@ -51,22 +54,22 @@ public:
        virtual ~IAlgorithmParameters(void) {}
 
        /**
-        * Get the copy of parameters of the specified algorithm type.
+        * Gets the copy of parameters of the specified algorithm type.
         *
         * @since                       2.1
         *
         * @return              Pointer to AlgorithmParameters, containing the instance of algorithm parameter , @n
-        *                                              else @c null if an error occurs.
+        *                                              else @c null if an error occurs
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
         */
        virtual IAlgorithmParameters* CloneN(void) const = 0;
 
        /**
-        * Get the pkcs algorithm parameter type enumerated value.
+        * Gets the PKCS algorithm parameter type enumerated value.
         *
         * @since                       2.1
         *
-        * @return              PkcsAlgorithmParamterType, containing the enumerated value of PkcsAlgorithmParameterType.
+        * @return              PkcsAlgorithmParamterType, containing the enumerated value of PkcsAlgorithmParameterType
         *
         */
        virtual PkcsAlgorithmParameterType GetType(void) const = 0;