Documentation ¶
Overview ¶
Infinite Garble Extension (IGE) mode.
IGE is similar to cipher block chaining (CBC) mode:
1) like in CBC, the plaintext is XORed, before encryption, with the previous ciphertext;
2) unlike in CBC, after going through the block cipher, the result is also XORed with the previous plaintext.
For the first block, the corresponding inputs are taken from the IV, which must be twice the block size.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewIGEDecrypter ¶
NewIGEDecrypter returns a BlockMode which decrypts in cipher block chaining mode, using the given Block. The length of iv must be the same as the Block's block size and must match the iv used to encrypt the data.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.