rugk/threema-msgapi-sdk-php

View on GitHub
source/Threema/Core/KeyPair.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @author Threema GmbH
 * @copyright Copyright (c) 2015-2016 Threema GmbH
 */


namespace Threema\Core;

class KeyPair {
    public $privateKey;
    public $publicKey;

    public function __construct($privateKey, $publicKey) {
        $this->privateKey = $privateKey;
        $this->publicKey = $publicKey;
    }
}