Apply string localization for web
[platform/framework/native/appfw.git] / inc / FSecPkcsInitialVector.h
index eacb204..dc09cde 100755 (executable)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2013 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -39,8 +38,8 @@ namespace Tizen { namespace Security { namespace Pkcs
  * @since              2.1
  *
  * The %InitialVector class implements the functionalities specified by the %InitialVector class.
- *                                     This class represents the Initial Vector parameter for symmetric ciphers such as DES, AES, DES_EDE.
- *                                     This %InitialVector parameters will be used by both PKCS05 and PKCS08 related classes at the time of encryption.
+ * This class represents the Initial Vector parameter for symmetric ciphers such as DES, AES, DES_EDE.
+ * This %InitialVector parameters will be used by both PKCS05 and PKCS08 related classes at the time of encryption.
  *
  *
  */
@@ -74,18 +73,18 @@ public:
         *
         * @return              An error code
         *
-        * @param[in]   initialVector           An instance of Tizen::Base::ByteBuffer, holding the initial vector data
-        * @exception   E_SUCCESS                               The method is successful.
+        * @param[in]   initialVector           An instance of Tizen::Base::ByteBuffer holding the initial vector data
+        * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_INVALID_ARG           The specified input parameter is invalid.
         */
        result Construct(const Tizen::Base::ByteBuffer& initialVector);
 
        /**
-        * Gets copy of this instance.
+        * Gets copy of this instance.
         *
         * @since               2.1
         *
-        * @return              A pointer to IAlgorithmParameters, containing the copy of this instance
+        * @return              A pointer to IAlgorithmParameters containing the copy of this instance
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
         */
        virtual IAlgorithmParameters* CloneN(void) const;
@@ -95,7 +94,7 @@ public:
         *
         * @since               2.1
         *
-        * @return              PkcsAlgorithmParameterType              Enum value containing the PKCS_ALGO_PARAM_TYPE_IV value for Initial Vector parameter
+        * @return              PkcsAlgorithmParameterType              The enum value containing the @c PKCS_ALGO_PARAM_TYPE_IV value for Initial Vector parameter
         *
         */
        virtual PkcsAlgorithmParameterType GetType(void) const;
@@ -106,10 +105,10 @@ public:
         * @since               2.1
         *
         * @return              @c true if the specified instance equals the current instance, @n
-        *              else @c false
+        *                              else @c false
         * @param[in]   rhs                                     An instance of %InitialVector
-        * @exception   E_SUCCESS                               The method is successful.
-        * @exception   E_INVALID_ARG                           The specified input parameter is invalid.
+        * @exception   E_SUCCESS                       The method is successful.
+        * @exception   E_INVALID_ARG           The specified input parameter is invalid.
         * @remarks             The specific error code can be accessed using the GetLastResult() method.
         */
        virtual bool Equals(const Tizen::Base::Object& rhs) const;
@@ -124,7 +123,7 @@ public:
        virtual int GetHashCode(void) const;
 
        /**
-        * Gets the instance of Tizen::Base::ByteBuffer that contains the Initial Vector value.
+        * Gets an instance of Tizen::Base::ByteBuffer that contains the Initial Vector value.
         *
         * @since               2.1
         *
@@ -133,13 +132,13 @@ public:
        const Tizen::Base::ByteBuffer& GetInitialVector(void) const;
 
        /**
-        * Gets the encoded form of the InitialVector. @n
-        * It is assumed that each InitialVector type will have only a single form of encoding that is DER encoding.
+        * Gets the encoded form of the %InitialVector. @n
+        * It is assumed that each %InitialVector type will have only a single form of encoding that is DER encoding.
         *
         * @since               2.1
         *
-        * @return              Pointer to the DER encoded Tizen::Base::ByteBuffer, @n
-        *                                                      else @c null if an error occurs
+        * @return              A pointer to the DER encoded Tizen::Base::ByteBuffer, @n
+        *                              else @c null if an error occurs
         * @exception   E_SUCCESS                                               The method is successful.
         * @exception   E_SYSTEM                                                The method cannot proceed due to a severe system error.
         * @remarks             The specific error code can be accessed using the GetLastResult() method.