Affected files (+157, -0 lines):
M crypto/crypto.gyp
M crypto/crypto.gypi
A crypto/openssl_bio_string.h
A crypto/openssl_bio_string.cc
A crypto/openssl_bio_string_unittest.cc
rsl...@chromium.org
unread,
May 19, 2014, 7:25:44 PM5/19/14
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
// Creates a new BIO that can be used with OpenSSL's
// various output functions, and which will write all output
// directly into |out|. This is primarily intended as a
// utility to reduce the amount of copying and separate
// allocations when performing extensive string modifications
// or streaming within OpenSSL.
//
// Note: |out| must remain valid for the duration of the BIO.
On 2014/05/19 23:25:44, Ryan Sleevi wrote:
> nit: I tend to like this on between lines 8-9, rather than requiring
the unnamed
> namespace be entirely self-constrained.
On 2014/05/19 23:25:44, Ryan Sleevi wrote:
> Document
> // Creates a new BIO that can be used with OpenSSL's
> // various output functions, and which will write all output
> // directly into |out|. This is primarily intended as a
> // utility to reduce the amount of copying and separate
> // allocations when performing extensive string modifications
> // or streaming within OpenSSL.
> //
> // Note: |out| must remain valid for the duration of the BIO.