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

Issue 3423016: Add current version of libSRTP from CVS. (Closed)

Created:
10 years, 3 months ago by Sergey Ulanov
Modified:
9 years, 7 months ago
Reviewers:
ajwong, Evan Martin
CC:
chromium-reviews
Visibility:
Public.

Description

Add current version of libSRTP from CVS. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=60080

Patch Set 1 #

Patch Set 2 : '' #

Patch Set 3 : '' #

Patch Set 4 : '' #

Patch Set 5 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+44710 lines, -0 lines) Patch
A libsrtp/CHANGES View 1 chunk +223 lines, -0 lines 0 comments Download
A libsrtp/LICENSE View 1 chunk +35 lines, -0 lines 0 comments Download
A libsrtp/Makefile.in View 1 chunk +237 lines, -0 lines 0 comments Download
A libsrtp/README View 1 chunk +174 lines, -0 lines 0 comments Download
A libsrtp/README.chromium View 4 1 chunk +13 lines, -0 lines 0 comments Download
A libsrtp/TODO View 1 chunk +66 lines, -0 lines 0 comments Download
A libsrtp/VERSION View 1 chunk +1 line, -0 lines 0 comments Download
A libsrtp/config.guess View 1 chunk +1447 lines, -0 lines 0 comments Download
A libsrtp/config.h_win32vc7 View 1 chunk +174 lines, -0 lines 0 comments Download
A libsrtp/config.hw View 1 chunk +196 lines, -0 lines 0 comments Download
A libsrtp/config.sub View 1 chunk +1555 lines, -0 lines 0 comments Download
A libsrtp/config_in.h View 1 chunk +173 lines, -0 lines 0 comments Download
A libsrtp/configure.in View 1 chunk +209 lines, -0 lines 0 comments Download
A libsrtp/crypto/Makefile.in View 1 chunk +137 lines, -0 lines 0 comments Download
A libsrtp/crypto/VERSION View 1 chunk +1 line, -0 lines 0 comments Download
A libsrtp/crypto/ae_xfm/xfm.c View 1 chunk +570 lines, -0 lines 0 comments Download
A libsrtp/crypto/cipher/aes.c View 1 chunk +2065 lines, -0 lines 0 comments Download
A libsrtp/crypto/cipher/aes_cbc.c View 1 chunk +540 lines, -0 lines 0 comments Download
A libsrtp/crypto/cipher/aes_icm.c View 1 chunk +561 lines, -0 lines 0 comments Download
A libsrtp/crypto/cipher/cipher.c View 1 chunk +421 lines, -0 lines 0 comments Download
A libsrtp/crypto/cipher/null_cipher.c View 1 chunk +153 lines, -0 lines 0 comments Download
A libsrtp/crypto/hash/auth.c View 1 chunk +183 lines, -0 lines 0 comments Download
A libsrtp/crypto/hash/hmac.c View 1 chunk +268 lines, -0 lines 0 comments Download
A libsrtp/crypto/hash/null_auth.c View 1 chunk +162 lines, -0 lines 0 comments Download
A libsrtp/crypto/hash/sha1.c View 1 chunk +405 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/aes.h View 1 chunk +90 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/aes_cbc.h View 1 chunk +50 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/aes_icm.h View 1 chunk +57 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/alloc.h View 1 chunk +57 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/auth.h View 1 chunk +171 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/cipher.h View 1 chunk +230 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/crypto.h View 1 chunk +43 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/crypto_kernel.h View 1 chunk +280 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/crypto_math.h View 1 chunk +239 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/crypto_types.h View 1 chunk +220 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/cryptoalg.h View 1 chunk +133 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/datatypes.h View 1 chunk +506 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/err.h View 1 chunk +174 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/gf2_8.h View 1 chunk +79 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/hmac.h View 1 chunk +78 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/integers.h View 1 chunk +147 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/kernel_compat.h View 1 chunk +84 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/key.h View 1 chunk +82 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/null_auth.h View 1 chunk +68 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/null_cipher.h View 1 chunk +80 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/prng.h View 1 chunk +54 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/rand_source.h View 1 chunk +91 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/rdb.h View 1 chunk +94 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/rdbx.h View 1 chunk +186 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/sha1.h View 1 chunk +108 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/stat.h View 1 chunk +69 lines, -0 lines 0 comments Download
A libsrtp/crypto/include/xfm.h View 1 chunk +139 lines, -0 lines 0 comments Download
A libsrtp/crypto/kernel/alloc.c View 1 chunk +119 lines, -0 lines 0 comments Download
A libsrtp/crypto/kernel/crypto_kernel.c View 1 chunk +573 lines, -0 lines 0 comments Download
A libsrtp/crypto/kernel/err.c View 1 chunk +148 lines, -0 lines 0 comments Download
A libsrtp/crypto/kernel/key.c View 1 chunk +115 lines, -0 lines 0 comments Download
A libsrtp/crypto/math/datatypes.c View 1 chunk +718 lines, -0 lines 0 comments Download
A libsrtp/crypto/math/gf2_8.c View 1 chunk +83 lines, -0 lines 0 comments Download
A libsrtp/crypto/math/math.c View 1 chunk +802 lines, -0 lines 0 comments Download
A libsrtp/crypto/math/stat.c View 1 chunk +367 lines, -0 lines 0 comments Download
A libsrtp/crypto/replay/rdb.c View 1 chunk +137 lines, -0 lines 0 comments Download
A libsrtp/crypto/replay/rdbx.c View 1 chunk +352 lines, -0 lines 0 comments Download
A libsrtp/crypto/replay/ut_sim.c View 1 chunk +105 lines, -0 lines 0 comments Download
A libsrtp/crypto/rng/ctr_prng.c View 1 chunk +108 lines, -0 lines 0 comments Download
A libsrtp/crypto/rng/prng.c View 1 chunk +180 lines, -0 lines 0 comments Download
A libsrtp/crypto/rng/rand_linux_kernel.c View 1 chunk +65 lines, -0 lines 0 comments Download
A libsrtp/crypto/rng/rand_source.c View 1 chunk +158 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/aes_calc.c View 1 chunk +119 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/auth_driver.c View 1 chunk +200 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/cipher_driver.c View 1 chunk +531 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/datatypes_driver.c View 1 chunk +237 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/env.c View 1 chunk +99 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/kernel_driver.c View 1 chunk +126 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/rand_gen.c View 1 chunk +140 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/sha1_driver.c View 1 chunk +550 lines, -0 lines 0 comments Download
A libsrtp/crypto/test/stat_driver.c View 1 chunk +139 lines, -0 lines 0 comments Download
A libsrtp/doc/Doxyfile View 1 chunk +1042 lines, -0 lines 0 comments Download
A libsrtp/doc/Makefile.in View 1 chunk +44 lines, -0 lines 0 comments Download
A libsrtp/doc/crypto_kernel.txt View 1 chunk +76 lines, -0 lines 0 comments Download
A libsrtp/doc/draft-irtf-cfrg-icm-00.txt View 1 chunk +460 lines, -0 lines 0 comments Download
A libsrtp/doc/header.template View 1 chunk +115 lines, -0 lines 0 comments Download
A libsrtp/doc/intro.txt View 1 chunk +395 lines, -0 lines 0 comments Download
A libsrtp/doc/libsrtp.pdf View 1 chunk +9540 lines, -0 lines 0 comments Download
A libsrtp/doc/references.txt View 1 chunk +21 lines, -0 lines 0 comments Download
A libsrtp/doc/rfc3711.txt View 1 chunk +3139 lines, -0 lines 0 comments Download
A libsrtp/include/ekt.h View 1 chunk +201 lines, -0 lines 0 comments Download
A libsrtp/include/getopt_s.h View 1 chunk +60 lines, -0 lines 0 comments Download
A libsrtp/include/rtp.h View 1 chunk +139 lines, -0 lines 0 comments Download
A libsrtp/include/rtp_priv.h View 1 chunk +74 lines, -0 lines 0 comments Download
A libsrtp/include/srtp.h View 1 chunk +1006 lines, -0 lines 0 comments Download
A libsrtp/include/srtp_priv.h View 1 chunk +256 lines, -0 lines 0 comments Download
A libsrtp/include/ut_sim.h View 1 chunk +80 lines, -0 lines 0 comments Download
A libsrtp/install-sh View 1 chunk +251 lines, -0 lines 0 comments Download
A libsrtp/install-win.bat View 1 chunk +31 lines, -0 lines 0 comments Download
A libsrtp/srtp.def View 1 chunk +91 lines, -0 lines 0 comments Download
A libsrtp/srtp.sln View 1 chunk +26 lines, -0 lines 0 comments Download
A libsrtp/srtp.vcproj View 1 chunk +588 lines, -0 lines 0 comments Download
A libsrtp/srtp/ekt.c View 1 chunk +278 lines, -0 lines 0 comments Download
A libsrtp/srtp/srtp.c View 1 chunk +2163 lines, -0 lines 0 comments Download
A libsrtp/srtp7.sln View 1 chunk +21 lines, -0 lines 0 comments Download
A libsrtp/srtp7.vcproj View 1 chunk +298 lines, -0 lines 0 comments Download
A libsrtp/tables/aes_tables.c View 1 chunk +346 lines, -0 lines 0 comments Download
A libsrtp/test/dtls_srtp_driver.c View 1 chunk +261 lines, -0 lines 0 comments Download
A libsrtp/test/getopt_s.c View 1 chunk +112 lines, -0 lines 0 comments Download
A libsrtp/test/lfsr.c View 1 chunk +310 lines, -0 lines 0 comments Download
A libsrtp/test/rdbx_driver.c View 1 chunk +362 lines, -0 lines 0 comments Download
A libsrtp/test/replay_driver.c View 1 chunk +257 lines, -0 lines 0 comments Download
A libsrtp/test/roc_driver.c View 1 chunk +165 lines, -0 lines 0 comments Download
A libsrtp/test/rtp.c View 1 chunk +192 lines, -0 lines 0 comments Download
A libsrtp/test/rtpw.c View 1 chunk +605 lines, -0 lines 0 comments Download
A libsrtp/test/rtpw_test.sh View 1 chunk +80 lines, -0 lines 0 comments Download
A libsrtp/test/srtp_driver.c View 1 chunk +1815 lines, -0 lines 0 comments Download
A libsrtp/timing View 1 chunk +36 lines, -0 lines 0 comments Download
A libsrtp/undos.sh View 1 chunk +10 lines, -0 lines 0 comments Download
A libsrtp/update.sh View 1 chunk +15 lines, -0 lines 0 comments Download

