This tutorial goes through how to install openssl 1.1.1 on CentOS 7, since the yum repo only installs up to openssl 1.0.
Upgrade the system
yum -y update
| void main() { | |
| for (int i = 0; i < 5; i++) { | |
| print('hello ${i + 1}'); | |
| } | |
| var bike = new Bicycle(2, 1); | |
| print(bike); | |
| bike.applyBrake(1); | |
| print(bike); | |
| bike.speedUp(8); | |
| print(bike); |
| #!/bin/sh | |
| # | |
| # Following two commands required | |
| # jq -- https://stedolan.github.io/jq/ # or brew install jq | |
| # base64 -- https://www.fourmilab.ch/webtools/base64/ # or brew install base64 | |
| curl -s -O https://vc.vrs.digital.go.jp/issuer/.well-known/jwks.json | |
| jq '.keys[0]["x5c"][0]' < jwks.json | sed -e s/\"//g > issuer.der.base64url | |
| jq '.keys[0]["x5c"][1]' < jwks.json | sed -e s/\"//g > ca.der.base64url |
| Android TestDemo |