gvm_auth/lib.rs
1// SPDX-FileCopyrightText: 2026 Greenbone AG
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5//! # gvm-auth-lib
6//!
7//! The GVM Authentication Library is a Rust library for common authentication
8//! functionality used within the Greenbone Vulnerability Manager such as
9//! the generation of JSON Web Tokens and communicating with authentication
10//! APIs like OAuth and OpenID Connect.
11
12pub const VERSION: &str = env!("CARGO_PKG_VERSION");
13
14pub mod clock;
15pub mod jwt;
16pub mod oauth2;