cli_help.txt 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Usage:
  2. totp (help | h | ?)
  3. totp version
  4. totp (list | ls)
  5. totp (lsattr | cat) <index>
  6. totp (add | mk | new) <name> [-t <type>] [-i <counter>] [-a <algo>] [-e <encoding>] [-d <digits>] [-l <duration>] [-u] [-b <feature>]...
  7. totp (update) <index> [-t <type>] [-i <counter>] [-a <algo>] [-e <encoding>] [-n <name>] [-d <digits>] [-l <duration>] [-u] [-s] [-b <feature>]...
  8. totp (delete | rm) <index> [-f]
  9. totp (move | mv) <index> <new_index>
  10. totp pin (set | remove) [-c <slot>]
  11. totp notify [<notification>...]
  12. totp (timezone | tz) [<timezone>]
  13. totp reset
  14. totp automation [-k <layout>] [-w <delay>] [<automation>...]
  15. totp export
  16. Commands:
  17. help, h, ? Show command usage help
  18. version Get application version
  19. list, ls List all available tokens
  20. lsattr, cat Displays token details
  21. add, mk, new Add new token
  22. update Update existing token
  23. delete, rm Delete existing token
  24. move, mv Move token
  25. pin Set\change\remove PIN
  26. notify Get or set notification method
  27. timezone, tz Get or set current timezone
  28. reset Reset application to default settings
  29. automation Get or set automation settings
  30. export Exports and prints all the tokens into URI-list format
  31. Arguments:
  32. name Token name
  33. index Token index in the list
  34. new_index New token index in the list
  35. notification Notification method to be set. Must be one of: none, sound, vibro
  36. timezone Timezone offset in hours to be set
  37. automation Automation method to be set. Must be one of: none, usb, bt
  38. Options:
  39. -t <type> Token type. Must be one of: totp, hotp [default: totp]
  40. -i <counter> Token initial counter. Applicable for HOTP tokens only. Must be positive integer number [default: 0]
  41. -a <algo> Token hashing algorithm. Must be one of: sha1, sha256, sha512, steam [default: sha1]
  42. -d <digits> Token digits count. Must be one of: 5, 6, 8 [default: 6]
  43. -e <encoding> Token secret encoding, one of base32, base64 [default: base32]
  44. -l <duration> Token lifetime duration in seconds. Applicable for TOTP tokens only. Must be between: 15 and 255 [default: 30]
  45. -u Show console user input as-is without masking
  46. -b <feature> Token automation features to be enabled. Must be one of: none, enter, tab [default: none]
  47. # none - No features
  48. # enter - Type <Enter> key at the end of token input automation
  49. # tab - Type <Tab> key at the end of token input automation
  50. # slower - Type slower
  51. -n <name> Token name
  52. -s Update token secret
  53. -f Force command to do not ask user for interactive confirmation
  54. -c <slot> New crypto key slot. Must be between 12 and 100
  55. -k <layout> Automation keyboard layout. Must be one of: QWERTY, AZERTY, QWERTZ, Czech, Dvorak, Hungarian, Slovak
  56. -w <delay> Automation initial delay in seconds. Must be positive float value [default: 0.5]