From 379d6d8dcd046fb31632e29bbaa4038bcd3895a5 Mon Sep 17 00:00:00 2001 From: Ajay Bhargav Baaskaran Date: Tue, 27 Jun 2017 15:02:17 -0700 Subject: [PATCH] Added some missed doc comments --- .../AuthenticatedEncryption/AuthenticatedEncryptorFactory.cs | 4 ++++ .../CngCbcAuthenticatedEncryptorFactory.cs | 3 +++ .../CngGcmAuthenticatedEncryptorFactory.cs | 3 +++ .../ManagedAuthenticatedEncryptorFactory.cs | 3 +++ .../DataProtectionBuilderExtensions.cs | 2 +- 5 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/AuthenticatedEncryptorFactory.cs b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/AuthenticatedEncryptorFactory.cs index 9cff56e78e..f9be1e1994 100644 --- a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/AuthenticatedEncryptorFactory.cs +++ b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/AuthenticatedEncryptorFactory.cs @@ -11,6 +11,10 @@ using Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption { + /// + /// An to create an + /// based on the . + /// public sealed class AuthenticatedEncryptorFactory : IAuthenticatedEncryptorFactory { private readonly ILoggerFactory _loggerFactory; diff --git a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngCbcAuthenticatedEncryptorFactory.cs b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngCbcAuthenticatedEncryptorFactory.cs index 86fc817ef1..1ccc76d501 100644 --- a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngCbcAuthenticatedEncryptorFactory.cs +++ b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngCbcAuthenticatedEncryptorFactory.cs @@ -12,6 +12,9 @@ using Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption { + /// + /// An for . + /// public sealed class CngCbcAuthenticatedEncryptorFactory : IAuthenticatedEncryptorFactory { private readonly ILogger _logger; diff --git a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngGcmAuthenticatedEncryptorFactory.cs b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngGcmAuthenticatedEncryptorFactory.cs index fefd273059..39b6c0e55d 100644 --- a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngGcmAuthenticatedEncryptorFactory.cs +++ b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/CngGcmAuthenticatedEncryptorFactory.cs @@ -12,6 +12,9 @@ using Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption { + /// + /// An for . + /// public sealed class CngGcmAuthenticatedEncryptorFactory : IAuthenticatedEncryptorFactory { private readonly ILogger _logger; diff --git a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/ManagedAuthenticatedEncryptorFactory.cs b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/ManagedAuthenticatedEncryptorFactory.cs index 03bd596346..32fb4f44f4 100644 --- a/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/ManagedAuthenticatedEncryptorFactory.cs +++ b/src/Microsoft.AspNetCore.DataProtection/AuthenticatedEncryption/ManagedAuthenticatedEncryptorFactory.cs @@ -11,6 +11,9 @@ using Microsoft.Extensions.Logging; namespace Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption { + /// + /// An for . + /// public sealed class ManagedAuthenticatedEncryptorFactory : IAuthenticatedEncryptorFactory { private readonly ILogger _logger; diff --git a/src/Microsoft.AspNetCore.DataProtection/DataProtectionBuilderExtensions.cs b/src/Microsoft.AspNetCore.DataProtection/DataProtectionBuilderExtensions.cs index 30b9edbf32..ec1d1136dd 100644 --- a/src/Microsoft.AspNetCore.DataProtection/DataProtectionBuilderExtensions.cs +++ b/src/Microsoft.AspNetCore.DataProtection/DataProtectionBuilderExtensions.cs @@ -145,7 +145,7 @@ namespace Microsoft.AspNetCore.DataProtection /// Configures the key management options for the data protection system. /// /// The . - /// An to configure the provided. + /// An to configure the provided . /// A reference to the after this operation has completed. public static IDataProtectionBuilder AddKeyManagementOptions(this IDataProtectionBuilder builder, Action setupAction) {