Are privatekeys Case-sensitive?

2

I want to print privatekey into block of steel, but I have only uppercase letters, so I wonder if privatekey is case sensitive?

ewooycom

Posted 2013-12-21T11:26:42.973

Reputation: 276

Answers

3

A private key is a 256-bit number. You can represent it using only digits (so there is no need for lowercase letters). However, if you want to use the Wallet import format to represent the key, then you will need both upper and lower case letters (keys are encoded in Base58).

cpsola

Posted 2013-12-21T11:26:42.973

Reputation: 1 453