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

package com.google.crypto.tink.proto;

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

  
Required.
.google.crypto.tink.HashType hash_type = 1;
Returns:The enum numeric value on the wire for hashType.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.HashType hash_type = 1;</code> * @return The enum numeric value on the wire for hashType. */
int getHashTypeValue();
Required.
.google.crypto.tink.HashType hash_type = 1;
Returns:The hashType.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.HashType hash_type = 1;</code> * @return The hashType. */
com.google.crypto.tink.proto.HashType getHashType();
Required.
.google.crypto.tink.EllipticCurveType curve = 2;
Returns:The enum numeric value on the wire for curve.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.EllipticCurveType curve = 2;</code> * @return The enum numeric value on the wire for curve. */
int getCurveValue();
Required.
.google.crypto.tink.EllipticCurveType curve = 2;
Returns:The curve.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.EllipticCurveType curve = 2;</code> * @return The curve. */
com.google.crypto.tink.proto.EllipticCurveType getCurve();
Required.
.google.crypto.tink.EcdsaSignatureEncoding encoding = 3;
Returns:The enum numeric value on the wire for encoding.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.EcdsaSignatureEncoding encoding = 3;</code> * @return The enum numeric value on the wire for encoding. */
int getEncodingValue();
Required.
.google.crypto.tink.EcdsaSignatureEncoding encoding = 3;
Returns:The encoding.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.EcdsaSignatureEncoding encoding = 3;</code> * @return The encoding. */
com.google.crypto.tink.proto.EcdsaSignatureEncoding getEncoding(); }