46c9cc01901ecd3af0191872f9660b710d5fe757 |
|
01-Dec-2015 |
Torbjorn Granlund <torbjorng@google.com> |
Provide method for returning certificate expiration time stamp. We convert ASN1 time via std::tm to int64_t representing milliseconds-since-epoch. We do not use time_t since that cannot store milliseconds, and expires for 32-bit platforms in 2038 also for seconds. Conversion via std::tm might might seem silly, but actually doesn't add any complexity. One would expect tm -> seconds-since-epoch to already exist on the standard library. There is mktime, but it uses localtime (and sets an environment variable, and has the 2038 problem). The ASN1 TIME parsing is limited to what is required by RFC 5280. BUG=webrtc:5150 R=hbos@webrtc.org, nisse@webrtc.org, tommi@webrtc.org Review URL: https://codereview.webrtc.org/1468273004 . Cr-Commit-Position: refs/heads/master@{#10854}
/external/webrtc/webrtc/base/opensslidentity.cc
|
a41ab9326c8f0f7eb738e5d51a239a2b9e276361 |
|
31-Oct-2015 |
tfarina <tfarina@chromium.org> |
Switch usage of _DEBUG macro to NDEBUG. http://stackoverflow.com/a/29253284/5237416 BUG=None R=tommi@webrtc.org NOPRESUBMIT=true Review URL: https://codereview.webrtc.org/1429513004 Cr-Commit-Position: refs/heads/master@{#10468}
/external/webrtc/webrtc/base/opensslidentity.cc
|
4e572470a3f181a043f9f9b98cc0153b7195b9f5 |
|
08-Oct-2015 |
torbjorng <torbjorng@webrtc.org> |
Provide RSA2048 as per RFC Original CL here: https://codereview.webrtc.org/1329493005 That CL is in patch set #1 of this CL. This CL resolves a method collision in Chrome. BUG=webrtc:4972 Review URL: https://codereview.webrtc.org/1394223002 Cr-Commit-Position: refs/heads/master@{#10222}
/external/webrtc/webrtc/base/opensslidentity.cc
|
335204c550e9570d356d0d6264475ac40c7f92f6 |
|
08-Oct-2015 |
torbjorng <torbjorng@webrtc.org> |
Revert of Provide RSA2048 as per RFC (patchset #9 id:200001 of https://codereview.webrtc.org/1329493005/ ) Reason for revert: Breaks chrome. Original issue's description: > provide RSA2048 as per RFC > > BUG=webrtc:4972 > > Committed: https://crrev.com/0df3eb03c9a6a8299d7e18c8c314ca58c2f0681e > Cr-Commit-Position: refs/heads/master@{#10209} TBR=hbos@webrtc.org,juberti@google.com,jbauch@webrtc.org,henrikg@webrtc.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=webrtc:4972 Review URL: https://codereview.webrtc.org/1397703002 Cr-Commit-Position: refs/heads/master@{#10210}
/external/webrtc/webrtc/base/opensslidentity.cc
|
0df3eb03c9a6a8299d7e18c8c314ca58c2f0681e |
|
08-Oct-2015 |
torbjorng <torbjorng@webrtc.org> |
provide RSA2048 as per RFC BUG=webrtc:4972 Review URL: https://codereview.webrtc.org/1329493005 Cr-Commit-Position: refs/heads/master@{#10209}
/external/webrtc/webrtc/base/opensslidentity.cc
|
b6d4ec418504fd947c6f96829c73180e9487e203 |
|
17-Aug-2015 |
Torbjorn Granlund <torbjorng@google.com> |
Support generation of EC keys using P256 curve and support ECDSA certs. This CL started life here: https://webrtc-codereview.appspot.com/51189004 BUG=webrtc:4685, webrtc:4686 R=hbos@webrtc.org, juberti@webrtc.org Review URL: https://codereview.webrtc.org/1189583002 . Cr-Commit-Position: refs/heads/master@{#9718}
/external/webrtc/webrtc/base/opensslidentity.cc
|
770cc380ebcd40b6a05fcd558a34bfe943a1eabe |
|
29-May-2015 |
Jiayang Liu <jiayl@chromium.org> |
Don't call CRYPTO_add in BoringSSL. The old OpenSSL threading hooks were removed in favor of the library knowing about threads internally. Instead of CRYPTO_add, use FOO_up_ref wrappers that don't require reaching into the type. BUG=none R=jiayl@webrtc.org, juberti@google.com Review URL: https://webrtc-codereview.appspot.com/54579004 Cr-Commit-Position: refs/heads/master@{#9324}
/external/webrtc/webrtc/base/opensslidentity.cc
|
1b794d56b72853fe2eecbea2c719886c44578ed8 |
|
12-May-2015 |
Joachim Bauch <jbauch@webrtc.org> |
Switch to use SHA-256 for certificates / fingerprints. This CL changes identity generation to use SHA-256 for the self-signed certificates and the fingerprints sent in the SDP. BUG=4602 R=juberti@google.com Review URL: https://webrtc-codereview.appspot.com/47149004 Cr-Commit-Position: refs/heads/master@{#9173}
/external/webrtc/webrtc/base/opensslidentity.cc
|
01aeaee719a14f13304715f00628da4cb8660b30 |
|
22-Apr-2015 |
JiaYang (佳扬) Liu <jiayl@chromium.org> |
Fix GetSignatureDigestAlgorithm for openssl to prepare for EC key switch. BUG= R=davidben@chromium.org, juberti@google.com Review URL: https://webrtc-codereview.appspot.com/48209004 Cr-Commit-Position: refs/heads/master@{#9061}
/external/webrtc/webrtc/base/opensslidentity.cc
|
9478437fdea4eb31b92ffe0c10368fe5bc9b9e16 |
|
20-Apr-2015 |
Karl Wiberg <kwiberg@webrtc.org> |
rtc::Buffer improvements 1. Constructors, SetData(), and AppendData() now accept uint8_t*, int8_t*, and char*. Previously, they accepted void*, meaning that any kind of pointer was accepted. I think requiring an explicit cast in cases where the input array isn't already of a byte-sized type is a better compromise between convenience and safety. 2. data() can now return a uint8_t* instead of a char*, which seems more appropriate for a byte array, and is harder to mix up with zero-terminated C strings. data<int8_t>() is also available so that callers that want that type instead won't have to cast, as is data<char>() (which remains the default until all existing callers have been fixed). 3. Constructors, SetData(), and AppendData() now accept arrays natively, not just decayed to pointers. The advantage of this is that callers don't have to pass the size separately. 4. There are new constructors that allow setting size and capacity without initializing the array. Previously, this had to be done separately after construction. 5. Instead of TransferTo(), Buffer now supports swap(), and move construction and assignment, and has a Pass() method that works just like std::move(). (The Pass method is modeled after scoped_ptr::Pass().) R=jmarusic@webrtc.org, tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/42989004 Cr-Commit-Position: refs/heads/master@{#9033}
/external/webrtc/webrtc/base/opensslidentity.cc
|
67186fe00cc68cbe03aa66d17fb4962458ca96d2 |
|
09-Mar-2015 |
kwiberg@webrtc.org <kwiberg@webrtc.org> |
Fix clang style warnings in webrtc/base Mostly this consists of marking functions with override when applicable, and moving function bodies from .h to .cc files. Not inlining virtual functions with simple bodies such as { return false; } strikes me as probably losing more in readability than we gain in binary size and compilation time, but I guess it's just like any other case where enabling a generally good warning forces us to write slightly worse code in a couple of places. BUG=163 R=kjellander@webrtc.org, tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/47429004 Cr-Commit-Position: refs/heads/master@{#8656} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8656 4adac7df-926f-26a2-2b94-8c16560cd09d
/external/webrtc/webrtc/base/opensslidentity.cc
|
a5b7869f3d9887d67a17f9607dcc0922c7d2b278 |
|
28-Aug-2014 |
andrew@webrtc.org <andrew@webrtc.org> |
Add CHECK and friends from Chromium. Replace FATAL_ERROR_IF with the more familiar (to Chromium developers) CHECK and DCHECK. The full Chromium implementation is fairly elaborate but I copied enough to get us most of the benefits. I believe the main missing component is a more advanced stack dump. For this bit I relied on the V8 implementation. There are a few minor modifications from the Chromium original: - The FatalMessage class is specialized for logging fatal error messages and aborting. Chromium uses the general LogMessage class, which we could consider moving towards in the future. - NOTIMPLEMENTED() and NOTREACHED() have been removed, partly because I don't want to rely on our logging.h until base/ and system_wrappers/ are consolidated. - FATAL() replaces LOG(FATAL). Minor modifications from V8's stack dump: - If parsing of a stack trace symbol fails, just print the unparsed symbol. (I noticed this happened on Mac.) - Use __GLIBCXX__ and __UCLIBC__. This is from examining the backtrace use in Chromium. UNREACHABLE() has been removed because its behavior is different than Chromium's NOTREACHED(), which is bound to cause confusion. The few uses were replaced with FATAL(), matching the previous behavior. Add a NO_RETURN macro, allowing us to remove unreachable return statements following a CHECK/FATAL. TESTED=the addition of dummy CHECK, DCHECK, CHECK_EQ and FATAL did the did the right things. Stack traces work on Mac, but I don't get symbols on Linux. R=henrik.lundin@webrtc.org, kwiberg@webrtc.org, tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/22449004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7003 4adac7df-926f-26a2-2b94-8c16560cd09d
/external/webrtc/webrtc/base/opensslidentity.cc
|
f048872e915a3ee229044ec4bc541f6cbf9e4de1 |
|
13-May-2014 |
henrike@webrtc.org <henrike@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> |
Adds a modified copy of talk/base to webrtc/base. It is the first step in migrating talk/base to webrtc/base. BUG=N/A R=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17479005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6129 4adac7df-926f-26a2-2b94-8c16560cd09d
/external/webrtc/webrtc/base/opensslidentity.cc
|
e9a604accd54ab14dbf98f99ccdcf3ae1c54d27c |
|
13-May-2014 |
perkj@webrtc.org <perkj@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> |
Revert 6107 "Adds a modified copy of talk/base to webrtc/base. I..." This breaks Chromium FYI builds and prevent roll of webrtc/libjingle to Chrome. http://chromegw.corp.google.com/i/chromium.webrtc.fyi/builders/Win%20Builder/builds/457 > Adds a modified copy of talk/base to webrtc/base. It is the first step in migrating talk/base to webrtc/base. > > BUG=N/A > R=andrew@webrtc.org, wu@webrtc.org > > Review URL: https://webrtc-codereview.appspot.com/12199004 TBR=henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/14479004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6116 4adac7df-926f-26a2-2b94-8c16560cd09d
/external/webrtc/webrtc/base/opensslidentity.cc
|
2c7d1b39b9374d2bc9bda4755fd4813db66a135c |
|
12-May-2014 |
henrike@webrtc.org <henrike@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> |
Adds a modified copy of talk/base to webrtc/base. It is the first step in migrating talk/base to webrtc/base. BUG=N/A R=andrew@webrtc.org, wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/12199004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6107 4adac7df-926f-26a2-2b94-8c16560cd09d
/external/webrtc/webrtc/base/opensslidentity.cc
|