Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 22 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@

Related projects include [certreq](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/certreq_1), Windows' certificate request utility, and [Certipy](https://github.com/ly4k/Certipy).

## Crates

The following protocols are supported.
Each protocol is implemented in its own crate:

| Crate | Protocol | Description | | |
| --------------------- | ---------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
| [wcce-rs](wcce-rs/) | [MS-WCCE] | Rust implementation of the Windows Client Certificate Enrollment Protocol | ![Rust](https://github.com/deshaw/adcs-rs/workflows/Rust/badge.svg) | [![Crate](https://img.shields.io/crates/v/wcce-rs.svg)](https://crates.io/crates/wcce-rs) |
| [wstep-rs](wstep-rs/) | [MS-WSTEP] | Rust implementation of the WS-Trust X.509v3 Token Enrollment Extensions Protocol | ![Rust](https://github.com/deshaw/adcs-rs/workflows/Rust/badge.svg) | [![Crate](https://img.shields.io/crates/v/wstep-rs.svg)](https://crates.io/crates/wstep-rs) |

### Related Protocols

The following list of related protocols have not been implemented by `adcs-rs`.
This list is non-exhaustive:

| Protocol | Description | Notes |
| ---------- | ------------------------------------------ | -------------------------------- |
| [MS-CAESO] | Certificate Autoenrollment System Overview | Superset of MS-WCCE and MS-WSTEP |
| [MS-CRTD] | Certificate Templates Structure | |
| [MS-ICPR] | ICertPassage Remote Protocol | Subset of MS-WCCE |
| [MS-XCEP] | Certificate Enrollment Policy Protocol | |

## Introduction

From "[What is Active Directory Certificate Services?](https://learn.microsoft.com/en-us/windows-server/identity/ad-cs/active-directory-certificate-services-overview)":
Expand Down Expand Up @@ -82,27 +104,7 @@ match parsed_response.requested_token() {
}
```

## Crates

The following protocols are supported.
Each protocol is implemented in its own crate:

| Crate | Protocol | Description | Support |
| ------------------- | ---------- | -------------------------------------------------------------------------------- | ------- |
| [wcce-rs](wcce-rs/) | [MS-WCCE] | Rust implementation of the Windows Client Certificate Enrollment Protocol | ✔ |
| [wstep-rs](wstep-rs/) | [MS-WSTEP] | Rust implementation of the WS-Trust X.509v3 Token Enrollment Extensions Protocol | ✔ |

### Related Protocols

The following list of related protocols have not been implemented by `adcs-rs`.
This list is non-exhaustive:

| Protocol | Description | Notes |
| ---------- | ------------------------------------------ | -------------------------------- |
| [MS-CAESO] | Certificate Autoenrollment System Overview | Superset of MS-WCCE and MS-WSTEP |
| [MS-CRTD] | Certificate Templates Structure | |
| [MS-ICPR] | ICertPassage Remote Protocol | Subset of MS-WCCE |
| [MS-XCEP] | Certificate Enrollment Policy Protocol | |

## Usage

Expand Down
3 changes: 3 additions & 0 deletions wcce-rs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# `wcce-rs`

![Rust](https://github.com/deshaw/adcs-rs/workflows/Rust/badge.svg)
[![Crate](https://img.shields.io/crates/v/wcce-rs.svg)](https://crates.io/crates/wcce-rs)

`wcce-rs` is a Rust implementation of the [MS-WCCE] certificate enrollment protocol:

> Specifies the Windows Client Certificate Enrollment Protocol, which consists
Expand Down
3 changes: 3 additions & 0 deletions wstep-rs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# `wstep-rs`

![Rust](https://github.com/deshaw/adcs-rs/workflows/Rust/badge.svg)
[![Crate](https://img.shields.io/crates/v/wstep-rs.svg)](https://crates.io/crates/wstep-rs)

`wstep-rs` is a Rust implementation of the [MS-WSTEP] WS-Trust X.509v3 Token Enrollment Extensions protocol:

> Specifies the WS-Trust X.509v3 Token Enrollment Extensions, also known as WSTEP.
Expand Down