I used -13 as private key in bitcoin but the private key is not valid. How can I get the positive private key from -13 or any other negative numbers using Bitcoinj or java and generate the same address?
val params = MainNetParams.get()
val b = BigInteger("-13")
val key = ECKey.fromPrivate(b, false)
println(LegacyAddress.fromKey(params, key)) // 122Vo9PeKd4j8zSGBeQHdmks6GnkpycXNz
Thanks to president-james-k-polk in the comments