Non-darwin KeychainUnlocker stub returns errors instead of panicking (closes #7) #12

Merged
sneak merged 2 commits from clawbot/secret:fix/issue-7 into main 2026-02-09 02:20:14 +01:00
Showing only changes of commit 51fb2805fd - Show all commits

View File

@ -68,6 +68,11 @@ func DecryptWithIdentity(data []byte, identity age.Identity) (*memguard.LockedBu
// Create a secure buffer for the decrypted data
resultBuffer := memguard.NewBufferFromBytes(result)
// Zero out the original slice to prevent plaintext from lingering in unprotected memory
for i := range result {
result[i] = 0
}
return resultBuffer, nil
}