diff options
author | MichaIng <micha@dietpi.com> | 2021-07-12 19:22:04 +0200 |
---|---|---|
committer | MichaIng <micha@dietpi.com> | 2022-07-12 19:19:00 +0200 |
commit | 21b3e87c771987768e0ffe38823e680ff738394f (patch) | |
tree | 0e34f9f85dfafce94212ba35a5eb8b67a616ab5a /lib/public | |
parent | c20d34b2caf6ef030ef52e87311ac96d3fa46931 (diff) | |
download | nextcloud-server-21b3e87c771987768e0ffe38823e680ff738394f.tar.gz nextcloud-server-21b3e87c771987768e0ffe38823e680ff738394f.zip |
Allow SSO authentication to provide a user secret
Implementing PR #24837 from immerda
Signed-off-by: MichaIng <micha@dietpi.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Authentication/IProvideUserSecretBackend.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/public/Authentication/IProvideUserSecretBackend.php b/lib/public/Authentication/IProvideUserSecretBackend.php new file mode 100644 index 00000000000..08f4043d828 --- /dev/null +++ b/lib/public/Authentication/IProvideUserSecretBackend.php @@ -0,0 +1,41 @@ +<?php +/** + * @copyright Copyright (c) 2021, MichaIng <micha@dietpi.com> + * + * @author MichaIng <micha@dietpi.com> + * + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes + +namespace OCP\Authentication; + +/** + * Interface IProvideUserSecretBackend + * + * @since 23.0.0 + */ +interface IProvideUserSecretBackend { + + /** + * Optionally returns a stable per-user secret. This secret is for + * instance used to secure file encryption keys. + * @return string + * @since 23.0.0 + */ + public function getCurrentUserSecret(): string; +} |