Example usage for com.google.common.hash Hashing hmacSha1

List of usage examples for com.google.common.hash Hashing hmacSha1

Introduction

In this page you can find the example usage for com.google.common.hash Hashing hmacSha1.

Prototype

public static HashFunction hmacSha1(byte[] key) 

Source Link

Document

Returns a hash function implementing the Message Authentication Code (MAC) algorithm, using the SHA-1 (160 hash bits) hash function and a SecretSpecKey created from the given byte array and the SHA-1 algorithm.

Usage

From source file:com.facebook.presto.operator.scalar.HmacFunctions.java

@Description("Compute HMAC with SHA1")
@ScalarFunction/*  ww w .  j  av a 2  s  . com*/
@SqlType(StandardTypes.VARBINARY)
public static Slice hmacSha1(@SqlType(StandardTypes.VARBINARY) Slice slice,
        @SqlType(StandardTypes.VARBINARY) Slice key) {
    return wrappedBuffer(Hashing.hmacSha1(key.getBytes()).hashBytes(slice.getBytes()).asBytes());
}