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

package com.google.crypto.tink.proto;

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

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