diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-08-14 14:24:10 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-08-31 10:45:10 +0200 |
commit | ecdbf006284fa4907b54f58ac6ba59f54b9738a5 (patch) | |
tree | 387c47f718d19d871a2430ac5bf272cd5f6ab755 /lib/public/icertificatemanager.php | |
parent | 23137f4798cb89b188329050a85f2f3a706947c5 (diff) | |
download | nextcloud-server-ecdbf006284fa4907b54f58ac6ba59f54b9738a5.tar.gz nextcloud-server-ecdbf006284fa4907b54f58ac6ba59f54b9738a5.zip |
Move certificate management code to core
Diffstat (limited to 'lib/public/icertificatemanager.php')
-rw-r--r-- | lib/public/icertificatemanager.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/public/icertificatemanager.php b/lib/public/icertificatemanager.php new file mode 100644 index 00000000000..9ce7d721178 --- /dev/null +++ b/lib/public/icertificatemanager.php @@ -0,0 +1,40 @@ +<?php +/** + * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP; + +/** + * Manage trusted certificates for users + */ +interface ICertificateManager { + /** + * Returns all certificates trusted by the user + * + * @return string[] + */ + public function listCertificates(); + + /** + * @param string $certificate the certificate data + * @param string $name the filename for the certificate + * @return bool + */ + public function addCertificate($certificate, $name); + + /** + * @param string $name + */ + public function removeCertificate($name); + + /** + * Get the path to the certificate bundle for this user + * + * @return string + */ + public function getCertificateBundle(); +} |