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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* ConnectBot SSH Library
* Copyright 2025 Kenny Root
* Copyright 2025-2026 Kenny Root
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -21,8 +21,8 @@ package org.connectbot.sshlib
* Callback for keyboard-interactive authentication (RFC 4256).
*
* The server sends one or more info requests, each containing prompts
* that the user must answer. Call [respond] with the answers to send
* them back to the server.
* that the user must answer. [onInfoRequest] receives a `respond`
* callback; call it with the answers to send them back to the server.
*/
interface KeyboardInteractiveCallback {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ import org.connectbot.sshlib.crypto.encodeSshString
* For ECDSA-P256, [pack] accepts the DER `SEQUENCE { INTEGER r, INTEGER s }`
* format that CTAP2 returns and converts it to `mpint r || mpint s` internally.
*
* What [flags] and [counter] mean (from `PROTOCOL.u2f` §3.2): the FIDO2 device
* The `flags` and `counter` parameters of [pack] come from the CTAP2
* GetAssertion response. Per OpenSSH `PROTOCOL.u2f` §3.2, the FIDO2 device
* sets `flags = SK_USER_PRESENCE_REQUIRED (0x01)` if user presence was tested
* and `| SK_USER_VERIFICATION_REQUIRED (0x04)` if user verification was also
Comment thread
kruton marked this conversation as resolved.
* tested; `counter` is the device's monotonic signature counter. Both come
* from the CTAP2 GetAssertion response.
* tested; `counter` is the device's monotonic signature counter.
*/
public object SkSignatureBlob {

Expand Down
Loading