- 03 Feb, 2017 1 commit
-
-
davidben authored
There are two that are wrong because cpplint gets confused about variables named 'copy' and methods named 'swap'. Those I've left alone. BUG=none Review-Url: https://codereview.chromium.org/2677583002 Cr-Commit-Position: refs/heads/master@{#447926}
-
- 28 Oct, 2016 1 commit
-
-
tfarina authored
This also allow us to participate in DEPS checking, which will help catch instances of directories including BoringSSL without adding to build targets. This patch was partly generated by the following command lines: $ g grep -l -e '^#[[:blank:]]*include <\(openssl[^>]*\)>' | xargs sed -i '/^#[[:blank:]]*include/s/<\(openssl[^>]*\)>/"\1"/' $ g grep -l "#include \"openssl/" | xargs sed -i -e 's/\(#.* \)"\(openssl\/.*\)"/\1"third_party\/boringssl\/src\/include\/\2"/' The regex were taken from http://stackoverflow.com/a/25378698 and https://svn.boost.org/trac/boost/ticket/12057, and adapted to suit our needs. Then the includes were put in their right places with some manual editing and the help of tools/sort-headers.py. BUG=446558 R=davidben@chromium.org,thestig@chromium.org,jochen@chromium.org,slan@chromium.org Review-Url: https://codereview.chromium.org/2449873005 Cr-Commit-Position: refs/heads/master@{#428442}
-
- 05 Aug, 2016 1 commit
-
-
kuznetsovs authored
GenerateCounterMask, MaskMessage were used in nss implementation. R=agl@chromium.org,davidben@chromium.org,rsleevi@chromium.org BUG= Review-Url: https://codereview.chromium.org/2218903002 Cr-Commit-Position: refs/heads/master@{#410051}
-
- 28 Jun, 2016 1 commit
-
-
rsleevi authored
Rather than make callers use base::WrapUnique or .reset(), have //crypto functions that create new instances return them in std::unique_ptr<>s Also fixup NULL vs nullptr where it matters most, and remove superflous .get() tests from the unique_ptr<>s BUG=none R=davidben@chromium.org Review-Url: https://codereview.chromium.org/2095523002 Cr-Commit-Position: refs/heads/master@{#402368}
-
- 21 Apr, 2016 1 commit
-
-
svaldez authored
With the removal of most of the NSS code, we no longer need to split up code between NSS and OpenSSL implementations. BUG=604728 Review URL: https://codereview.chromium.org/1909513003 Cr-Commit-Position: refs/heads/master@{#388856}
-
- 21 Dec, 2015 1 commit
-
-
avi authored
BUG=138542 TBR=rsleevi@chromium.org NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1539353003 Cr-Commit-Position: refs/heads/master@{#366460}
-
- 28 Mar, 2012 1 commit
-
-
wez@chromium.org authored
This primarily addresses issues with code using the OS-provided htonX() & ntohX() functions from within the Chrome sandbox. Under Windows these functions are provided by ws2_32.dll, which is no longer available within Chrome's sandbox. The new base::HostToNetXX() and NetToHostXX() functions are safe for use by sandboxed code on Windows, and provide a single place where future fixes for other platforms can be made. BUG=117252 Review URL: http://codereview.chromium.org/9716020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129476 0039d316-1c4b-4281-b951-d872f2087c98
-
- 28 Dec, 2011 1 commit
-
-
isherman@chromium.org authored
Two motivations: (1) There are currently clients in src/crypto that need the same logic. (2) There is soon to be a client in src/chrome/common that needs the 64-bit version of this logic, which is currently inlined in a src/crypto implementation file. BUG=103480 TEST=compiles Review URL: http://codereview.chromium.org/8949026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115926 0039d316-1c4b-4281-b951-d872f2087c98
-
- 20 Oct, 2011 1 commit
-
-
robert.nagy@gmail.com authored
net/base/host_resolver_proc.cc: - define AI_ADDRCONFIG as 0 net/base/listen_socket.cc: - Shuffle and add missing headers since the order of including these matters. net/base/net_util.h: - Missing header for all POSIX platforms. Needed on OpenBSD and it won't hurt others. net/dns/dns_config_service_posix.h: - Missing header for OpenBSD. The order matters here too net/dns/dns_config_service_posix.cc: - Use res_init() on OpenBSD and disable RES_ROTATE if it is not defined net/net.gyp: - Do not use libresolv on OpenBSD since it's not there, the resolver is in libc. - Include base/platform_mime_util_linux.cc in the OpenBSD builds. BUG= TEST= Review URL: http://codereview.chromium.org/8336024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106604 0039d316-1c4b-4281-b951-d872f2087c98
-
- 19 Jul, 2011 1 commit
-
-
jbauman@chromium.org authored
BUG= TEST=try Review URL: http://codereview.chromium.org/7375016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93026 0039d316-1c4b-4281-b951-d872f2087c98
-
- 08 Jul, 2011 1 commit
-
-
rsleevi@chromium.org authored
R=wtc BUG=none TEST=crypto_unittests Review URL: http://codereview.chromium.org/7230037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91800 0039d316-1c4b-4281-b951-d872f2087c98
-
- 24 Jun, 2011 1 commit
-
-
hclam@chromium.org authored
Implement AES-128-CTR. BUG=87152 TEST=None Review URL: http://codereview.chromium.org/7056026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90425 0039d316-1c4b-4281-b951-d872f2087c98
-