Messages

Total messages: 7 (0 generated)
Sergey Ulanov
Just checking in current libsrtp to deps/third_party.
10 years, 3 months ago (2010-09-20 20:47:59 UTC) #1
Evan Martin
On 2010/09/20 20:47:59, sergeyu wrote: > Just checking in current libsrtp to deps/third_party. If we ...
10 years, 3 months ago (2010-09-20 20:56:16 UTC) #2
Sergey Ulanov
On 2010/09/20 20:56:16, Evan Martin wrote: > On 2010/09/20 20:47:59, sergeyu wrote: > > Just ...
10 years, 3 months ago (2010-09-20 23:11:13 UTC) #3
Evan Martin
rubber stamp LGTM (assuming this is just a straight copy of upstream) please update the ...
10 years, 3 months ago (2010-09-20 23:17:36 UTC) #4
Sergey Ulanov
On 2010/09/20 23:17:36, Evan Martin wrote: > rubber stamp LGTM (assuming this is just a ...
10 years, 3 months ago (2010-09-20 23:32:27 UTC) #5
ajwong
Usually for 3rd party checkins, you want to have a README.chromium file that lists where ...
10 years, 3 months ago (2010-09-20 23:36:02 UTC) #6
Sergey Ulanov
10 years, 3 months ago (2010-09-21 00:18:50 UTC) #7
I've added README.chromium

Powered by Google App Engine
This is Rietveld 408576698