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

Unified Diff: net/net.gyp

Issue 12623017: Add Aes128GcmEncrypter and Aes128GcmDecrypter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add a stub NSS-based implementation. Skip tests if AES GCM is not supported. Created 7 years, 9 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
Index: net/net.gyp
===================================================================
--- net/net.gyp (revision 187740)
+++ net/net.gyp (working copy)
@@ -696,6 +696,12 @@
'quic/congestion_control/tcp_cubic_sender.h',
'quic/congestion_control/tcp_receiver.cc',
'quic/congestion_control/tcp_receiver.h',
+ 'quic/crypto/aes_128_gcm_decrypter.h',
+ 'quic/crypto/aes_128_gcm_decrypter_nss.cc',
+ 'quic/crypto/aes_128_gcm_decrypter_openssl.cc',
+ 'quic/crypto/aes_128_gcm_encrypter.h',
+ 'quic/crypto/aes_128_gcm_encrypter_nss.cc',
+ 'quic/crypto/aes_128_gcm_encrypter_openssl.cc',
'quic/crypto/crypto_framer.cc',
'quic/crypto/crypto_framer.h',
'quic/crypto/crypto_handshake.cc',
@@ -720,6 +726,7 @@
'quic/crypto/quic_encrypter.h',
'quic/crypto/quic_random.cc',
'quic/crypto/quic_random.h',
+ 'quic/crypto/scoped_evp_cipher_ctx.h',
'quic/quic_bandwidth.cc',
'quic/quic_bandwidth.h',
'quic/quic_blocked_writer_interface.h',
@@ -1096,6 +1103,8 @@
'socket/ssl_client_socket_nss.h',
'socket/ssl_server_socket_nss.cc',
'socket/ssl_server_socket_nss.h',
+ 'quic/crypto/aes_128_gcm_decrypter_nss.cc',
+ 'quic/crypto/aes_128_gcm_encrypter_nss.cc',
'quic/crypto/p256_key_exchange_nss.cc',
'third_party/mozilla_security_manager/nsKeygenHandler.cpp',
'third_party/mozilla_security_manager/nsKeygenHandler.h',
@@ -1121,7 +1130,10 @@
'base/x509_certificate_openssl.cc',
'base/x509_util_openssl.cc',
'base/x509_util_openssl.h',
+ 'quic/crypto/aes_128_gcm_decrypter_openssl.cc',
+ 'quic/crypto/aes_128_gcm_encrypter_openssl.cc',
'quic/crypto/p256_key_exchange_openssl.cc',
+ 'quic/crypto/scoped_evp_cipher_ctx.h',
'socket/ssl_client_socket_openssl.cc',
'socket/ssl_client_socket_openssl.h',
'socket/ssl_server_socket_openssl.cc',
@@ -1535,6 +1547,8 @@
'quic/congestion_control/paced_sender_test.cc',
'quic/congestion_control/tcp_cubic_sender_test.cc',
'quic/congestion_control/tcp_receiver_test.cc',
+ 'quic/crypto/aes_128_gcm_decrypter_test.cc',
+ 'quic/crypto/aes_128_gcm_encrypter_test.cc',
'quic/crypto/crypto_framer_test.cc',
'quic/crypto/crypto_handshake_test.cc',
'quic/crypto/curve25519_key_exchange_test.cc',
« no previous file with comments | « no previous file | net/quic/crypto/aes_128_gcm_decrypter.h » ('j') | net/quic/crypto/aes_128_gcm_decrypter_nss.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698