hdm-am 0.3.0

Client for the Armenian fiscal cash register (HDM) protocol per the State Revenue Committee spec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OperatorLoginResponse",
  "description": "Op 2 response: the Base64-encoded session key.\n\nDeliberately does **not** derive `Serialize` (so it can't leak via `--json`), and its `Debug` is\nhand-written to redact `key`: the session secret must never be casually written to logs or\noutput. The client consumes it internally and never exposes it.",
  "type": "object",
  "properties": {
    "key": {
      "description": "24-byte session key, Base64-encoded.",
      "type": "string"
    }
  },
  "required": [
    "key"
  ]
}