Public/Restart-GpgAgent.ps1

function Restart-GpgAgent {
    process {
        gpgconf --kill gpg-agent
        gpgconf --launch gpg-agent
    }
}