Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pkgstore-old/linux-rpm-libgsasl
https://github.com/pkgstore-old/linux-rpm-libgsasl
linux pkgstore rpm rpm-package rpm-packages rpm-spec sasl
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/pkgstore-old/linux-rpm-libgsasl
- Owner: pkgstore-old
- License: lgpl-2.1
- Created: 2021-06-17T16:05:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-01T09:28:26.000Z (almost 3 years ago)
- Last Synced: 2024-02-23T11:54:35.913Z (10 months ago)
- Topics: linux, pkgstore, rpm, rpm-package, rpm-packages, rpm-spec, sasl
- Size: 2.67 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# GNU SASL Library
**GNU SASL** is an implementation of the Simple Authentication and Security Layer framework and a few common SASL mechanisms. SASL is used by network servers (e.g., IMAP, SMTP, XMPP) to request authentication from clients, and in clients to authenticate against servers.
GNU SASL consists of a C library (libgsasl), a command-line application (gsasl), and a manual. The library supports the ANONYMOUS, CRAM-MD5, DIGEST-MD5, EXTERNAL, GS2-KRB5, GSSAPI, LOGIN, NTLM, OPENID20, PLAIN, SCRAM-SHA-1, SCRAM-SHA-1-PLUS, SCRAM-SHA-256, SCRAM-SHA-256-PLUS, SAML20, and SECURID mechanisms.
The library is portable because it does not do network communication by itself, but rather leaves it up to the calling application. The library is flexible with regards to the authorization infrastructure used, as it utilizes callbacks into the application to decide whether an user is authorized or not.
## Install
### Fedora COPR
```
$ dnf copr enable pkgstore/lib
$ dnf install -y libgsasl
```### Open Build Service (OBS)
```
# Work in Progress
```## Update
```
$ dnf upgrade -y libgsasl
```## Remove
```
$ dnf erase -y libgsasl
$ dnf copr remove pkgstore/lib
```## How to Build
1. Get source from [src.fedoraproject.org](https://src.fedoraproject.org/rpms/libgsasl).
2. Write last commit SHA from [src.fedoraproject.org](https://src.fedoraproject.org/rpms/libgsasl) to [CHANGELOG](CHANGELOG).
3. Modify & update source (and `*.spec`).
4. Build SRPM & RPM.