
com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKeyOrBuilder 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/jwt_rsa_ssa_pkcs1.proto
// Protobuf Java Version: 4.28.2
package com.google.crypto.tink.proto;
public interface JwtRsaSsaPkcs1PublicKeyOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.crypto.tink.JwtRsaSsaPkcs1PublicKey)
com.google.protobuf.MessageLiteOrBuilder {
/**
* uint32 version = 1;
* @return The version.
*/
int getVersion();
/**
* .google.crypto.tink.JwtRsaSsaPkcs1Algorithm algorithm = 2;
* @return The enum numeric value on the wire for algorithm.
*/
int getAlgorithmValue();
/**
* .google.crypto.tink.JwtRsaSsaPkcs1Algorithm algorithm = 2;
* @return The algorithm.
*/
com.google.crypto.tink.proto.JwtRsaSsaPkcs1Algorithm getAlgorithm();
/**
*
* Modulus.
* Unsigned big integer in big-endian representation.
*
*
* bytes n = 3;
* @return The n.
*/
com.google.protobuf.ByteString getN();
/**
*
* Public exponent.
* Unsigned big integer in big-endian representation.
*
*
* bytes e = 4;
* @return The e.
*/
com.google.protobuf.ByteString getE();
/**
* .google.crypto.tink.JwtRsaSsaPkcs1PublicKey.CustomKid custom_kid = 5;
* @return Whether the customKid field is set.
*/
boolean hasCustomKid();
/**
* .google.crypto.tink.JwtRsaSsaPkcs1PublicKey.CustomKid custom_kid = 5;
* @return The customKid.
*/
com.google.crypto.tink.proto.JwtRsaSsaPkcs1PublicKey.CustomKid getCustomKid();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy