mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
10 lines
480 B
Bash
10 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
|