This class implements a password-protected input stream. The algorithm used
for protection is a Vigenere (repeated-key) cipher. The encrypted data is the
result of XOR KEYKEYKEY...
public PasswordProtectedInputStream(InputStream in, byte[] password)(Code)
Constructs a new instance of the receiver.
Parameters: in - The actual input stream where to read the bytes from. Parameters: password - The password bytes to use to decrypt the input bytes