https://github.com/simplesamlphp/simplesamlphp-module-authcrypt
This module provides authentication based on password hashes and htpasswd-files
https://github.com/simplesamlphp/simplesamlphp-module-authcrypt
Last synced: 5 months ago
JSON representation
This module provides authentication based on password hashes and htpasswd-files
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-authcrypt
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2019-05-24T14:00:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T07:29:29.000Z (almost 2 years ago)
- Last Synced: 2024-04-25T09:41:08.924Z (almost 2 years ago)
- Language: PHP
- Size: 82 KB
- Stars: 5
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Authcrypt

[](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-authcrypt)
[](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-authcrypt/?branch=master)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-authcrypt)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-authcrypt)
## Install
Install with composer
```bash
bin/composer require simplesamlphp/simplesamlphp-module-authcrypt
```
## Configuration
Next thing you need to do is to enable the module:
in `config.php`, search for the `module.enable` key and set `authcrypt` to true:
```php
'module.enable' => [ 'authcrypt' => true, … ],
```