TYPO3 CMS  TYPO3_6-2
AbstractBackend.php
Go to the documentation of this file.
1 <?php
3 
35 abstract class AbstractBackend {
36 
43  protected $error = '';
44 
53  abstract public function createNewKeyPair();
54 
62  abstract public function decrypt($privateKey, $data);
63 
69  abstract public function isAvailable();
70 
76  public function getLastError() {
77  return $this->error;
78  }
79 
80 }