Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Unified Diff: srtp/crypto/include/aes_icm.h

Issue 936663005: Land https://codereview.chromium.org/889083003/ to update libsrtp to upstream 1.5.0 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libsrtp/
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « srtp/crypto/include/aes_gcm_ossl.h ('k') | srtp/crypto/include/aes_icm_ossl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: srtp/crypto/include/aes_icm.h
===================================================================
--- srtp/crypto/include/aes_icm.h (revision 294174)
+++ srtp/crypto/include/aes_icm.h (working copy)
@@ -7,6 +7,7 @@
* Cisco Systems, Inc.
*
*/
+
/*
*
* Copyright (c) 2001-2006, Cisco Systems, Inc.
@@ -64,7 +65,7 @@
int key_len);
err_status_t
-aes_icm_set_iv(aes_icm_ctx_t *c, void *iv);
+aes_icm_set_iv(aes_icm_ctx_t *c, void *iv, int direction);
err_status_t
aes_icm_encrypt(aes_icm_ctx_t *c,
@@ -72,7 +73,7 @@
err_status_t
aes_icm_output(aes_icm_ctx_t *c,
- unsigned char *buf, int bytes_to_output);
+ unsigned char *buf, unsigned int bytes_to_output);
err_status_t
aes_icm_dealloc(cipher_t *c);
@@ -88,5 +89,8 @@
int key_len,
int forIsmacryp);
+uint16_t
+aes_icm_bytes_encrypted(aes_icm_ctx_t *c);
+
#endif /* AES_ICM_H */
« no previous file with comments | « srtp/crypto/include/aes_gcm_ossl.h ('k') | srtp/crypto/include/aes_icm_ossl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698