Skip to content

Various helpers to work with decentralized identifiers

License

Notifications You must be signed in to change notification settings

wistefan/did-helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create P-256 Key and Certificate

In order to provide a did:key of type P-256, first a key and certificate needs to be created

# generate the private key - dont get confused about the curve, openssl uses the name `prime256v1` for `secp256r1`(as defined by P-256)
openssl ecparam -name prime256v1 -genkey -noout -out private-key.pem

# generate corresponding public key
openssl ec -in private-key.pem -pubout -out public-key.pem

# create a (self-signed) certificate
openssl req -new -x509 -key private-key.pem -out cert.pem -days 360

# export the keystore
openssl pkcs12 -export -inkey private-key.pem -in cert.pem -out cert.pfx -name the-alias

# check the contents
keytool -v -keystore cert.pfx -list -alias the-alias

Get the did

To generate a did from the generated keystore:

⚠️ Currently, only P-256 keys are supported.

    wget https://github.com/wistefan/did-helper/releases/download/0.0.2/did-helper
    chmod +x did-helper
    ./did-helper -keystorePath ./example/cert.pfx -keystorePassword=password

Alternatively, you could use the container to do all in one:

    docker run -v $(pwd):/cert quay.io/wi_stefan/did-helper

About

Various helpers to work with decentralized identifiers

Resources

License

Stars

Watchers

Forks

Packages

No packages published