Fix warning related mandatory comments
authorKyungwook Tak <k.tak@samsung.com>
Thu, 18 Aug 2016 05:58:32 +0000 (14:58 +0900)
committerkyungwook tak <k.tak@samsung.com>
Thu, 18 Aug 2016 06:53:52 +0000 (15:53 +0900)
Change-Id: I2e1d6bf714429d6edb4d5958ba4e618acbedcc49
Signed-off-by: Kyungwook Tak <k.tak@samsung.com>
src/Tizen.Security/Tizen.Security.SecureRepository/Crypto/Signature.cs
src/Tizen.Security/Tizen.Security/Privilege.cs

index be5c95b..5a64256 100644 (file)
@@ -47,7 +47,7 @@ namespace Tizen.Security.SecureRepository.Crypto
         /// </summary>
         /// <param name="privateKeyAlias">The name of private key.</param>
         /// <param name="password">The password used in decrypting a private key value.</param>
-        /// <param name="message.">The message that is signed with a private key.</param>
+        /// <param name="message">The message that is signed with a private key.</param>
         /// <returns>A newly created signature.</returns>
         /// <remarks>The key type specified by privateKeyAlias should be compatible with the algorithm specified in Parameters.</remarks>
         /// <remarks>If password of policy is provided during storing a key, the same password should be provided.</remarks>
@@ -82,8 +82,8 @@ namespace Tizen.Security.SecureRepository.Crypto
         /// </summary>
         /// <param name="publicKeyAlias">The name of public key.</param>
         /// <param name="password">The password used in decrypting a public key value.</param>
-        /// <param name="message.">The input on which the signature is created.</param>
-        /// <param name="signature.">The signature that is verified with public key.</param>
+        /// <param name="message">The input on which the signature is created.</param>
+        /// <param name="signature">The signature that is verified with public key.</param>
         /// <returns>The signature statue. True is returned when the signature is valid</returns>
         /// <remarks>The key type specified by publicKeyAlias should be compatible with the algorithm specified in Parameters.</remarks>
         /// <remarks>If password of policy is provided during storing a key, the same password should be provided.</remarks>
index a712dee..d18805a 100755 (executable)
@@ -21,6 +21,9 @@ using Tizen.Applications;
 
 namespace Tizen.Security
 {
+    /// <summary>
+    /// The class provides the information of the given privilege and API version.
+    /// </summary>
     public static class Privilege
     {
         internal static string ToPackageTypeString(PackageType type)