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

com.twilio.sdk.TwilioUtils Maven / Gradle / Ivy

package com.twilio.sdk;


/*
Copyright (c) 2013 Twilio, Inc.

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/

import org.apache.commons.codec.binary.Base64;

import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import java.io.UnsupportedEncodingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;

public class TwilioUtils {

    protected String authToken;
    
    public TwilioUtils(String authToken){
        this.authToken = authToken;
    }
    
    @Deprecated
    public TwilioUtils(String authToken, String accountSid){
    	this.authToken = authToken;
    }

    public boolean validateRequest(String expectedSignature, String url, Map params) {
        String signature = null;

        signature = getValidationSignature(url, params);
        return secureCompare(signature, expectedSignature);
    }
    
    public String getValidationSignature(String url, Map params) {
    	SecretKeySpec signingKey = new SecretKeySpec(this.authToken.getBytes(), "HmacSHA1");
   	
    	try {
	    	//initialize the hash algortihm
	        Mac mac = Mac.getInstance("HmacSHA1");
	        mac.init(signingKey);
	
	        //sort the params alphabetically, and append the key and value of each to the url
	        StringBuffer data = new StringBuffer(url);
	        if (params != null) {
	            List sortedKeys = new ArrayList( params.keySet());
	            Collections.sort(sortedKeys);
	
	            for (String s: sortedKeys) {
	                data.append(s);
	                String v = "";
	                if (params.get(s) != null) {
	                    v = params.get(s);
	                }
	                data.append(v);
	            }
	        }
	
	        //compute the hmac on input data bytes
	        byte[] rawHmac = mac.doFinal(data.toString().getBytes("UTF-8"));
	
	        //base64-encode the hmac
	        String signature = new String(Base64.encodeBase64(rawHmac));
	
	        return signature; 
        } catch (NoSuchAlgorithmException e) {
            return null;
        } catch (InvalidKeyException e) {
            return null;
        } catch (UnsupportedEncodingException e) {
            return null;
        }
    }

    /**
     * Securely compare two strings, using constant time to avoid timing
     * attacks.  We can't use MessageDigest.isEqual because it didn't do
     * constant-time compares until JDK6u17 - see:
     * http://codahale.com/a-lesson-in-timing-attacks/
     */
    static boolean secureCompare(String a, String b) {
      if (a == null || b == null) {
        return false;
      }
      int n = a.length();
      if (n != b.length()) {
        return false;
      }
      int mismatch = 0;
      for (int i = 0; i < n; ++i) {
        char chA = a.charAt(i);
        char chB = b.charAt(i);
        mismatch |= chA ^ chB;
      }
      return mismatch == 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy