-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21299e4
commit aed8583
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |