com.hedera.hashgraph.sdk.proto.SignaturePairOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
public interface SignaturePairOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.SignaturePair)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* First few bytes of the public key
*
*
* bytes pubKeyPrefix = 1;
* @return The pubKeyPrefix.
*/
com.google.protobuf.ByteString getPubKeyPrefix();
/**
*
**
* smart contract virtual signature (always length zero)
*
*
* bytes contract = 2;
* @return Whether the contract field is set.
*/
boolean hasContract();
/**
*
**
* smart contract virtual signature (always length zero)
*
*
* bytes contract = 2;
* @return The contract.
*/
com.google.protobuf.ByteString getContract();
/**
*
**
* ed25519 signature
*
*
* bytes ed25519 = 3;
* @return Whether the ed25519 field is set.
*/
boolean hasEd25519();
/**
*
**
* ed25519 signature
*
*
* bytes ed25519 = 3;
* @return The ed25519.
*/
com.google.protobuf.ByteString getEd25519();
/**
*
**
* RSA-3072 signature
*
*
* bytes RSA_3072 = 4;
* @return Whether the rSA3072 field is set.
*/
boolean hasRSA3072();
/**
*
**
* RSA-3072 signature
*
*
* bytes RSA_3072 = 4;
* @return The rSA3072.
*/
com.google.protobuf.ByteString getRSA3072();
/**
*
**
* ECDSA p-384 signature
*
*
* bytes ECDSA_384 = 5;
* @return Whether the eCDSA384 field is set.
*/
boolean hasECDSA384();
/**
*
**
* ECDSA p-384 signature
*
*
* bytes ECDSA_384 = 5;
* @return The eCDSA384.
*/
com.google.protobuf.ByteString getECDSA384();
/**
*
**
* ECDSA(secp256k1) signature
*
*
* bytes ECDSA_secp256k1 = 6;
* @return Whether the eCDSASecp256k1 field is set.
*/
boolean hasECDSASecp256K1();
/**
*
**
* ECDSA(secp256k1) signature
*
*
* bytes ECDSA_secp256k1 = 6;
* @return The eCDSASecp256k1.
*/
com.google.protobuf.ByteString getECDSASecp256K1();
com.hedera.hashgraph.sdk.proto.SignaturePair.SignatureCase getSignatureCase();
}