/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redPandaLib.test;
import org.redPandaLib.core.Channel;
import org.redPandaLib.crypt.Base58;
import org.redPandaLib.crypt.ECKey;
/**
*
* @author rflohr
*/
public class CreateNewChannel {
public static void main(String[] args) {
Channel channel = new Channel(new ECKey(), "temp");
System.out.println("new key to import: " + channel.exportForHumans());
System.out.println("priv key: " + channel.getPrivateKey());
}
}