mtls-grpc 0.1.0

gRPC adapter for mTLS authentication with IP whitelisting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! gRPC adapter for mTLS authentication.
//!
//! This crate provides gRPC (tonic) interceptors and credentials for mTLS authentication with IP whitelisting.

#![warn(missing_docs)]

/// gRPC interceptors and credentials for mTLS.
pub mod grpc;

/// Re-export commonly used types.
pub mod prelude {
    pub use crate::grpc::*;
}