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

package com.google.crypto.tink.proto;

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

  
uint32 version = 1;
Returns:The version.
/** * <code>uint32 version = 1;</code> * @return The version. */
int getVersion();
.google.crypto.tink.AesCtrHmacStreamingParams params = 2;
Returns:Whether the params field is set.
/** * <code>.google.crypto.tink.AesCtrHmacStreamingParams params = 2;</code> * @return Whether the params field is set. */
boolean hasParams();
.google.crypto.tink.AesCtrHmacStreamingParams params = 2;
Returns:The params.
/** * <code>.google.crypto.tink.AesCtrHmacStreamingParams params = 2;</code> * @return The params. */
com.google.crypto.tink.proto.AesCtrHmacStreamingParams getParams();
.google.crypto.tink.AesCtrHmacStreamingParams params = 2;
/** * <code>.google.crypto.tink.AesCtrHmacStreamingParams params = 2;</code> */
com.google.crypto.tink.proto.AesCtrHmacStreamingParamsOrBuilder getParamsOrBuilder();
the main key, aka. "ikm", input key material
bytes key_value = 3;
Returns:The keyValue.
/** * <pre> * the main key, aka. "ikm", input key material * </pre> * * <code>bytes key_value = 3;</code> * @return The keyValue. */
com.google.protobuf.ByteString getKeyValue(); }