Cheetah
EncryptionInterface.php
Go to the documentation of this file.
1 <?php
2 
3 namespace OAuth2\Encryption;
4 
6 {
7  public function encode($payload, $key, $algorithm = null);
8  public function decode($payload, $key, $algorithm = null);
9  public function urlSafeB64Encode($data);
10  public function urlSafeB64Decode($b64);
11 }
OAuth2\Encryption
Definition: EncryptionInterface.php:3
OAuth2\Encryption\EncryptionInterface\decode
decode($payload, $key, $algorithm=null)
php
OAuth2\Encryption\EncryptionInterface\urlSafeB64Encode
urlSafeB64Encode($data)
OAuth2\Encryption\EncryptionInterface\urlSafeB64Decode
urlSafeB64Decode($b64)
OAuth2\Encryption\EncryptionInterface\encode
encode($payload, $key, $algorithm=null)
OAuth2\Encryption\EncryptionInterface
Definition: EncryptionInterface.php:6