invoke

inline operator fun invoke(curve: ECCurve, x: ByteArray, usePositiveY: Boolean): CryptoPublicKey.EC(source)

Deprecated

Explicitly specify what you want

Replace with

fromCompressed(curve, x, usePositiveY)

inline operator fun invoke(curve: ECCurve, x: ByteArray, y: ByteArray): CryptoPublicKey.EC(source)

Deprecated

Explicitly specify what you want

Replace with

fromUncompressed(curve, x, y)