| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -62,6 +62,8 @@ all: \ | |||
| 62 | 62 | ed25519_public.pem \ | |
| 63 | 63 | x25519_private.pem \ | |
| 64 | 64 | x25519_public.pem \ | |
| 65 | + ed448_private.pem \ | ||
| 66 | + ed448_public.pem \ | ||
| 65 | 67 | ||
| 66 | 68 | # | |
| 67 | 69 | # Create Certificate Authority: ca1 | |
@@ -674,6 +676,12 @@ x25519_private.pem: | |||
| 674 | 676 | x25519_public.pem: x25519_private.pem | |
| 675 | 677 | openssl pkey -in x25519_private.pem -pubout -out x25519_public.pem | |
| 676 | 678 | ||
| 679 | + ed448_private.pem: | ||
| 680 | + openssl genpkey -algorithm ed448 -out ed448_private.pem | ||
| 681 | + | ||
| 682 | + ed448_public.pem: ed448_private.pem | ||
| 683 | + openssl pkey -in ed448_private.pem -pubout -out ed448_public.pem | ||
| 684 | + | ||
| 677 | 685 | clean: | |
| 678 | 686 | rm -f *.pfx *.pem *.srl ca2-database.txt ca2-serial fake-startcom-root-serial *.print *.old fake-startcom-root-issued-certs/*.pem | |
| 679 | 687 | @> fake-startcom-root-database.txt | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,4 @@ | |||
| 1 | + -----BEGIN PRIVATE KEY----- | ||
| 2 | + MEcCAQAwBQYDK2VxBDsEOdOtCnu9bDdBqSHNNZ5xoDA5KdLBTUNPcKFaOADNX32s | ||
| 3 | + dfpo52pCtPqfku/l3/OfUHsF43EfZsaaWA== | ||
| 4 | + -----END PRIVATE KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,4 @@ | |||
| 1 | + -----BEGIN PUBLIC KEY----- | ||
| 2 | + MEMwBQYDK2VxAzoAoX/ee5+jlcU53+BbGRsGIzly0V+SZtJ/oGXY0udf84q2hTW2 | ||
| 3 | + RdstLktvwpkVJOoNb7oDgc2V5ZUA | ||
| 4 | + -----END PUBLIC KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -206,8 +206,8 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem', | |||
| 206 | 206 | { private: fixtures.readKey('ed25519_private.pem', 'ascii'), | |
| 207 | 207 | public: fixtures.readKey('ed25519_public.pem', 'ascii'), | |
| 208 | 208 | keyType: 'ed25519' }, | |
| 209 | - { private: fixtures.readSync('test_ed448_privkey.pem', 'ascii'), | ||
| 210 | - public: fixtures.readSync('test_ed448_pubkey.pem', 'ascii'), | ||
| 209 | + { private: fixtures.readKey('ed448_private.pem', 'ascii'), | ||
| 210 | + public: fixtures.readKey('ed448_public.pem', 'ascii'), | ||
| 211 | 211 | keyType: 'ed448' }, | |
| 212 | 212 | { private: fixtures.readKey('x25519_private.pem', 'ascii'), | |
| 213 | 213 | public: fixtures.readKey('x25519_public.pem', 'ascii'), | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -422,8 +422,8 @@ common.expectsError( | |||
| 422 | 422 | public: fixtures.readKey('ed25519_public.pem', 'ascii'), | |
| 423 | 423 | algo: null, | |
| 424 | 424 | sigLen: 64 }, | |
| 425 | - { private: fixtures.readSync('test_ed448_privkey.pem', 'ascii'), | ||
| 426 | - public: fixtures.readSync('test_ed448_pubkey.pem', 'ascii'), | ||
| 425 | + { private: fixtures.readKey('ed448_private.pem', 'ascii'), | ||
| 426 | + public: fixtures.readKey('ed448_public.pem', 'ascii'), | ||
| 427 | 427 | algo: null, | |
| 428 | 428 | sigLen: 114 }, | |
| 429 | 429 | { private: fixtures.readKey('rsa_private_2048.pem', 'ascii'), | |
| Back | FazBrowse Home | New Git URL |
0 commit comments