-
Notifications
You must be signed in to change notification settings - Fork 3
docs: installation #94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
tahmidrahman-dsi
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. 👍🏼
|
Should we put id reader realated form configuration changes documented in this repo under |
|
@tahmidrahman-dsi You can either directly add them to Gitbook, or amend this pull request under |
I dont think they would throw as the verifyNid API is called on-demand and the file is opened on demand in MOSIPAuthenticator
|
Some non-obvious documentation things:
|
Please feel free to have a look @naftis https://app.gitbook.com/o/zub8C4BetmW3a9Bj4Cd4/s/esn2q91OsFQf7ZqR8thb/~/revisions/UpoFPVYrQo17nWTN7grd/setup/3.-installation/3.2-set-up-your-own-country-configuration/3.2.5-set-up-application-settings#id-1.-prepare-global-functional-settings The PR opencrvs/documentation#21 |
Certificateskeystore.p12
ida-partner.crt
esignet-jwk.txt
Instructions for Linux / Mac / WSL
You might want to save this to a secure trusted place For OpenCRVS
python3 -c "from jwcrypto import jwk; k = jwk.JWK.from_pem(open('private_key.pem','rb').read()); k.use = 'sig'; k.alg = 'RS256'; print(k.export(private_key=True))" | base64For MOSIP
python3 -c "from jwcrypto import jwk; k = jwk.JWK.from_pem(open('private_key.pem','rb').read()); k.use = 'sig'; k.alg = 'RS256'; print(k.export(private_key=False))" |
Initial installation documentation. I added it here for starters, we will probably move these to Gitbook.