X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=des%2Fdes.h;fp=des%2Fdes.h;h=53de98a1a8091c6c585f7cc479c0d8ee7266d949;hb=5120e1b9ade92d8b8c44e8b4609ebc859140aa02;hp=082de13084e0366579dc9ba595bdd2d5b85b986d;hpb=8abb80e1fe152be6d95d3fa2967789ba3238d695;p=avr-crypto-lib.git diff --git a/des/des.h b/des/des.h index 082de13..53de98a 100644 --- a/des/des.h +++ b/des/des.h @@ -46,7 +46,7 @@ * * This function encrypts a block of 64 bits (8 bytes) with the DES algorithm. * Key expansion is done automatically. The key is 64 bits long, but note that - * only 56 bits are used (the LSB of each byte is droped). The input and output + * only 56 bits are used (the LSB of each byte is dropped). The input and output * blocks may overlap. * * \param out pointer to the block (64 bit = 8 byte) where the ciphertext is written to @@ -60,7 +60,7 @@ void des_enc(void* out, const void* in, const void* key); * * This function decrypts a block of 64 bits (8 bytes) with the DES algorithm. * Key expansion is done automatically. The key is 64 bits long, but note that - * only 56 bits are used (the LSB of each byte is droped). The input and output + * only 56 bits are used (the LSB of each byte is dropped). The input and output * blocks may overlap. * * \param out pointer to the block (64 bit = 8 byte) where the plaintext is written to @@ -74,7 +74,7 @@ void des_dec(void* out, const void* in, const void* key); * * This function encrypts a block of 64 bits (8 bytes) with the Tripple-DES (EDE) * algorithm. Key expansion is done automatically. The key is 192 bits long, but - * note that only 178 bits are used (the LSB of each byte is droped). The input + * note that only 178 bits are used (the LSB of each byte is dropped). The input * and output blocks may overlap. * * \param out pointer to the block (64 bit = 8 byte) where the ciphertext is written to @@ -88,7 +88,7 @@ void tdes_enc(void* out, const void* in, const void* key); * * This function decrypts a block of 64 bits (8 bytes) with the Tripple-DES (EDE) * algorithm. Key expansion is done automatically. The key is 192 bits long, but - * note that only 178 bits are used (the LSB of each byte is droped). The input + * note that only 178 bits are used (the LSB of each byte is dropped). The input * and output blocks may overlap. * * \param out pointer to the block (64 bit = 8 byte) where the plaintext is written to