ServerKeyInfo.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Digital Barriers
4 
18 #pragma once
19 
20 #include <string>
21 #include "EdgeVisSDK.h"
22 #include "OpResult.h"
23 #include "Pimpl.h"
24 
25 namespace EdgeVisDecoderSDK
26 {
27  class ServerKeyInfoImpl;
28 
29  class ServerKeyInfo : public EdgeVisSDKPimpl<ServerKeyInfoImpl>
30  {
31  public:
32  DB_EDGEVIS_SDK ServerKeyInfo();
33  EdgeVisSDKPimplWeakConstructor(ServerKeyInfo);
34  DB_EDGEVIS_SDK ServerKeyInfo(const std::wstring& id, const std::wstring& key, const std::wstring& fingerprint = L"", OpResult result = OR_Unknown, const std::wstring& key_version = L"V2");
35  DB_EDGEVIS_SDK virtual ~ServerKeyInfo();
36 
42  DB_EDGEVIS_SDK std::wstring Id() const;
43 
49  DB_EDGEVIS_SDK std::wstring Key() const;
50 
57  DB_EDGEVIS_SDK std::wstring Fingerprint() const;
58 
68  DB_EDGEVIS_SDK OpResult GetResult() const;
69 
70 
76  DB_EDGEVIS_SDK std::wstring KeyVersion() const;
77  };
78 }
DB_EDGEVIS_SDK std::wstring Id() const
Gets the server ID.
DB_EDGEVIS_SDK OpResult GetResult() const
Gets the result that was set when the key info was populated.
DB_EDGEVIS_SDK std::wstring KeyVersion() const
Gets the server&#39;s encryption key version.
Holds the server encryption key information.
Definition: ServerKeyInfo.h:29
The EdgeVis Decoder SDK namespace.
DB_EDGEVIS_SDK std::wstring Fingerprint() const
Gets the server&#39;s encryption key fingerprint.
DB_EDGEVIS_SDK std::wstring Key() const
Gets the server&#39;s encryption key.
OpResult
Result of an operation.
Definition: OpResult.h:25
Unknown error.
Definition: OpResult.h:118