Expand description
§Signstar Create Signing Request
This crate offers a library and an executable for creating, reading and writing of signing requests for files.
§Documentation
- https://signstar.archlinux.page/rustdoc/signstar_request_signature/ for development version of the crate
- https://docs.rs/signstar_request_signature/ for released versions of the crate
§Glossary
Client - the application (here: signstar-request-signature
) which computes a file digest and creates a signing request,
Server - the application (currently: nethsm-cli
) which receives a signing request, processes it and returns a signature,
Signing request - machine and human-readable description of the data that will be signed. The exact format for the signing request is described below.
Signature - raw cryptographic signature in a technology-specific framing (e.g. in “packets” for OpenPGP).
§Format specification
The signing request is a custom JSON encoded data format. It is used to represent required information on data input (the hasher state type and the hasher state) and output (the requested signature type). Additionally, arbitrary optional data can be provided.
The below sample signing request is fully expanded for illustrative purposes:
{
"version": "1.0.0",
"required": {
"input": {
"type": "sha2-0.11-SHA512-state",
"content": [8,201,188,243,103,230,9,106,59,167,202,132,133,174,103,187,43,248,148,254,114,243,110,60,241,54,29,95,58,245,79,165,209,130,230,173,127,82,14,81,31,108,62,43,140,104,5,155,107,189,65,251,171,217,131,31,121,33,126,19,25,205,224,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,20,73,32,108,105,107,101,32,115,116,114,97,119,98,101,114,114,105,101,115,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
},
"output": {
"type": "OpenPGPv4"
}
},
"optional": {
"request-time": 1728913277,
"XHy1dHj": "https://gitlab.archlinux.org/archlinux/signstar/-/merge_requests/43"
}
}
The fields are as follows:
-
version
- Semantic Versioning-compatible version string. Incompatible changes to the format will result in a major version bump. -
required
- a dictionary of fields that the client considers critical enough that the signing server should reject a signing request if any of these fields are not understood. This serves the same purpose as the “critical bit” in OpenPGP and X.509.
optional
- a dictionary of fields that are optional for the server to understand. Their presence may cause the signing server to act differently. If any field in this category is not understood by the server it must ignore it.
§Required category
This specification defines two fields in the Required category:
-
input
- the input to the signing process. It is an object with two fields:type
- type of the input content. The following values are defined:sha2-0.11-SHA512-state
: Represents a hasher state, as expected by thesha2
crate. The format is stable across minor versions. Note that due to internal OpenPGP hashing mechanics this is not a digest of the data (e.g. a file) being signed.
content
- the actual bytes of the input content.
-
output
- the output of the signing process as expected by the client. This is an object with the following fields:type
- the type of the signature expected by the client. The following values are defined:OpenPGPv4
: OpenPGP v4 signatures
§Optional category
There are no defined fields in this category.
§Specification evolution
The specification can be extended by adding new fields or allowed values in minor version changes. If fields are removed, this constitutes a major version change to the specification. Old values are supported indefinitely (with the exception of security related changes). This allows older clients to keep using the same API and only upgrade when they want to take advantage of additional features.
If the client sends a request that is not spec-compliant (e.g. a required field has not been provided) the server MUST reject the request.
The following is a non-exhaustive list of non-compliant behavior:
- providing more or other fields than
version
,required
andoptional
, - providing more fields than
input
andoutput
inrequired
dictionary, - providing other values than the ones listed in the Required section.
Any changes in the optional
category are allowed, since this is explicitly an open-ended section.
Deprecation of values is handled in the same way: the old value is supported and the accepting party (i.e. the server) must transparently translate old, deprecated values to the new format.
Each change in the protocol must be documented in this specification.
Refer to the design document for an in-depth discussion of the technical details.
§Contributing
Please refer to the contributing guidelines to learn how to contribute to this project.
§License
This project may be used under the terms of the Apache-2.0 or MIT license.
Changes to this project - unless stated otherwise - automatically fall under the terms of both of the aforementioned licenses.
Modules§
- Command line interface.
Structs§
- Signing request.
- Required parameters for the signing request operation.
- Input of the signing request process.
- Outputs of the signing process.
Enums§
- Signature request processing error.
- Type of the input hash.
- The requested signature type.
Type Aliases§
- SHA-512 hasher.