Skip to content

Commit 40d9814

Browse files
committed
cargo fmt.
1 parent 4e5d181 commit 40d9814

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ fn main() {
1212
);
1313
panic!();
1414
}
15-
}
15+
}

src/lib.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@
6363
//! panic!("Expected query response!");
6464
//! }
6565
//! ```
66-
//!
66+
//!
6767
//! # KMIP Operations Supported
68-
//!
68+
//!
6969
//! _Note: Supported operations may lack support for some attribute or managed object types. Vendor specific extensions are ignored._
70-
//!
70+
//!
7171
//! | KMIP Version | Operation | Support |
7272
//! |---|---|---|
7373
//! | 1.0 | Create | ✓ |
@@ -109,21 +109,21 @@
109109
//! | 1.2 | Hash | |
110110
//! | 1.2 | Create Split Key | |
111111
//! | 1.2 | Join Split Key | |
112-
//!
112+
//!
113113
//! # KMIP Use/Test Case Coverage
114-
//!
114+
//!
115115
//! Each KMIP specification document is accompanied by a separate document that defines a set of use cases, renamed in KMIP
116116
//! 1.1 to test cases. These show complete KMIP requests and responses. In the v1.0 and v1.1 versions each test case is
117117
//! broken down into its constituent TTLV parts with the matching numeric values and an accompanying hexadecimal
118118
//! representation of the serialized form. From v1.2 onwards the test case representation was changed from TTLV/hex based to
119119
//! XML based.
120-
//!
120+
//!
121121
//! The subset of the TTLV/hex format test cases that this crate
122122
//! [demonstrates compliance with](https://github.com/NLnetLabs/kmip-protocol/tree/main/src/tests) are represented below by
123123
//! ticked boxes:
124-
//!
124+
//!
125125
//! **KMIP Use Cases [v1.0](https://docs.oasis-open.org/kmip/usecases/v1.0/cs01/kmip-usecases-1.0-cs-01.html)/[v1.1](https://docs.oasis-open.org/kmip/testcases/v1.1/kmip-testcases-v1.1.html):**
126-
//!
126+
//!
127127
//! - 3 Centralized Management
128128
//! - 3.1 Basic Functionality
129129
//! - [ ] 3.1.1 Use-case: Create / Destroy
@@ -177,9 +177,9 @@
177177
//! - 18 Digest _(Added in KMIP v1.1)_
178178
//! - [ ] 18.1 Test Case: Digests of Symmetric Keys
179179
//! - [ ] 18.2 Test Case: Digests of RSA Private Keys
180-
//!
180+
//!
181181
//! **Other (partially) implemented KMIP test cases:**
182-
//!
182+
//!
183183
//! - [Advanced Cryptographic Mandatory Test Cases KMIP v1.3 5.9.8.1 CS-AC-M-1-13](https://docs.oasis-open.org/kmip/profiles/v1.3/os/test-cases/kmip-v1.3/mandatory/CS-AC-M-1-13.xml) _(steps 1 & 2 only for sign operation test)_
184184
//! - [RNG Cryptographic Mandatory Test Cases KMIP v1.3 5.9.9.1 CS-RNG-M-1-13](ttps://docs.oasis-open.org/kmip/profiles/v1.3/os/test-cases/kmip-v1.3/mandatory/CS-RNG-M-1-13.xml)
185185
pub mod auth;

src/types/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! serialization into the binary TTLV format and uses the response types to deserialize the binary KMIP response
66
//! format into rich Rust types.
77
//!
8-
//! The attributes on the Rust types are used by the `kmip-ttlv` crate to guide the (de)serialization correctly to/from
8+
//! The attributes on the Rust types are used by the `kmip-ttlv` crate to guide the (de)serialization correctly to/from
99
//! the KMIP binary TTLV format.
1010
pub mod common;
1111
pub mod request;

0 commit comments

Comments
 (0)