mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
11 lines
480 B
Bash
11 lines
480 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
security create-keychain -p "" simplex.keychain
|
||
|
security set-keychain-settings -u simplex.keychain
|
||
|
security add-certificates -k simplex.keychain "Developer ID Application: SimpleX Chat Ltd (5NN7GUYB6T).cer"
|
||
|
security add-certificates -k simplex.keychain "Developer ID Certification Authority.cer"
|
||
|
# Private key with access from any app
|
||
|
security import "SimpleX Chat.p12" -P "" -k simplex.keychain -A
|
||
|
# Public key
|
||
|
security import "SimpleX Chat.pem" -k simplex.keychain
|