//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOAuth.ChannelElements {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOAuth.Messaging;
using DotNetOAuth.Messaging.Bindings;
///
/// A binding element that signs outgoing messages and verifies the signature on incoming messages.
///
internal class RsaSha1SigningBindingElement : SigningBindingElementBase {
///
/// Applies a signature to the message.
///
/// The message to sign.
protected override void Sign(ITamperResistantOAuthMessage message) {
throw new NotImplementedException();
}
///
/// Validates the signature on a message.
/// Does NOT throw an exception on failing signature verification.
///
/// The message with a signature to verify.
/// True if the signature is valid. False otherwise.
protected override bool IsSignatureValid(ITamperResistantOAuthMessage message) {
throw new NotImplementedException();
}
}
}