QuincySx / BlockchainWallet-Crypto

比特币、以太坊公私钥生成以及签名,长时间不维护可移步 https://github.com/QuincySx/ChainWallet
GNU General Public License v3.0
3 stars 1 forks source link

在生成keystore的时候我有点疑问 #19

Closed ciscolxh closed 6 years ago

ciscolxh commented 6 years ago

我看到您的keystore生成的时候和web3j调用的时候基本都是一样的 但是我在使用过程中遇到了一个问题 byte[] derivedKey = generateDerivedScryptKey( password.getBytes(Charset.forName("UTF-8")), salt, n, R, p, DKLEN);生成keystore的时候调用这个方法如果用测试类测试会很快就生成,但是编译运行在手机上久久不能通过,不知道您是否也遇到了这个问题。