jose-alg.1.adoc 955 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. jose-alg(1)
  2. ===========
  3. :doctype: manpage
  4. == NAME
  5. jose-alg - Lists all supported algorithms
  6. == SYNOPSIS
  7. *jose alg* [-k KIND]
  8. == OVERVIEW
  9. The *jose alg* command lists the algorithms supported by all *jose* commands.
  10. Since *jose* supports different kinds of algorithms (encryption, signing,
  11. hashing, etc.), you can limit the kinds of algorithms you would like to see
  12. using the *-k* option (which can be specified multiple times). For a list of
  13. the different kinds of algorithms, use the *-k ?* option. If the *-k* option is
  14. not used, all algorithms, regardless of their kind, will be listed.
  15. == OPTIONS
  16. * *-k* _KIND_, *--kind*=_KIND_ :
  17. Restrict algorithm list to a certain kind
  18. * *-k* ?, *--kind*=? :
  19. List valid algorithm kinds
  20. == EXAMPLES
  21. List all encryption algorithms:
  22. $ jose alg -k encr
  23. A128CBC-HS256
  24. A128GCM
  25. A192CBC-HS384
  26. A192GCM
  27. A256CBC-HS512
  28. A256GCM
  29. == AUTHOR
  30. Nathaniel McCallum <npmccallum@redhat.com>