From d5c29e68ca12bfca67549472029e2b77f6c4598a Mon Sep 17 00:00:00 2001 From: Dongsun Lee Date: Wed, 26 Oct 2016 12:58:37 +0900 Subject: [PATCH] Fix TYPO from Aec to Aes and remname RsaOaepParameters to RsaOaepCipherParameters Change-Id: I4573f3f055d148983d7bbdbd7fa98b2190f70293 Signed-off-by: Dongsun Lee --- .../Tizen.Security.SecureRepository.Net45.csproj | 4 ++-- .../Tizen.Security.SecureRepository.csproj | 4 ++-- .../Tizen.Security.SecureRepository/Crypto/AesCfbCipherParameters.cs | 2 +- .../Tizen.Security.SecureRepository/Crypto/CipherAlgorithmType.cs | 4 ++-- .../Crypto/{RsaOaepParameters.cs => RsaOaepCipherParameters.cs} | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) rename src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/{RsaOaepParameters.cs => RsaOaepCipherParameters.cs} (88%) diff --git a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.Net45.csproj b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.Net45.csproj index ee444b0..d2f6874 100644 --- a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.Net45.csproj +++ b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.Net45.csproj @@ -56,7 +56,7 @@ - + @@ -93,4 +93,4 @@ --> - \ No newline at end of file + diff --git a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.csproj b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.csproj index e8a466a..2a91f18 100644 --- a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.csproj +++ b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository.csproj @@ -63,7 +63,7 @@ - + @@ -112,4 +112,4 @@ <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory) true - \ No newline at end of file + diff --git a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/AesCfbCipherParameters.cs b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/AesCfbCipherParameters.cs index 46b183a..2b31f4d 100644 --- a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/AesCfbCipherParameters.cs +++ b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/AesCfbCipherParameters.cs @@ -25,7 +25,7 @@ namespace Tizen.Security.SecureRepository.Crypto /// A default constructor /// /// The CipherAlgorithmType in CipherParameters is set to CipherAlgorithmType.AesCfb. - public AesCfbCipherParameters() : base(CipherAlgorithmType.AecCfb) + public AesCfbCipherParameters() : base(CipherAlgorithmType.AesCfb) { } } diff --git a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/CipherAlgorithmType.cs b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/CipherAlgorithmType.cs index 807b950..b4315f9 100644 --- a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/CipherAlgorithmType.cs +++ b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/CipherAlgorithmType.cs @@ -50,10 +50,10 @@ namespace Tizen.Security.SecureRepository.Crypto /// /// AES-CFB algorithm /// Supported parameters: - /// - ParameterName.AlgorithmType = AecCfb(mandatory), + /// - ParameterName.AlgorithmType = AesCfb(mandatory), /// - ParameterName.IV = 16-byte initialization vector(mandatory) /// - AecCfb, + AesCfb, /// /// RSA-OAEP algorithm /// Supported parameters: diff --git a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/RsaOaepParameters.cs b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/RsaOaepCipherParameters.cs similarity index 88% rename from src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/RsaOaepParameters.cs rename to src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/RsaOaepCipherParameters.cs index d546a77..71a4f29 100644 --- a/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/RsaOaepParameters.cs +++ b/src/Tizen.Security.SecureRepository/Tizen.Security.SecureRepository/Crypto/RsaOaepCipherParameters.cs @@ -19,13 +19,13 @@ namespace Tizen.Security.SecureRepository.Crypto /// /// A class holding parameters for RSA algorithm with OAEP mode. /// - public class RsaOaepParameters : CipherParameters + public class RsaOaepCipherParameters : CipherParameters { /// /// A default constructor /// /// The CipherAlgorithmType in CipherParameters is set to CipherAlgorithmType.RsaOaep. - public RsaOaepParameters() : base(CipherAlgorithmType.RsaOaep) + public RsaOaepCipherParameters() : base(CipherAlgorithmType.RsaOaep) { } } -- 2.7.4