summaryrefslogtreecommitdiffstats
path: root/chromium/content/child/webcrypto/crypto_data.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/child/webcrypto/crypto_data.cc')
-rw-r--r--chromium/content/child/webcrypto/crypto_data.cc29
1 files changed, 29 insertions, 0 deletions
diff --git a/chromium/content/child/webcrypto/crypto_data.cc b/chromium/content/child/webcrypto/crypto_data.cc
new file mode 100644
index 00000000000..29736418ae5
--- /dev/null
+++ b/chromium/content/child/webcrypto/crypto_data.cc
@@ -0,0 +1,29 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/child/webcrypto/crypto_data.h"
+
+namespace content {
+
+namespace webcrypto {
+
+CryptoData::CryptoData() : bytes_(NULL), byte_length_(0) {}
+
+CryptoData::CryptoData(const unsigned char* bytes, unsigned int byte_length)
+ : bytes_(bytes), byte_length_(byte_length) {}
+
+CryptoData::CryptoData(const std::vector<unsigned char>& bytes)
+ : bytes_(bytes.size() ? &bytes[0] : NULL), byte_length_(bytes.size()) {}
+
+CryptoData::CryptoData(const std::string& bytes)
+ : bytes_(bytes.size() ? reinterpret_cast<const unsigned char*>(bytes.data())
+ : NULL),
+ byte_length_(bytes.size()) {}
+
+CryptoData::CryptoData(const blink::WebVector<unsigned char>& bytes)
+ : bytes_(bytes.data()), byte_length_(bytes.size()) {}
+
+} // namespace webcrypto
+
+} // namespace content