Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changes/keychain-import-pkcs12-format.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri-macos-sign": patch:bug
---

Fixed importing a signing certificate failing with `MAC verification failed during PKCS12 import` for p12 files that use modern PBES2/AES encryption.
1 change: 1 addition & 0 deletions crates/tauri-macos-sign/src/keychain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ impl Keychain {
Command::new("security")
.arg("import")
.arg(cert_path)
.args(["-f", "pkcs12"])
.arg("-P")
.arg(certificate_password)
.args([
Expand Down