//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OAuth.ChannelElements { using System; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Text; using DotNetOpenAuth.Messaging; /// /// A binding element that signs outgoing messages and verifies the signature on incoming messages. /// public abstract class RsaSha1SigningBindingElement : SigningBindingElementBase { /// /// The name of the hash algorithm to use. /// protected const string HashAlgorithmName = "RSA-SHA1"; /// /// Initializes a new instance of the class. /// protected RsaSha1SigningBindingElement() : base(HashAlgorithmName) { } } }