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

📄 aes_icm.c

📁 很好用的安全RTP开源库
💻 C
📖 第 1 页 / 共 2 页
字号:
err_status_taes_icm_set_iv(aes_icm_ctx_t *c, void *iv) {  v128_t *nonce = iv;  debug_print(mod_aes_icm, 	      "setting iv: %s", v128_hex_string(nonce));    v128_xor(&c->counter, &c->offset, nonce);    debug_print(mod_aes_icm, 	      "set_counter: %s", v128_hex_string(&c->counter));   /* indicate that the keystream_buffer is empty */  c->bytes_in_buffer = 0;  return err_status_ok;}/* * aes_icm_advance(...) refills the keystream_buffer and * advances the block index of the sicm_context forward by one * * this is an internal, hopefully inlined function */  inline voidaes_icm_advance_ismacryp(aes_icm_ctx_t *c, uint8_t forIsmacryp) {  /* fill buffer with new keystream */  v128_copy(&c->keystream_buffer, &c->counter);  aes_encrypt(&c->keystream_buffer, c->expanded_key);  c->bytes_in_buffer = sizeof(v128_t);  debug_print(mod_aes_icm, "counter:    %s", 	      v128_hex_string(&c->counter));  debug_print(mod_aes_icm, "ciphertext: %s", 	      v128_hex_string(&c->keystream_buffer));        /* clock counter forward */  if (forIsmacryp) {    uint32_t temp;        //alex's clock counter forward    temp = ntohl(c->counter.v32[3]);    c->counter.v32[3] = htonl(++temp);  } else {    if (!++(c->counter.v8[15]))       ++(c->counter.v8[14]);  }}inline void aes_icm_advance(aes_icm_ctx_t *c) {  aes_icm_advance_ismacryp(c, 0);}/*e * icm_encrypt deals with the following cases: * * bytes_to_encr < bytes_in_buffer *  - add keystream into data * * bytes_to_encr > bytes_in_buffer *  - add keystream into data until keystream_buffer is depleted *  - loop over blocks, filling keystream_buffer and then *    adding keystream into data *  - fill buffer then add in remaining (< 16) bytes of keystream  */err_status_taes_icm_encrypt_ismacryp(aes_icm_ctx_t *c,              unsigned char *buf, unsigned int *enc_len,               int forIsmacryp) {  unsigned int bytes_to_encr = *enc_len;  int i;  uint32_t *b;  /* check that there's enough segment left but not for ismacryp*/  if (!forIsmacryp && (bytes_to_encr + htons(c->counter.v16[7])) > 0xffff)    return err_status_terminus; debug_print(mod_aes_icm, "block index: %d",            htons(c->counter.v16[7]));  if (bytes_to_encr <= c->bytes_in_buffer) {        /* deal with odd case of small bytes_to_encr */    for (i = (sizeof(v128_t) - c->bytes_in_buffer);		 i < (sizeof(v128_t) - c->bytes_in_buffer + bytes_to_encr); i++) 	{      *buf++ ^= c->keystream_buffer.v8[i];	}    c->bytes_in_buffer -= bytes_to_encr;    /* return now to avoid the main loop */    return err_status_ok;  } else {        /* encrypt bytes until the remaining data is 16-byte aligned */        for (i=(sizeof(v128_t) - c->bytes_in_buffer); i < sizeof(v128_t); i++)       *buf++ ^= c->keystream_buffer.v8[i];    bytes_to_encr -= c->bytes_in_buffer;    c->bytes_in_buffer = 0;  }    /* now loop over entire 16-byte blocks of keystream */  for (i=0; i < (bytes_to_encr/sizeof(v128_t)); i++) {    /* fill buffer with new keystream */    aes_icm_advance_ismacryp(c, forIsmacryp);    /*     * add keystream into the data buffer (this would be a lot faster     * if we could assume 32-bit alignment!)     */#if ALIGN_32    b = (uint32_t *)buf;    *b++ ^= c->keystream_buffer.v32[0];    *b++ ^= c->keystream_buffer.v32[1];    *b++ ^= c->keystream_buffer.v32[2];    *b++ ^= c->keystream_buffer.v32[3];    buf = (uint8_t *)b;#else        if ((((unsigned long) buf) & 0x03) != 0) {      *buf++ ^= c->keystream_buffer.v8[0];      *buf++ ^= c->keystream_buffer.v8[1];      *buf++ ^= c->keystream_buffer.v8[2];      *buf++ ^= c->keystream_buffer.v8[3];      *buf++ ^= c->keystream_buffer.v8[4];      *buf++ ^= c->keystream_buffer.v8[5];      *buf++ ^= c->keystream_buffer.v8[6];      *buf++ ^= c->keystream_buffer.v8[7];      *buf++ ^= c->keystream_buffer.v8[8];      *buf++ ^= c->keystream_buffer.v8[9];      *buf++ ^= c->keystream_buffer.v8[10];      *buf++ ^= c->keystream_buffer.v8[11];      *buf++ ^= c->keystream_buffer.v8[12];      *buf++ ^= c->keystream_buffer.v8[13];      *buf++ ^= c->keystream_buffer.v8[14];      *buf++ ^= c->keystream_buffer.v8[15];    } else {      b = (uint32_t *)buf;      *b++ ^= c->keystream_buffer.v32[0];      *b++ ^= c->keystream_buffer.v32[1];      *b++ ^= c->keystream_buffer.v32[2];      *b++ ^= c->keystream_buffer.v32[3];      buf = (uint8_t *)b;    }#endif /* #if ALIGN_32 */  }    /* if there is a tail end of the data, process it */  if ((bytes_to_encr & 0xf) != 0) {        /* fill buffer with new keystream */    aes_icm_advance_ismacryp(c, forIsmacryp);        for (i=0; i < (bytes_to_encr & 0xf); i++)      *buf++ ^= c->keystream_buffer.v8[i];        /* reset the keystream buffer size to right value */    c->bytes_in_buffer = sizeof(v128_t) - i;    } else {    /* no tail, so just reset the keystream buffer size to zero */    c->bytes_in_buffer = 0;  }  return err_status_ok;}err_status_taes_icm_encrypt(aes_icm_ctx_t *c, unsigned char *buf, unsigned int *enc_len) {  return aes_icm_encrypt_ismacryp(c, buf, enc_len, 0);}err_status_taes_icm_output(aes_icm_ctx_t *c, uint8_t *buffer, int num_octets_to_output) {  unsigned int len = num_octets_to_output;    /* zeroize the buffer */  octet_string_set_to_zero(buffer, num_octets_to_output);    /* exor keystream into buffer */  return aes_icm_encrypt(c, buffer, &len);}char aes_icm_description[] = "aes integer counter mode";uint8_t aes_icm_test_case_0_key[30] = {  0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,  0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c,  0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,  0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd};uint8_t aes_icm_test_case_0_nonce[16] = {  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};uint8_t aes_icm_test_case_0_plaintext[32] =  {  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, };uint8_t aes_icm_test_case_0_ciphertext[32] = {  0xe0, 0x3e, 0xad, 0x09, 0x35, 0xc9, 0x5e, 0x80,  0xe1, 0x66, 0xb1, 0x6d, 0xd9, 0x2b, 0x4e, 0xb4,  0xd2, 0x35, 0x13, 0x16, 0x2b, 0x02, 0xd0, 0xf7,  0x2a, 0x43, 0xa2, 0xfe, 0x4a, 0x5f, 0x97, 0xab};cipher_test_case_t aes_icm_test_case_0 = {  30,                                    /* octets in key            */  aes_icm_test_case_0_key,               /* key                      */  aes_icm_test_case_0_nonce,             /* packet index             */  32,                                    /* octets in plaintext      */  aes_icm_test_case_0_plaintext,         /* plaintext                */  32,                                    /* octets in ciphertext     */  aes_icm_test_case_0_ciphertext,        /* ciphertext               */  NULL                                   /* pointer to next testcase */};/* * note: the encrypt function is identical to the decrypt function */cipher_type_t aes_icm = {  (cipher_alloc_func_t)          aes_icm_alloc,  (cipher_dealloc_func_t)        aes_icm_dealloc,    (cipher_init_func_t)           aes_icm_context_init,  (cipher_encrypt_func_t)        aes_icm_encrypt,  (cipher_decrypt_func_t)        aes_icm_encrypt,  (cipher_set_iv_func_t)         aes_icm_set_iv,  (char *)                       aes_icm_description,  (int)                          0,   /* instance count */  (cipher_test_case_t *)        &aes_icm_test_case_0,  (debug_module_t *)            &mod_aes_icm};

⌨️ 快捷键说明

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