diff --git a/src/Socialbox/Objects/KeyPair.php b/src/Socialbox/Objects/KeyPair.php new file mode 100644 index 0000000..df50c98 --- /dev/null +++ b/src/Socialbox/Objects/KeyPair.php @@ -0,0 +1,25 @@ +publicKey = $publicKey; + $this->privateKey = $privateKey; + } + + public function getPublicKey(): string + { + return $this->publicKey; + } + + public function getPrivateKey(): string + { + return $this->privateKey; + } +} \ No newline at end of file