You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
382 B
12 lines
382 B
var Identity = require('../lib/identity');
|
|
var KeyPair = require('../lib/keypair');
|
|
|
|
var keypair = new KeyPair().fromRandom();
|
|
|
|
console.log( 'keypair:' , keypair );
|
|
console.log( 'public key:' , keypair.pubkey.toString() );
|
|
|
|
var identity = new Identity().fromPubkey( keypair.pubkey );
|
|
|
|
console.log( 'identity:' , identity );
|
|
console.log( 'identity string:' , identity.toString() );
|
|
|