aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/security/credentialsmanager.php
Commit message (Collapse)AuthorAgeFilesLines
* Move \OC\Security to PSR-4Roeland Jago Douma2016-04-141-125/+0
|
* Update author informationLukas Reschke2016-03-011-2/+2
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Introduce CredentialsManager for storage of credentials in DBRobin McCorkell2016-01-181-0/+125
CredentialsManager performs a simple role, of storing and retrieving encrypted credentials from the database. Credentials are stored by user ID (which may be null) and credentials identifier. Credentials themselves may be of any type that can be JSON encoded. The rationale behind this is to avoid further (mis)use of oc_preferences, which was being used for all manner of data not related to user preferences.