Skip to content
Snippets Groups Projects
Select Git revision
  • d263359cfc5200c136b37e4df24bf5387f2cc82b
  • master default protected
  • location
  • messages
  • group
5 results

CONTRIBUTING.md

Blame
  • After you've reviewed these contribution guidelines, you'll be all set to contribute to this project.
    App.java 581 B
    package fr.miage;
    
    import java.security.NoSuchAlgorithmException;
    
    /**
     * Hello world!
     *
     */
    public class App 
    {
        public static void main( String[] args ) throws NoSuchAlgorithmException
        {
            System.out.println("Début de la blockchain");
            // Création de la blockchain
            Blockchain blockchain = new Blockchain("BloBlockchain");
            //Création de 2 wallets
            Wallet bobWallet = new Wallet("Ceci est la clé privé de bob");
           ///System.out.println(bobWallet.getPublicKey());
           //System.out.println(bobWallet.getPrivateKey());
        }
    }