Example usage for org.springframework.security.oauth.common.signature OAuthSignatureMethod interface-usage

List of usage examples for org.springframework.security.oauth.common.signature OAuthSignatureMethod interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.oauth.common.signature OAuthSignatureMethod interface-usage.

Usage

From source file org.springframework.security.oauth.common.signature.RSA_SHA1SignatureMethod.java

/**
 * RSA-SHA1 signature method. The RSA-SHA1 signature method uses the RSASSA-PKCS1-v1_5 signature algorithm as defined in RFC3447
 * section 8.2 (more simply known as PKCS#1), using SHA-1 as the hash function for EMSA-PKCS1-v1_5.
 *
 * @author Ryan Heaton
 */

From source file org.springframework.security.oauth.common.signature.HMAC_SHA1SignatureMethod.java

/**
 * HMAC-SHA1 signature method.
 *
 * @author Ryan Heaton
 */
public class HMAC_SHA1SignatureMethod implements OAuthSignatureMethod {