Which mode for Ethereum?
#1
Hello!

I see that there are two separate modes for Ethereum:

15600 = Ethereum Wallet, PBKDF2-HMAC-SHA256
15700 = Ethereum Wallet, PBKDF2-SCRYPT

When looking in my keystore file I see the cypher is aes-128-ctr and "scrypt" is referenced as the kdf:

{
    "crypto" : {
        "cipher" : "aes-128-ctr",
        "cipherparams" : {
            "iv" : "..."
        },
        "ciphertext" : "...",
        "kdf" : "scrypt",
        "kdfparams" : {
            "dklen" : 32,
            "n" : 262144,
            "r" : 1,
            "p" : 8,
            "salt" : "..."
        },
        "mac": "...",
        "id": "...",
        "version": 3
    }
}


Which mode should I be using?
Reply


Messages In This Thread
Which mode for Ethereum? - by while1 - 05-10-2021, 10:21 PM
RE: Which mode for Ethereum? - by atom - 05-11-2021, 06:34 AM
RE: Which mode for Ethereum? - by while1 - 05-11-2021, 03:57 PM
RE: Which mode for Ethereum? - by CATuGHTI - 05-12-2021, 04:12 AM
RE: Which mode for Ethereum? - by while1 - 05-12-2021, 07:44 PM
RE: Which mode for Ethereum? - by Snoopy - 05-12-2021, 07:53 PM
RE: Which mode for Ethereum? - by philsmd - 05-14-2021, 08:19 AM
RE: Which mode for Ethereum? - by while1 - 05-20-2021, 09:50 PM
RE: Which mode for Ethereum? - by Snoopy - 05-20-2021, 10:34 PM