| Index: chrome/browser/chromeos/cros/cert_library.h
|
| ===================================================================
|
| --- chrome/browser/chromeos/cros/cert_library.h (revision 99168)
|
| +++ chrome/browser/chromeos/cros/cert_library.h (working copy)
|
| @@ -96,6 +96,13 @@
|
|
|
| // Returns the current list of server CA certificates.
|
| virtual const CertList& GetCACertificates() const = 0;
|
| +
|
| + // Encrypts |raw_data| with supplemental user key.
|
| + virtual bool EncryptWithSupplementalUserKey(const std::string& raw_data,
|
| + std::string* encryped_data) const = 0;
|
| + // Decrypts |encryped_data| with supplemental user key.
|
| + virtual bool DecryptWithSupplementalUserKey(const std::string& encryped_data,
|
| + std::string* raw_data) const = 0;
|
| };
|
|
|
| } // namespace chromeos
|
|
|