| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,4 @@ | |||
| 1 | + * -text | ||
| 2 | + | ||
| 3 | + Makefile text | ||
| 4 | + *.cnf text | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,6 +43,8 @@ all: \ | |||
| 43 | 43 | rsa_pss_public_2048.pem \ | |
| 44 | 44 | rsa_pss_public_2048_sha256_sha256_16.pem \ | |
| 45 | 45 | rsa_pss_public_2048_sha512_sha256_20.pem \ | |
| 46 | + ed25519_private.pem \ | ||
| 47 | + ed25519_public.pem \ | ||
| 46 | 48 | ||
| 47 | 49 | # | |
| 48 | 50 | # Create Certificate Authority: ca1 | |
@@ -598,6 +600,12 @@ rsa_pss_public_2048_sha256_sha256_16.pem: rsa_pss_private_2048_sha256_sha256_16. | |||
| 598 | 600 | rsa_pss_public_2048_sha512_sha256_20.pem: rsa_pss_private_2048_sha512_sha256_20.pem | |
| 599 | 601 | openssl pkey -in rsa_pss_private_2048_sha512_sha256_20.pem -pubout -out rsa_pss_public_2048_sha512_sha256_20.pem | |
| 600 | 602 | ||
| 603 | + ed25519_private.pem: | ||
| 604 | + openssl genpkey -algorithm ED25519 -out ed25519_private.pem | ||
| 605 | + | ||
| 606 | + ed25519_public.pem: ed25519_private.pem | ||
| 607 | + openssl pkey -in ed25519_private.pem -pubout -out ed25519_public.pem | ||
| 608 | + | ||
| 601 | 609 | clean: | |
| 602 | 610 | rm -f *.pfx *.pem *.srl ca2-database.txt ca2-serial fake-startcom-root-serial *.print *.old fake-startcom-root-issued-certs/*.pem | |
| 603 | 611 | @> fake-startcom-root-database.txt | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,3 @@ | |||
| 1 | + -----BEGIN PRIVATE KEY----- | ||
| 2 | + MC4CAQAwBQYDK2VwBCIEIMFSujN0jIUIdzSvuxka0lfgVVkMdRTuaVvIYUHrvzXQ | ||
| 3 | + -----END PRIVATE KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,3 @@ | |||
| 1 | + -----BEGIN PUBLIC KEY----- | ||
| 2 | + MCowBQYDK2VwAyEAK1wIouqnuiA04b3WrMa+xKIKIpfHetNZRv3h9fBf768= | ||
| 3 | + -----END PUBLIC KEY----- | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -203,8 +203,8 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem', | |||
| 203 | 203 | } | |
| 204 | 204 | ||
| 205 | 205 | [ | |
| 206 | - { private: fixtures.readSync('test_ed25519_privkey.pem', 'ascii'), | ||
| 207 | - public: fixtures.readSync('test_ed25519_pubkey.pem', 'ascii'), | ||
| 206 | + { private: fixtures.readKey('ed25519_private.pem', 'ascii'), | ||
| 207 | + public: fixtures.readKey('ed25519_public.pem', 'ascii'), | ||
| 208 | 208 | keyType: 'ed25519' }, | |
| 209 | 209 | { private: fixtures.readSync('test_ed448_privkey.pem', 'ascii'), | |
| 210 | 210 | public: fixtures.readSync('test_ed448_pubkey.pem', 'ascii'), | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -418,8 +418,8 @@ common.expectsError( | |||
| 418 | 418 | } | |
| 419 | 419 | ||
| 420 | 420 | [ | |
| 421 | - { private: fixtures.readSync('test_ed25519_privkey.pem', 'ascii'), | ||
| 422 | - public: fixtures.readSync('test_ed25519_pubkey.pem', 'ascii'), | ||
| 421 | + { private: fixtures.readKey('ed25519_private.pem', 'ascii'), | ||
| 422 | + public: fixtures.readKey('ed25519_public.pem', 'ascii'), | ||
| 423 | 423 | algo: null, | |
| 424 | 424 | sigLen: 64 }, | |
| 425 | 425 | { private: fixtures.readSync('test_ed448_privkey.pem', 'ascii'), | |
| Back | FazBrowse Home | New Git URL |
0 commit comments