Uses of Class
convex.core.crypto.ASignature
Packages that use ASignature
Package
Description
Data structures and algorithms, including a complete set of classes
required to implement immutable, decentralised data objects.
-
Uses of ASignature in convex.core.crypto
Subclasses of ASignature in convex.core.cryptoModifier and TypeClassDescriptionclass
Immutable dtata value class representing an Ed25519 digital signature.Fields in convex.core.crypto declared as ASignatureModifier and TypeFieldDescriptionstatic ASignature
Ed25519Signature.ZERO
A Signature containing zerod bytes (not valid)Methods in convex.core.crypto that return ASignatureModifier and TypeMethodDescriptionstatic ASignature
Construct a Signature from a Blob Uses Ed25519static ASignature
Construct a Signature from a hex string Uses Ed25519static ASignature
ASignature.read(ByteBuffer bb)
Reads a Signature from the given ByteBuffer.abstract ASignature
Signs a hash value with this key pair, producing a signature of the appropriate type. -
Uses of ASignature in convex.core.data
Methods in convex.core.data that return ASignatureModifier and TypeMethodDescriptionSignedData.getSignature()
Gets the Signature that formed part of this SignedData objectMethods in convex.core.data with parameters of type ASignatureModifier and TypeMethodDescriptionstatic SignedData<ATransaction>
SignedData.create(AKeyPair kp, ASignature sig, Ref<ATransaction> ref)
static <T extends ACell>
SignedData<T>SignedData.create(AccountKey address, ASignature sig, Ref<T> ref)
Creates a SignedData object with the given parameters.