Ethereum Private Key To Address

This library will calculate ethereum address from a private key.

Calculate Address

Step by step example to generate address:

  1. Add ethereum-private-key-to-address to your Cargo.toml: toml [dependencies] ethereum-private-key-to-address = "0.1"
  2. Import PrivateKey struct into your project: rust use ethereum_private_key_to_address::PrivateKey;
  3. Create PrivateKey struct with one of these methods: ```rust use ethereumprivatekeytoaddress::PrivateKey;

let privatekey = PrivateKey::fromstr("").unwrap();

let privatekey = PrivateKey::fromslice("

  1. Call the address() method on the PrivateKey struct: ```rust use ethereumprivatekeytoaddress::PrivateKey;

let privatekey = PrivateKey::fromstr("").unwrap();

// This will calculate your address from the given private key let address = private_key.address();

println!("{}", address); ```

Calculate Public Key

Step by step example to generate public key:

  1. Add ethereum-private-key-to-address to your Cargo.toml: toml [dependencies] ethereum-private-key-to-address = "0.1"
  2. Import PrivateKey struct into your project: rust use ethereum_private_key_to_address::PrivateKey;
  3. Create PrivateKey struct with one of these methods: ```rust use ethereumprivatekeytoaddress::PrivateKey;

let privatekey = PrivateKey::fromstr("").unwrap();

let privatekey = PrivateKey::fromslice("

  1. There are multiple options when it comes to the public key. Since public key consists of: prefix: 1 byte, x-coordinate: 32 bytes, y-coordinate: 32 bytes. Here are all the methods you can use. ```rust use ethereumprivatekeytoaddress::PrivateKey;

let privatekey = PrivateKey::fromstr("").unwrap();

// Returns Full 65 byte Public Key including the prefix as a String. In this case prefix is 0x04. // 0x04 is used to specify the type of the public key. let fullpublickeywithprefix = privatekey.publickey_full();

// Returns Full 64 byte Public Key from Private Key without 0x04 in the front as a String. // 0x04 is used to specify the type of the public key. 0x04 in front means the public key is uncompressed. let fullpublickey = privatekey.publickey();

// Returns the x-coordiante of the public key as a string. let xcoordinate = privatekey.publickeyx();

// Returns the y-coordinate of the public key. let ycoordiante = privatekey.publickeyy();

// Returns the entire public key in [u8; 65] format. let publickeyslice = privatekey.publickey_slice(); ```