We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b53d4 commit 135cc88Copy full SHA for 135cc88
.gitignore
@@ -1 +1,2 @@
1
.idea/
2
+BearSSL
create_trustAnchors.sh
@@ -0,0 +1,9 @@
+rm -rf BearSSL #remove old trash
+git clone https://www.bearssl.org/git/BearSSL
3
+cd BearSSL
4
+curl -L https://curl.se/ca/cacert.pem -o cacert.pem
5
+make
6
+chmod +x build/brssl
7
+./build/brssl ta cacert.pem > ../src/BearSSLTrustAnchors.h
8
+cd ..
9
+rm -rf BearSSL
0 commit comments