We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21299e4 commit aed8583Copy full SHA for aed8583
README.md
@@ -1,2 +1,18 @@
1
# passes
2
+
3
Wallet passes integration
4
5
+## Convery key to legacy
6
7
+Make sure to convert the apple key to AES-256-CBC:
8
+https://stackoverflow.com/a/72600724/4858692
9
10
+```sh
11
+# in 3.x.x
12
+openssl pkcs12 -in old -nodes -provider legacy -provider default -out temp && openssl pkcs12 -in temp -export -out new
13
+# or simpler
14
+openssl pkcs12 -in old -nodes -legacy -out temp && openssl pkcs12 -in temp -export -out new
15
16
+# in 1.x.x
17
+openssl pkcs12 -in old -nodes -out temp && openssl pkcs12 -in temp -export -descert -out new
18
+```
0 commit comments