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

package com.google.crypto.tink.proto;

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

  
Required.
bytes encrypted_keyset = 2;
Returns:The encryptedKeyset.
/** * <pre> * Required. * </pre> * * <code>bytes encrypted_keyset = 2;</code> * @return The encryptedKeyset. */
com.google.protobuf.ByteString getEncryptedKeyset();
Optional.
.google.crypto.tink.KeysetInfo keyset_info = 3;
Returns:Whether the keysetInfo field is set.
/** * <pre> * Optional. * </pre> * * <code>.google.crypto.tink.KeysetInfo keyset_info = 3;</code> * @return Whether the keysetInfo field is set. */
boolean hasKeysetInfo();
Optional.
.google.crypto.tink.KeysetInfo keyset_info = 3;
Returns:The keysetInfo.
/** * <pre> * Optional. * </pre> * * <code>.google.crypto.tink.KeysetInfo keyset_info = 3;</code> * @return The keysetInfo. */
com.google.crypto.tink.proto.KeysetInfo getKeysetInfo();
Optional.
.google.crypto.tink.KeysetInfo keyset_info = 3;
/** * <pre> * Optional. * </pre> * * <code>.google.crypto.tink.KeysetInfo keyset_info = 3;</code> */
com.google.crypto.tink.proto.KeysetInfoOrBuilder getKeysetInfoOrBuilder(); }