fromHex static method

Point fromHex(
  1. String hex
)

Create a point from Hex

Implementation

static Point fromHex(String hex) {
  return fromBytes(Utilities.hexToBytes(hex));
}