HomeSort by relevance Sort by last modified time
    Searched defs:CryptString (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/base/
cryptstring.cc 11 #include "webrtc/base/cryptstring.h"
37 CryptString::CryptString() : impl_(new EmptyCryptStringImpl()) {
40 CryptString::CryptString(const CryptString& other)
44 CryptString::CryptString(const CryptStringImpl& impl) : impl_(impl.Copy()) {
47 CryptString::~CryptString() = default
    [all...]
cryptstring.h 44 class CryptString {
46 CryptString();
49 CryptString(const CryptString& other);
50 explicit CryptString(const CryptStringImpl& impl);
51 ~CryptString();
52 CryptString & operator=(const CryptString & other) {
91 void Append(const CryptString * password) {

Completed in 1065 milliseconds