NServiceBus.ConfigureRijndaelEncryptionService.RijndaelEncryptionService C# (CSharp) Method

RijndaelEncryptionService() public static method

Use 256 bit AES encryption based on the Rijndael cipher.
public static RijndaelEncryptionService ( this config ) : void
config this The instance to apply the settings to.
return void
        public static void RijndaelEncryptionService(this EndpointConfiguration config)
        {
            Guard.AgainstNull(nameof(config), config);
            RegisterEncryptionService(config, () =>
            {
                var section = config.Settings
                    .GetConfigSection<RijndaelEncryptionServiceConfig>();

                return ConvertConfigToRijndaelService(section);
            });
        }

Same methods

ConfigureRijndaelEncryptionService::RijndaelEncryptionService ( this config, string encryptionKeyIdentifier, byte[]>.IDictionary keys, IList decryptionKeys = null ) : void
ConfigureRijndaelEncryptionService::RijndaelEncryptionService ( this config, string encryptionKeyIdentifier, byte encryptionKey, IList decryptionKeys = null ) : void