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

  /external/libbrillo/brillo/
secure_blob.h 17 // SecureBlob erases the contents on destruction. It does not guarantee erasure
19 class BRILLO_EXPORT SecureBlob : public Blob {
21 SecureBlob() = default;
23 explicit SecureBlob(const std::string& data);
24 ~SecureBlob();
35 static SecureBlob Combine(const SecureBlob& blob1, const SecureBlob& blob2);
secure_blob.cc 13 SecureBlob::SecureBlob(const std::string& data)
14 : SecureBlob(data.begin(), data.end()) {}
16 SecureBlob::~SecureBlob() {
20 void SecureBlob::resize(size_type count) {
27 void SecureBlob::resize(size_type count, const value_type& value) {
34 void SecureBlob::clear() {
39 std::string SecureBlob::to_string() const {
43 SecureBlob SecureBlob::Combine(const SecureBlob& blob1
    [all...]

Completed in 3029 milliseconds