P
PeterWokke
Guest
encryptCharacter.p define input parameter pcToEncrypt as character no-undo. define output parameter pcEncrypted as character no-undo. define variable rKey as raw no-undo. define variable lcEncoded as longchar no-undo. rKey = generate-pbe-key("Progress"). lcEncoded = base64-encode( encrypt( pcToEncrypt, rkey ) ). pcEncrypted = string(lcEncoded).
Continue reading...
Continue reading...