powered by
Returns the corresponding private key from a WIF key.
Wif2PrivKey(wif)
character, a WIF key.
character
character, the corresponding private key.
https://en.bitcoin.it/wiki/Wallet_import_format, https://en.bitcoin.it/wiki/Address
Other BtcAdresses: BTCADR-class, PrivKey2PubKey, PrivKey2Wif, PubHash2BtcAdr, PubKey2PubHash, base58CheckDecode, base58CheckEncode, concatHex, createBtcAdr, createPrivateKey, decodeHex, hash160, hash256, validBtcAdr
BTCADR-class
PrivKey2PubKey
PrivKey2Wif
PubHash2BtcAdr
PubKey2PubHash
base58CheckDecode
base58CheckEncode
concatHex
createBtcAdr
createPrivateKey
decodeHex
hash160
hash256
validBtcAdr
# NOT RUN { pk1 <- createPrivateKey() wif <- PrivKey2Wif(pk1) pk2 <- Wif2PrivKey(wif) identical(pk1, pk2) # }
Run the code above in your browser using DataLab