May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class javax.crypto.NullCipher
As its name implies, null cipher is a cipher that does nothing. You can use it to test cryptographic programs. Since a null cipher performs no transformations, its ciphertext will be exactly the same as its plaintext. Note that it is not an engine; you simply instantiate it directly.
public class javax.crypto.NullCipher
extends javax.crypto.Cipher {
// Constructors
public NullCipher( );
}
Cipher
|
Read now
Unlock full access