matrix-php-sdk/src/Crypto/OlmDevice.php

27 lines
495 B
PHP

<?php
namespace Aryess\PhpMatrixSdk\Crypto;
use Aryess\PhpMatrixSdk\MatrixHttpApi;
/**
* OlmDevice stub for typehinting
*
* @package Aryess\PhpMatrixSdk\Crypto
*/
class OlmDevice {
public function __construct(MatrixHttpApi $client, string $userId, ?string $deviceId, array &$encryptionConf) {
}
public function uploadIdentityKeys() {
}
public function uploadOneTimeKeys() {
}
public function updateOneTimeKeysCounts($device_one_time_keys_count) {
}
}