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

package com.google.crypto.tink.proto;

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

  
uint32 version = 1;
Returns:The version.
/** * <code>uint32 version = 1;</code> * @return The version. */
int getVersion();
The key format also contains the params.
.google.crypto.tink.KmsAeadKeyFormat params = 2;
Returns:Whether the params field is set.
/** * <pre> * The key format also contains the params. * </pre> * * <code>.google.crypto.tink.KmsAeadKeyFormat params = 2;</code> * @return Whether the params field is set. */
boolean hasParams();
The key format also contains the params.
.google.crypto.tink.KmsAeadKeyFormat params = 2;
Returns:The params.
/** * <pre> * The key format also contains the params. * </pre> * * <code>.google.crypto.tink.KmsAeadKeyFormat params = 2;</code> * @return The params. */
com.google.crypto.tink.proto.KmsAeadKeyFormat getParams();
The key format also contains the params.
.google.crypto.tink.KmsAeadKeyFormat params = 2;
/** * <pre> * The key format also contains the params. * </pre> * * <code>.google.crypto.tink.KmsAeadKeyFormat params = 2;</code> */
com.google.crypto.tink.proto.KmsAeadKeyFormatOrBuilder getParamsOrBuilder(); }