May 1998
Intermediate to advanced
469 pages
14h 57m
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.
public class javax.crypto.NullCipher
extends javax.crypto.Cipher {
// Constructors
public NullCipher();
}
Cipher