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

package com.google.crypto.tink.proto;

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

  
Required.
uint32 version = 1;
Returns:The version.
/** * <pre> * Required. * </pre> * * <code>uint32 version = 1;</code> * @return The version. */
int getVersion();
Required.
.google.crypto.tink.RsaSsaPssParams params = 2;
Returns:Whether the params field is set.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.RsaSsaPssParams params = 2;</code> * @return Whether the params field is set. */
boolean hasParams();
Required.
.google.crypto.tink.RsaSsaPssParams params = 2;
Returns:The params.
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.RsaSsaPssParams params = 2;</code> * @return The params. */
com.google.crypto.tink.proto.RsaSsaPssParams getParams();
Required.
.google.crypto.tink.RsaSsaPssParams params = 2;
/** * <pre> * Required. * </pre> * * <code>.google.crypto.tink.RsaSsaPssParams params = 2;</code> */
com.google.crypto.tink.proto.RsaSsaPssParamsOrBuilder getParamsOrBuilder();
Modulus.
Unsigned big integer in bigendian representation.
bytes n = 3;
Returns:The n.
/** * <pre> * Modulus. * Unsigned big integer in bigendian representation. * </pre> * * <code>bytes n = 3;</code> * @return The n. */
com.google.protobuf.ByteString getN();
Public exponent.
Unsigned big integer in bigendian representation.
bytes e = 4;
Returns:The e.
/** * <pre> * Public exponent. * Unsigned big integer in bigendian representation. * </pre> * * <code>bytes e = 4;</code> * @return The e. */
com.google.protobuf.ByteString getE(); }