⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cbc.c

📁 NIST推荐的素域上的椭圆曲线
💻 C
字号:
#include "mycrypt.h"#ifdef CBCint cbc_start(int cipher, const unsigned char *IV, const unsigned char *key,               int keylen, int num_rounds, symmetric_CBC *cbc){   int x, errno;    _ARGCHK(IV != NULL);   _ARGCHK(key != NULL);   _ARGCHK(cbc != NULL);   /* bad param? */   if ((errno = cipher_is_valid(cipher)) != CRYPT_OK) {      return errno;   }   /* setup cipher */   if ((errno = cipher_descriptor[cipher].setup(key, keylen, num_rounds, &cbc->key)) != CRYPT_OK) {      return errno;   }   /* copy IV */   cbc->blocklen = cipher_descriptor[cipher].block_length;   cbc->cipher   = cipher;   for (x = 0; x < cbc->blocklen; x++) {       cbc->IV[x] = IV[x];   }   return CRYPT_OK;}int cbc_encrypt(const unsigned char *pt, unsigned char *ct, symmetric_CBC *cbc){   int x, errno;   unsigned char tmp[MAXBLOCKSIZE];   _ARGCHK(pt != NULL);   _ARGCHK(ct != NULL);   _ARGCHK(cbc != NULL);   if ((errno = cipher_is_valid(cbc->cipher)) != CRYPT_OK) {       return errno;   }   /* xor IV against plaintext */   for (x = 0; x < cbc->blocklen; x++) {       tmp[x] = pt[x] ^ cbc->IV[x];   }   /* encrypt */   cipher_descriptor[cbc->cipher].ecb_encrypt(tmp, ct, &cbc->key);   /* store IV [ciphertext] for a future block */   for (x = 0; x < cbc->blocklen; x++) {       cbc->IV[x] = ct[x];   }   #ifdef CLEAN_STACK      zeromem(tmp, sizeof(tmp));   #endif   return CRYPT_OK;}int cbc_decrypt(const unsigned char *ct, unsigned char *pt, symmetric_CBC *cbc){   int x, errno;   unsigned char tmp[MAXBLOCKSIZE], tmp2[MAXBLOCKSIZE];   _ARGCHK(pt != NULL);   _ARGCHK(ct != NULL);   _ARGCHK(cbc != NULL);   /* decrypt the block from ct into tmp */   if ((errno = cipher_is_valid(cbc->cipher)) != CRYPT_OK) {       return errno;   }   cipher_descriptor[cbc->cipher].ecb_decrypt(ct, tmp, &cbc->key);   /* xor IV against the plaintext of the previous step */   for (x = 0; x < cbc->blocklen; x++) {        /* copy CT in case ct == pt */       tmp2[x] = ct[x];        /* actually decrypt the byte */       pt[x] = tmp[x] ^ cbc->IV[x];    }   /* replace IV with this current ciphertext */    for (x = 0; x < cbc->blocklen; x++) {       cbc->IV[x] = tmp2[x];   }   #ifdef CLEAN_STACK      zeromem(tmp, sizeof(tmp));      zeromem(tmp2, sizeof(tmp2));   #endif   return CRYPT_OK;}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -