UNPKG
bifcore-sdk-nodejs-bop
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
bifcore sdk nodejs
github.com/caict-4iot-dev/BIF-Core_SDK-JS
caict-4iot-dev/BIF-Core_SDK-JS
bifcore-sdk-nodejs-bop
/
test
/
did.test.js
10 lines
(7 loc)
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
import
{
Ed25519VerificationKey2020
}
from
'@digitalbazaar/ed25519-verification-key-2020'
;
it
(
'test getBidAndKeyPair()'
,
async
() => {
// Generate Ed25519 key pair
const
edKeyPair =
await
Ed25519VerificationKey2020
.
generate
();
console
.
log
(
'edKeyPair:'
, edKeyPair); })