Reintegrate branch 'master' into documentation-fixes
Marco Ricci

Marco Ricci commited on 2024-09-22 19:25:40
Zeige 1 geänderte Dateien mit 6 Einfügungen und 0 Löschungen.


* master:
  Remove debugging-only code and add missing docstring in pytest fixtures
  Add Changelog entry for the test suite SSH agent spawner
  Add test fixture for manually spawning known SSH agents
  Retire non-repeatability check for unsuitable SSH keys in the tests
  Add principal support for uploading SSH keys to the agent
  Simplify some SSH agent key uploading tests
  Support passing expected SSH agent response codes
... ...
@@@ -176,11 -176,15 +176,17 @@@ class SSH_AGENTC(enum.Enum):  # noqa: N
176 176
  
177 177
      Attributes:
178 178
          REQUEST_IDENTITIES:
179 179
 -            List identities.  Expecting `SSH_AGENT.IDENTITIES_ANSWER`.
180 180
 +            List identities.  Expecting [`SSH_AGENT.IDENTITIES_ANSWER`]
181 181
 +            [derivepassphrase._types.SSH_AGENT].
182 182
          SIGN_REQUEST:
183 183
 -            Sign data.  Expecting `SSH_AGENT.SIGN_RESPONSE`.
184 184
 +            Sign data.  Expecting [`SSH_AGENT.SIGN_RESPONSE`]
185 185
 +            [derivepassphrase._types.SSH_AGENT].
186
+         ADD_IDENTITY:
187
+             Add an (SSH2) identity.
188
+         REMOVE_IDENTITY:
189
+             Remove an (SSH2) identity.
190
+         ADD_ID_CONSTRAINED:
191
+             Add an (SSH2) identity, including key constraints.
186 192
  
187 193
      """
188 194
  
189 195