aboutsummaryrefslogtreecommitdiff
path: root/cc/streaming_mac.h
diff options
context:
space:
mode:
authortholenst <tholenst@google.com>2019-10-25 13:04:33 -0700
committerCopybara-Service <copybara-worker@google.com>2019-10-25 13:05:13 -0700
commit1ec72ed263422d0c7ea6f304afe666d624a4e51a (patch)
treee8d1c554838cc173145dfbd46aa8446aa69af7ad /cc/streaming_mac.h
parent9c3aeaf66c74519047c104195b124fe0aefd6c0d (diff)
downloadtink-1ec72ed263422d0c7ea6f304afe666d624a4e51a.tar.gz
Formatting changes due to internal changes.
PiperOrigin-RevId: 276745125
Diffstat (limited to 'cc/streaming_mac.h')
-rw-r--r--cc/streaming_mac.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/streaming_mac.h b/cc/streaming_mac.h
index 037b14895..363b9354c 100644
--- a/cc/streaming_mac.h
+++ b/cc/streaming_mac.h
@@ -36,13 +36,13 @@ class StreamingMac {
public:
// Returns an ComputeMacOutputStream, which when closed will return the
// message authentication code (MAC) of the data put into the stream.
- virtual util::StatusOr<std::unique_ptr<OutputStreamWithResult<std::string>>>
+ virtual util::StatusOr<std::unique_ptr<OutputStreamWithResult<string>>>
NewComputeMacOutputStream() const = 0;
// Returns an VerifyMacOutputStream which verifies if 'mac' is a correct
// message authentication code (MAC) for the data written to it.
virtual util::StatusOr<std::unique_ptr<OutputStreamWithResult<util::Status>>>
- NewVerifyMacOutputStream(const std::string& mac_value) const = 0;
+ NewVerifyMacOutputStream(const string& mac_value) const = 0;
virtual ~StreamingMac() {}
};