Skip to content

Commit aed8583

Browse files
committed
Update readme
1 parent 21299e4 commit aed8583

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
# passes
2+
23
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

Comments
 (0)