
com.google.crypto.tink.proto.RsaSsaPssParamsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tink-android Show documentation
Show all versions of tink-android Show documentation
Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: proto/rsa_ssa_pss.proto
// Protobuf Java Version: 4.28.2
package com.google.crypto.tink.proto;
public interface RsaSsaPssParamsOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.crypto.tink.RsaSsaPssParams)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
* 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;
* @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;
* @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;
* @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;
* @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;
* @return The saltLength.
*/
int getSaltLength();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy