This is a search engine friendly CGI program that outputs help documents.
The LufDoc (Live User Fed Documentation) comment system will be implemented soon.

PSP Help Doc Indexer System

(Version 1.4.1)


Declaration:

function web_xor_crypt(const str: string; key: byte): string;

Arguments:

str Source/encrypted string
key Encryption key

Description:

Encrypts or decrypts a string using classic XOR algorithm with given key.

Returns:

XORed string.

Usage:

key := 128;
s := 'Secret';
t := web_xor_crypt(s, key);
if s <> web_xor_crypt(t, key) then web_throw_error('XOR error');

PSP Help documents