PeopleSoft 使用 GnuPG

PeopleCode

Exec使用指令

1
2
3
4
&ExitCode = Exec(&commandline, %FilePath_Absolute);
If &ExitCode <> 0 Then
MessageBox(0, “”””, 0, 0, (“”Script was not Successful! Exit code returned by script was “” | &ExitCode));
End-If;

安裝GnuPG

Download

建立PGP Key

1
gpg --full-generate-key」

匯出Public key

1
gpg --export -a "UserID" > "OutputFile"

匯入Public key

1
gpg --import "InputFile"