// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/hmac.proto

package com.google.crypto.tink.proto;

public interface HmacKeyOrBuilder extends
    // @@protoc_insertion_point(interface_extends:google.crypto.tink.HmacKey)
    com.google.protobuf.MessageOrBuilder {

  
uint32 version = 1;
Returns:The version.
/** * <code>uint32 version = 1;</code> * @return The version. */
int getVersion();
.google.crypto.tink.HmacParams params = 2;
Returns:Whether the params field is set.
/** * <code>.google.crypto.tink.HmacParams params = 2;</code> * @return Whether the params field is set. */
boolean hasParams();
.google.crypto.tink.HmacParams params = 2;
Returns:The params.
/** * <code>.google.crypto.tink.HmacParams params = 2;</code> * @return The params. */
com.google.crypto.tink.proto.HmacParams getParams();
.google.crypto.tink.HmacParams params = 2;
/** * <code>.google.crypto.tink.HmacParams params = 2;</code> */
com.google.crypto.tink.proto.HmacParamsOrBuilder getParamsOrBuilder();
bytes key_value = 3;
Returns:The keyValue.
/** * <code>bytes key_value = 3;</code> * @return The keyValue. */
com.google.protobuf.ByteString getKeyValue(); }