Apply string localization for web
[platform/framework/native/appfw.git] / inc / FSecIPublicKey.h
index 62f7b7a..e9f1593 100644 (file)
@@ -15,7 +15,7 @@
 //
 
 /**
- * @file                       FSecIPublicKey.h
+ * @file               FSecIPublicKey.h
  * @brief              This is the header file for the %IPublicKey interface.
  *
  * This header file contains the declarations of the %IPublicKey interface.
@@ -46,32 +46,32 @@ class _OSP_EXPORT_ IPublicKey
 
 public:
        /**
-        * This polymorphic destructor should be overridden if required. This way, the destructors of the derived classes @n
-        * are called when the destructor of this interface is called.
+        * This polymorphic destructor should be overridden if required. @n 
+        * This way, the destructors of the derived classes are called when the destructor of this interface is called.
         *
-        *  @since              2.0
+        * @since               2.0
         */
        virtual ~IPublicKey(void){}
 
        /**
-        * Gets the name of the primary encoding format of a key.
+        * Gets the name of the primary encoding format of the key.
         *
         * @since                       2.0
         *
-        * @return                      The primary encoding format of a key
+        * @return                      The primary encoding format of the key
         */
        virtual Tizen::Base::String GetFormat(void) const = 0;
 
        /**
-        * Gets a public key in its primary encoding format.
+        * Gets the public key in its primary encoding format.
         *
-        * @since                       2.0
+        * @since               2.0
         *
         * @return              A pointer to the Tizen::Base::ByteBuffer class that contains the output, @n
-        *                                      else @c null if an error occurs
+        *                              else @c null if an error occurs
         * @exception   E_SUCCESS                       The method is successful.
         * @exception   E_OUT_OF_MEMORY         The memory is insufficient.
-        * @remarks     The specific error code can be accessed using the GetLastResult() method.
+        * @remarks             The specific error code can be accessed using the GetLastResult() method.
         */
        virtual Tizen::Base::ByteBuffer* GetEncodedN(void) const = 0;