Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JoepdeJong committed Oct 3, 2024
1 parent 21299e4 commit aed8583
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# passes

Wallet passes integration

## Convery key to legacy

Make sure to convert the apple key to AES-256-CBC:
https://stackoverflow.com/a/72600724/4858692

```sh
# in 3.x.x
openssl pkcs12 -in old -nodes -provider legacy -provider default -out temp && openssl pkcs12 -in temp -export -out new
# or simpler
openssl pkcs12 -in old -nodes -legacy -out temp && openssl pkcs12 -in temp -export -out new

# in 1.x.x
openssl pkcs12 -in old -nodes -out temp && openssl pkcs12 -in temp -export -descert -out new
```

0 comments on commit aed8583

Please sign in to comment.