Class secp256k1_ecdsa_signature
java.lang.Object
org.bitcoinj.secp.ffm.jextract.secp256k1_ecdsa_signature
struct secp256k1_ecdsa_signature {
unsigned char data[64];
}
-
Method Summary
Modifier and TypeMethodDescriptionstatic MemorySegmentallocate(SegmentAllocator allocator) Allocate a segment of sizelayout().byteSize()usingallocatorstatic MemorySegmentallocateArray(long elementCount, SegmentAllocator allocator) Allocate an array of sizeelementCountusingallocator.static MemorySegmentasSlice(MemorySegment array, long index) Obtains a slice ofarrayParamwhich selects the array element atindex.static MemorySegmentdata(MemorySegment struct) Getter for field:unsigned char data[64]static bytedata(MemorySegment struct, long index0) Indexed getter for field:unsigned char data[64]static voiddata(MemorySegment struct, long index0, byte fieldValue) Indexed setter for field:unsigned char data[64]static voiddata(MemorySegment struct, MemorySegment fieldValue) Setter for field:unsigned char data[64]static long[]Dimensions for array field:unsigned char data[64]static final SequenceLayoutLayout for field:unsigned char data[64]static final longOffset for field:unsigned char data[64]static final GroupLayoutlayout()The layout of this structstatic MemorySegmentreinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any).static MemorySegmentreinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any).static longsizeof()The size (in bytes) of this struct
-
Method Details
-
layout
The layout of this struct -
data$layout
Layout for field:unsigned char data[64] -
data$offset
public static final long data$offset()Offset for field:unsigned char data[64] -
data
Getter for field:unsigned char data[64] -
data
Setter for field:unsigned char data[64] -
data$dimensions
public static long[] data$dimensions()Dimensions for array field:unsigned char data[64] -
data
Indexed getter for field:unsigned char data[64] -
data
Indexed setter for field:unsigned char data[64] -
asSlice
Obtains a slice ofarrayParamwhich selects the array element atindex. The returned segment has addressarrayParam.address() + index * layout().byteSize() -
sizeof
public static long sizeof()The size (in bytes) of this struct -
allocate
Allocate a segment of sizelayout().byteSize()usingallocator -
allocateArray
Allocate an array of sizeelementCountusingallocator. The returned segment has sizeelementCount * layout().byteSize(). -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any). The returned segment has sizelayout().byteSize() -
reinterpret
public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup) Reinterpretsaddrusing targetarenaandcleanupAction(if any). The returned segment has sizeelementCount * layout().byteSize()
-