NServiceBus.ConfigureRijndaelEncryptionService.BuildRijndaelEncryptionService C# (CSharp) Method

BuildRijndaelEncryptionService() static private method

static private BuildRijndaelEncryptionService ( string encryptionKeyIdentifier, byte[]>.IDictionary keys, IList expiredKeys ) : IEncryptionService
encryptionKeyIdentifier string
keys byte[]>.IDictionary
expiredKeys IList
return IEncryptionService
        static IEncryptionService BuildRijndaelEncryptionService(
            string encryptionKeyIdentifier,
            IDictionary<string, byte[]> keys,
            IList<byte[]> expiredKeys
            )
        {
            return new RijndaelEncryptionService(
                encryptionKeyIdentifier,
                keys,
                expiredKeys
                );
        }