Skip to content

Ethereum messages encryption and decryption with ECIES from Parity Ethereum

Notifications You must be signed in to change notification settings

tritone11/rust-eth-ecies

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

extern crate eth_ecies;

use eth_ecies::brain;
use eth_ecies::Generator;
use eth_ecies::crypto::ecies;
use std::str::from_utf8;

fn main() {

    let keypair = brain::Brain::new("brain phrase !".to_string()).generate().unwrap();

    let public = keypair.public();
    let secret = keypair.secret();

    let ciphertext = ecies::encrypt(public,b"",b"Text to encrypt").unwrap();

    println!("Cyphertext {:?}",ciphertext);

    let decrypted = ecies::decrypt(secret,b"",&ciphertext).unwrap();

    println!("Decrypted {:?}",from_utf8(&decrypted).unwrap().to_string());
    
}

About

Ethereum messages encryption and decryption with ECIES from Parity Ethereum

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages