Skip to content

Commit cffbb86

Browse files
committed
WIP
1 parent c72e9c6 commit cffbb86

File tree

1 file changed

+11
-0
lines changed
  • public/content/developers/tutorials/ethereum-for-web2-auth

1 file changed

+11
-0
lines changed

public/content/developers/tutorials/ethereum-for-web2-auth/index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,17 @@ Because of the decentralized nature of Ethereum, any user can make attestations.
8686

8787
## Setup
8888

89+
Create keys with self-signed certificates.
90+
91+
See https://docs.openssl.org/master/man1/openssl-req/ .
92+
93+
```sh
94+
mkdir keys
95+
cd keys
96+
openssl req -new -x509 -days 365 -nodes -sha256 -out saml-sp.crt -keyout saml-sp.pem -subj /CN=sp/
97+
openssl req -new -x509 -days 365 -nodes -sha256 -out saml-idp.crt -keyout saml-idp.pem -subj /CN=idp/
98+
cd ..
99+
```
89100

90101
1. Introduction: Why do this?
91102
1. SAML for Ethereum people

0 commit comments

Comments
 (0)