ecparam {rbtc} | R Documentation |
Creating objects of class ECPARAM
Description
This function returns an object of S4-class ECPARAM
,
that does contain the parametrization of an elliptic curve.
Usage
ecparam(p, a, b)
Arguments
p |
|
a |
|
b |
|
Value
An object of S4-class ECPARAM
Author(s)
Bernhard Pfaff
References
https://en.bitcoin.it/wiki/Secp256k1
See Also
Other EllipticCurve: ECPARAM-class
,
ECPOINT-class
,
EcparamOrNull-class
,
containsPoint
, ecoperators
,
ecpoint
, isNull
Examples
p <- "0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F"
b <- "0x0000000000000000000000000000000000000000000000000000000000000007"
a <- "0x0000000000000000000000000000000000000000000000000000000000000000"
curve256 <- ecparam(p, a, b)
curve256
[Package rbtc version 0.1-6 Index]