Merge "Added new method to the NotificationManager Interface" into tizen_2.2
[platform/framework/native/appfw.git] / inc / FSecPublicKey.h
index 53f37bb..63ab2b9 100644 (file)
@@ -15,7 +15,7 @@
 //
 
 /**
- * @file                       FSecPublicKey.h
+ * @file               FSecPublicKey.h
  * @brief              This is the header file for the %PublicKey class.
  *
  * This header file contains the declarations of the %PublicKey class.
@@ -32,9 +32,9 @@ namespace Tizen { namespace Security
 
 /**
  *     @class          PublicKey
- *     @brief          This class specifies the RSA public key.
+ *     @brief          This class provides methods for managing the RSA public key.
  *
- * @since       2.0
+ *     @since          2.0
  *
  * The %PublicKey class manages a public key, which is used in asymmetric ciphers.
  * The RSA algorithm encrypts the data using the public key. @n
@@ -54,21 +54,21 @@ public:
        /**
         *      This is the default constructor for this class.
         *
-        * @since       2.0
+        * @since               2.0
         */
        PublicKey(void);
 
        /**
         * This destructor overrides Tizen::Base::Object::~Object().
         *
-        * @since       2.0
+        * @since               2.0
         */
        virtual ~PublicKey(void);
 
        /**
         *      Gets the name of the primary encoding format of the current instance of %PublicKey.
         *
-        *      @since       2.0
+        *      @since          2.0
         *
         *      @return         The primary encoding format of the key
         */
@@ -77,20 +77,20 @@ public:
        /**
         *      Gets the public key in its primary encoding format.
         *
-        *      @since           2.0
+        *      @since          2.0
         *
         *      @return         A pointer to the Tizen::Base::ByteBuffer class, @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;
 
        /**
         *      Sets the public key buffer.
         *
-        *      @since           2.0
+        *      @since          2.0
         *
         *      @return         An error code
         *      @param[in]      keyBuffer                               An instance of Tizen::Base::ByteBuffer
@@ -105,14 +105,14 @@ private:
        //
        // The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
        //
-       // @since 2.0
+       // @since       2.0
        //
        PublicKey(const PublicKey& rhs);
 
        //
        // The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
        //
-       // @since 2.0
+       // @since       2.0
        //
        PublicKey& operator =(const PublicKey& rhs);