コード例 #1
0
 public function respondDecrypt($encrypted_respond)
 {
     return quick_decrypt_ECB($this->client_password, $encrypted_respond);
 }
コード例 #2
0
ファイル: client.php プロジェクト: Majeedr/PHP-REST-starter
 public function requestDecrypt($encrypted_request)
 {
     return quick_decrypt_ECB($this->client_password, $encrypted_request);
 }