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

com.braintreegateway.util.SignatureService Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway.util;

public class SignatureService {
    private final String key;
    private final Hasher hasher;

    public SignatureService(String key, Hasher hasher) {
        this.key = key;
        this.hasher = hasher;
    }

    public String sign(String query) {
        return hash(query) + "|" + query;
    }

    private String hash(String string) {
        return hasher.hmacHash(key, string);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy