This commit is contained in:
swrup 2025-11-02 16:00:26 +01:00
parent cba8ce5e6d
commit 8f08d42fb9
4 changed files with 10 additions and 2 deletions

10
README.md Normal file
View file

@ -0,0 +1,10 @@
# MTE - the MirageOS Taler Exchange
build steps:
$ mirage configure -f unikernel/config.ml -t unix
$ gen_tls.sh foo
$ make

0
data/tls/keys/.gitkeep Normal file
View file

2
gen_tls.sh Normal file → Executable file
View file

@ -2,6 +2,4 @@
hostname="${2:-localhost}"
mkdir data/tls/keys
mkdir data/tls/certificates
openssl req -x509 -newkey rsa:4096 -keyout data/tls/keys/$1 -out data/tls/certificates/$1 -sha256 -days 365 -subj "/CN=$hostname" -nodes