SSP21-CPP
StaticKeys.h
1 
2 #ifndef SSP21_STATICKEYS_H
3 #define SSP21_STATICKEYS_H
4 
5 #include "ssp21/crypto/BufferTypes.h"
6 
7 #include <memory>
8 
9 namespace ssp21
10 {
11  struct StaticKeys
12  {
13  StaticKeys(
14  const std::shared_ptr<const PublicKey>& public_key,
15  const std::shared_ptr<const PrivateKey>& private_key
16  ) :
17  public_key(public_key),
18  private_key(private_key)
19  {}
20 
21  const std::shared_ptr<const PublicKey> public_key;
22  const std::shared_ptr<const PrivateKey> private_key;
23  };
24 }
25 
26 #endif
SSP21-cpp main namespace.
Definition: BufferTypes.h:12