All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.vskrahul.security.oauth1.OauthConstants Maven / Gradle / Ivy

package com.github.vskrahul.security.oauth1;

public interface OauthConstants {
	
	String HMAC_SHA1_ALGORITHM = "HmacSHA1";
	
	String AUTHORIZATION = "Authorization";
	
	String OAUTH = "OAuth";

	String REALM = "realm";
	
	String OAUTH_CONSUMER_KEY = "oauth_consumer_key";
	
	String OAUTH_TOKEN = "oauth_token";
	
	String OAUTH_SIGNATURE_METHOD = "oauth_signature_method";
	
	String OAUTH_SIGNATURE = "oauth_signature";
	
	String OAUTH_TIMESTAMP = "oauth_timestamp";
	
	String OAUTH_NONCE = "oauth_nonce";
	
	String OAUTH_VERSION = "oauth_version";
	
	String v1_0 = "1.0";
	
	String UTF_8 = "UTF-8";
	
	String HMAC_SHA1 = "HMAC-SHA1";
	
	String HMAC_SHA256 = "HMAC-SHA256";
	
	String NONCE_CHARS = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
	
	Integer NONCE_LEGTH = 6;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy