| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -64,6 +64,8 @@ all: \ | |||
| 64 | 64 | x25519_public.pem \ | |
| 65 | 65 | ed448_private.pem \ | |
| 66 | 66 | ed448_public.pem \ | |
| 67 | + x448_private.pem \ | ||
| 68 | + x448_public.pem \ | ||
| 67 | 69 | ||
| 68 | 70 | # | |
| 69 | 71 | # Create Certificate Authority: ca1 | |
@@ -682,6 +684,12 @@ ed448_private.pem: | |||
| 682 | 684 | ed448_public.pem: ed448_private.pem | |
| 683 | 685 | openssl pkey -in ed448_private.pem -pubout -out ed448_public.pem | |
| 684 | 686 | ||
| 687 | + x448_private.pem: | ||
| 688 | + openssl genpkey -algorithm x448 -out x448_private.pem | ||
| 689 | + | ||
| 690 | + x448_public.pem: x448_private.pem | ||
| 691 | + openssl pkey -in x448_private.pem -pubout -out x448_public.pem | ||
| 692 | + | ||
| 685 | 693 | clean: | |
| 686 | 694 | rm -f *.pfx *.pem *.srl ca2-database.txt ca2-serial fake-startcom-root-serial *.print *.old fake-startcom-root-issued-certs/*.pem | |
| 687 | 695 | @> fake-startcom-root-database.txt | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,4 @@ | |||
| 1 | + -----BEGIN PRIVATE KEY----- | ||
| 2 | + MEYCAQAwBQYDK2VvBDoEOLTDbazv6vHZWOmODQ3kk8TUOQgApB4j75rpInT5zSLl | ||
| 3 | + /xJHK8ixF7f+4uo+mGTCrK1sktI5UmCZ | ||
| 4 | + -----END PRIVATE KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,4 @@ | |||
| 1 | + -----BEGIN PUBLIC KEY----- | ||
| 2 | + MEIwBQYDK2VvAzkAioHSHVpTs6hMvghosEJDIR7ceFiE3+Xccxati64oOVJ7NWjf | ||
| 3 | + ozE7ae31PXIUFq6cVYgvSKsDFPA= | ||
| 4 | + -----END PUBLIC KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -212,9 +212,9 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem', | |||
| 212 | 212 | { private: fixtures.readKey('x25519_private.pem', 'ascii'), | |
| 213 | 213 | public: fixtures.readKey('x25519_public.pem', 'ascii'), | |
| 214 | 214 | keyType: 'x25519' }, | |
| 215 | - { private: fixtures.readSync('test_x448_privkey.pem', 'ascii'), | ||
| 216 | - public: fixtures.readSync('test_x448_pubkey.pem', 'ascii'), | ||
| 217 | - keyType: 'x448' } | ||
| 215 | + { private: fixtures.readKey('x448_private.pem', 'ascii'), | ||
| 216 | + public: fixtures.readKey('x448_public.pem', 'ascii'), | ||
| 217 | + keyType: 'x448' }, | ||
| 218 | 218 | ].forEach((info) => { | |
| 219 | 219 | const keyType = info.keyType; | |
| 220 | 220 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments