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

package com.google.crypto.tink.proto;

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

  
Required.
string type_url = 1;
Returns:The typeUrl.
/** * <pre> * Required. * </pre> * * <code>string type_url = 1;</code> * @return The typeUrl. */
java.lang.String getTypeUrl();
Required.
string type_url = 1;
Returns:The bytes for typeUrl.
/** * <pre> * Required. * </pre> * * <code>string type_url = 1;</code> * @return The bytes for typeUrl. */
com.google.protobuf.ByteString getTypeUrlBytes();
Required.
bytes value = 2;
Returns:The value.
/** * <pre> * Required. * </pre> * * <code>bytes value = 2;</code> * @return The value. */
com.google.protobuf.ByteString getValue();
Required.
.google.crypto.tink.KeyData.KeyMaterialType key_material_type = 3;
Returns:The enum numeric value on the wire for keyMaterialType.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.KeyData.KeyMaterialType key_material_type = 3;</code> * @return The enum numeric value on the wire for keyMaterialType. */
int getKeyMaterialTypeValue();
Required.
.google.crypto.tink.KeyData.KeyMaterialType key_material_type = 3;
Returns:The keyMaterialType.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.KeyData.KeyMaterialType key_material_type = 3;</code> * @return The keyMaterialType. */
com.google.crypto.tink.proto.KeyData.KeyMaterialType getKeyMaterialType(); }