5.4 Get Locking Key
#include "BayunCore.h"
Bayun::BayunEncryptionPolicy encryptionPolicy = Bayun::BayunEncryptionPolicy::Group;
Bayun::BayunKeyGenerationPolicy keyGenerationPolicy = Bayun::BayunKeyGenerationPolicy::Static;
Bayun::LockingKeys lockingKeys = bayunCore->getLockingKey("<sessionId>", encryptionPolicy,keyGenerationPolicy, "<groupId>");struct LockingKeys {
std::string key; //Locking Key
std::string signatureKey; //Private Key to be used for signature generation
std::string signatureVerificationKey; //Public Key to be used for signature verification
};Last updated