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

package com.google.crypto.tink.proto;

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

  
Hash function used in computing hash of the signing message
(see https://tools.ietf.org/html/rfc8017#section-9.1.1).
Required.
.google.crypto.tink.HashType sig_hash = 1;
Returns:The enum numeric value on the wire for sigHash.
/** * <pre> * Hash function used in computing hash of the signing message * (see https://tools.ietf.org/html/rfc8017#section-9.1.1). * Required. * </pre> * * <code>.google.crypto.tink.HashType sig_hash = 1;</code> * @return The enum numeric value on the wire for sigHash. */
int getSigHashValue();
Hash function used in computing hash of the signing message
(see https://tools.ietf.org/html/rfc8017#section-9.1.1).
Required.
.google.crypto.tink.HashType sig_hash = 1;
Returns:The sigHash.
/** * <pre> * Hash function used in computing hash of the signing message * (see https://tools.ietf.org/html/rfc8017#section-9.1.1). * Required. * </pre> * * <code>.google.crypto.tink.HashType sig_hash = 1;</code> * @return The sigHash. */
com.google.crypto.tink.proto.HashType getSigHash();
Hash function used in MGF1 (a mask generation function based on a
hash function) (see https://tools.ietf.org/html/rfc8017#appendix-B.2.1).
Required.
.google.crypto.tink.HashType mgf1_hash = 2;
Returns:The enum numeric value on the wire for mgf1Hash.
/** * <pre> * Hash function used in MGF1 (a mask generation function based on a * hash function) (see https://tools.ietf.org/html/rfc8017#appendix-B.2.1). * Required. * </pre> * * <code>.google.crypto.tink.HashType mgf1_hash = 2;</code> * @return The enum numeric value on the wire for mgf1Hash. */
int getMgf1HashValue();
Hash function used in MGF1 (a mask generation function based on a
hash function) (see https://tools.ietf.org/html/rfc8017#appendix-B.2.1).
Required.
.google.crypto.tink.HashType mgf1_hash = 2;
Returns:The mgf1Hash.
/** * <pre> * Hash function used in MGF1 (a mask generation function based on a * hash function) (see https://tools.ietf.org/html/rfc8017#appendix-B.2.1). * Required. * </pre> * * <code>.google.crypto.tink.HashType mgf1_hash = 2;</code> * @return The mgf1Hash. */
com.google.crypto.tink.proto.HashType getMgf1Hash();
Salt length (see https://tools.ietf.org/html/rfc8017#section-9.1.1)
Required.
int32 salt_length = 3;
Returns:The saltLength.
/** * <pre> * Salt length (see https://tools.ietf.org/html/rfc8017#section-9.1.1) * Required. * </pre> * * <code>int32 salt_length = 3;</code> * @return The saltLength. */
int getSaltLength(); }