Ask Your Question
4

What is the procedure for creating PEM using a public key from Curve25519?

asked 2023-02-15 11:00:00 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-01-25 22:00:00 +0000

plato gravatar image

Here are the steps to create a PEM file using a public key from Curve25519:

  1. Generate a Curve25519 public key. This can be done using a software library like OpenSSL or libsodium.

  2. Convert the public key to base64 format. This can be done using a library like base64.js or base64url.

  3. Create a PEM file with the following content:

-----BEGIN PUBLIC KEY----- <base64 representation="" of="" the="" public="" key=""> -----END PUBLIC KEY-----

  1. Save the PEM file with a .pem extension.

Here is an example of what the PEM file contents should look like:

-----BEGIN PUBLIC KEY----- MCowBQYDK2VwAyEA7B1uhFXxLuIn/w/HHc3EZnVNG0G8tSTkXtQKyoNwbjc= -----END PUBLIC KEY-----

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-02-15 11:00:00 +0000

Seen: 11 times

Last updated: Jan 25 '23