com.google.crypto.tink.proto.JwtEcdsaPublicKeyOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: proto/jwt_ecdsa.proto
// Protobuf Java Version: 4.28.2
package com.google.crypto.tink.proto;
public interface JwtEcdsaPublicKeyOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.crypto.tink.JwtEcdsaPublicKey)
com.google.protobuf.MessageLiteOrBuilder {
/**
* uint32 version = 1;
* @return The version.
*/
int getVersion();
/**
* .google.crypto.tink.JwtEcdsaAlgorithm algorithm = 2;
* @return The enum numeric value on the wire for algorithm.
*/
int getAlgorithmValue();
/**
* .google.crypto.tink.JwtEcdsaAlgorithm algorithm = 2;
* @return The algorithm.
*/
com.google.crypto.tink.proto.JwtEcdsaAlgorithm getAlgorithm();
/**
*
* Affine coordinates of the public key in big-endian representation. The
* public key is a point (x, y) on the curve defined by algorithm.
*
*
* bytes x = 3;
* @return The x.
*/
com.google.protobuf.ByteString getX();
/**
* bytes y = 4;
* @return The y.
*/
com.google.protobuf.ByteString getY();
/**
* .google.crypto.tink.JwtEcdsaPublicKey.CustomKid custom_kid = 5;
* @return Whether the customKid field is set.
*/
boolean hasCustomKid();
/**
* .google.crypto.tink.JwtEcdsaPublicKey.CustomKid custom_kid = 5;
* @return The customKid.
*/
com.google.crypto.tink.proto.JwtEcdsaPublicKey.CustomKid getCustomKid();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy