| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -45,6 +45,8 @@ all: \ | |||
| 45 | 45 | rsa_pss_public_2048_sha512_sha256_20.pem \ | |
| 46 | 46 | ed25519_private.pem \ | |
| 47 | 47 | ed25519_public.pem \ | |
| 48 | + x25519_private.pem \ | ||
| 49 | + x25519_public.pem \ | ||
| 48 | 50 | ||
| 49 | 51 | # | |
| 50 | 52 | # Create Certificate Authority: ca1 | |
@@ -606,6 +608,12 @@ ed25519_private.pem: | |||
| 606 | 608 | ed25519_public.pem: ed25519_private.pem | |
| 607 | 609 | openssl pkey -in ed25519_private.pem -pubout -out ed25519_public.pem | |
| 608 | 610 | ||
| 611 | + x25519_private.pem: | ||
| 612 | + openssl genpkey -algorithm x25519 -out x25519_private.pem | ||
| 613 | + | ||
| 614 | + x25519_public.pem: x25519_private.pem | ||
| 615 | + openssl pkey -in x25519_private.pem -pubout -out x25519_public.pem | ||
| 616 | + | ||
| 609 | 617 | clean: | |
| 610 | 618 | rm -f *.pfx *.pem *.srl ca2-database.txt ca2-serial fake-startcom-root-serial *.print *.old fake-startcom-root-issued-certs/*.pem | |
| 611 | 619 | @> fake-startcom-root-database.txt | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,3 @@ | |||
| 1 | + -----BEGIN PRIVATE KEY----- | ||
| 2 | + MC4CAQAwBQYDK2VuBCIEIJi/yFpueUawC1BkXyWM8ONIBGFjL7UZHrD/Zo/KPDpn | ||
| 3 | + -----END PRIVATE KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,3 @@ | |||
| 1 | + -----BEGIN PUBLIC KEY----- | ||
| 2 | + MCowBQYDK2VuAyEAaSb8Q+RndwfNnPeOYGYPDUN3uhAPnMLzXyfi+mqfhig= | ||
| 3 | + -----END PUBLIC KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -209,8 +209,8 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem', | |||
| 209 | 209 | { private: fixtures.readSync('test_ed448_privkey.pem', 'ascii'), | |
| 210 | 210 | public: fixtures.readSync('test_ed448_pubkey.pem', 'ascii'), | |
| 211 | 211 | keyType: 'ed448' }, | |
| 212 | - { private: fixtures.readSync('test_x25519_privkey.pem', 'ascii'), | ||
| 213 | - public: fixtures.readSync('test_x25519_pubkey.pem', 'ascii'), | ||
| 212 | + { private: fixtures.readKey('x25519_private.pem', 'ascii'), | ||
| 213 | + public: fixtures.readKey('x25519_public.pem', 'ascii'), | ||
| 214 | 214 | keyType: 'x25519' }, | |
| 215 | 215 | { private: fixtures.readSync('test_x448_privkey.pem', 'ascii'), | |
| 216 | 216 | public: fixtures.readSync('test_x448_pubkey.pem', 'ascii'), | |
| Back | FazBrowse Home | New Git URL |
0 commit comments