Crates.io | rasn-kerberos |
lib.rs | rasn-kerberos |
version | |
source | src |
created_at | 2021-12-23 13:55:54.647511 |
updated_at | 2024-10-18 09:26:45.76707 |
description | Data types for Kerberos V5 |
homepage | |
repository | |
max_upload_size | |
id | 502263 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This is an implementation of the data types from RFC 4120 also known as "Kerberos V5". Kerberos is an authentication framework for verifying identities of "principals" (e.g. a user or network server) on an open unprotected network.
This is accomplished without relying on assertions by the host operating system, without basing trust on host addresses, without requiring physical security of all the hosts on the network, and under the assumption that packets traveling along the network can be read, modified, and inserted at will. Kerberos performs authentication under these conditions as a trusted third-party authentication service by using conventional (shared secret key) cryptography.
Like other rasn
core crates this crate does not provide the ability to
authenticate on its own, but provides shared data types to create your own
Kerberos clients and servers.