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

restx.security.SignatureKey Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package restx.security;

/**
 * User: xavierhanin
 * Date: 1/30/13
 * Time: 6:19 PM
 */
public class SignatureKey {
    public static final SignatureKey DEFAULT = new SignatureKey("this is the default signature key".getBytes());
    private final byte[] key;

    public SignatureKey(byte[] key) {
        this.key = key;
    }

    public byte[] getKey() {
        return key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy