Attributes
- Companion
- trait
- Graph
-
- Supertypes
- Self type
-
JVMPlatformSpecific.type
Members list
Value members
Inherited methods
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Adds two G1 group elements
Adds two G1 group elements
Value parameters
- p1
-
G1 element
- p2
-
G1 element
Attributes
- Returns
-
p1 + p2
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Compress a G1 element to a bytestring. This serialises a curve point to its x coordinate only. The compressed bytestring is 48 bytes long, with three spare bits used to convey extra information about the point, including determining which of two possible y coordinates the point has and whether the point is the point at infinity.
Compress a G1 element to a bytestring. This serialises a curve point to its x coordinate only. The compressed bytestring is 48 bytes long, with three spare bits used to convey extra information about the point, including determining which of two possible y coordinates the point has and whether the point is the point at infinity.
Value parameters
- p
-
G1 element to compress
Attributes
- Returns
-
Compressed bytestring
- See also
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Negates a G1 group element
Negates a G1 group element
Value parameters
- p
-
G1 element
Attributes
- Returns
-
-p
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Multiplication of group elements by scalars. In the blst library the arguments are the other way round, but scalars acting on the left is more consistent with standard mathematical practice.
Multiplication of group elements by scalars. In the blst library the arguments are the other way round, but scalars acting on the left is more consistent with standard mathematical practice.
Value parameters
- p
-
group element
- s
-
scalar
Attributes
- Returns
-
s * p
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Uncompress a bytestring to get a G1 point. This will fail if any of the following are true.
Uncompress a bytestring to get a G1 point. This will fail if any of the following are true.
- The bytestring is not exactly 48 bytes long.
- The most significant three bits are used incorrectly.
- The bytestring encodes a field element which is not the x coordinate of a point on the E1 curve.
- The bytestring does represent a point on the E1 curve, but the point is not in the G1 subgroup.
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Verify an ECDSA signature made using the SECP256k1 curve.
Verify an ECDSA signature made using the SECP256k1 curve.
Value parameters
- msg
-
Message (32 bytes)
- pk
-
Public key (33 bytes)
- sig
-
Signature (64 bytes)
Attributes
- Note
-
There are additional well-formation requirements for the arguments beyond their length:
- The first byte of the public key must correspond to the sign of the
y
coordinate: this is0x02
ify
is even, and0x03
otherwise. - The remaining bytes of the public key must correspond to the
x
coordinate, as a big-endian integer. - The first 32 bytes of the signature must correspond to the big-endian integer representation of r.
- The last 32 bytes of the signature must correspond to the big-endian integer representation of s. While this primitive
accepts
a hash, any caller should only pass it hashes that they computed themselves: specifically, they should receive themessage
from a sender and hash it, rather than receiving thehash
from said sender. Failure to do so can be dangerous. Other than length, we make no requirements of what hash gets used.
- The first byte of the public key must correspond to the sign of the
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Verify a Schnorr signature made using the SECP256k1 curve.
Verify a Schnorr signature made using the SECP256k1 curve.
Value parameters
- msg
-
Message (arbitrary length)
- pk
-
Public key (32 bytes)
- sig
-
Signature (64 bytes)
Attributes
- See also
- Note
-
There are additional well-formation requirements for the arguments beyond their length. Throughout, we refer to co-ordinates of the point
R
.- The bytes of the public key must correspond to the
x
coordinate, as a big-endian integer, as specified in BIP-340. - The first 32 bytes of the signature must correspond to the
x
coordinate, as a big-endian integer, as specified in BIP-340. - The last 32 bytes of the signature must correspond to the bytes of
s
, as a big-endian integer, as specified in BIP-340.
- The bytes of the public key must correspond to the
- Definition Classes
- Inherited from:
- JVMPlatformSpecific
Inherited fields
Attributes
- Inherited from:
- JVMPlatformSpecific
Attributes
- Inherited from:
- JVMPlatformSpecific