Javax.Crypto.CipherInputStream Class
This class wraps an InputStream and a cipher so that read() methods return data that are read from the underlying InputStream and processed by the cipher.

See Also: CipherInputStream Members

Syntax

[Android.Runtime.Register("javax/crypto/CipherInputStream", DoNotGenerateAcw=true)]
public class CipherInputStream : Java.IO.FilterInputStream

Remarks

This class wraps an InputStream and a cipher so that read() methods return data that are read from the underlying InputStream and processed by the cipher.

The cipher must be initialized for the requested operation before being used by a CipherInputStream. For example, if a cipher initialized for decryption is used with a CipherInputStream, the CipherInputStream tries to read the data an decrypt them before returning.

[Android Documentation]

Requirements

Namespace: Javax.Crypto
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1