control 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. Source: jose
  2. Maintainer: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Homepage: https://github.com/latchset/jose
  4. Standards-Version: 4.6.0
  5. Vcs-Browser: https://git.in-ulm.de/cbiedl/jose
  6. Vcs-Git: https://git.in-ulm.de/cbiedl/jose.git
  7. Build-Depends: debhelper-compat (= 13),
  8. asciidoctor,
  9. jq,
  10. libjansson-dev (>= 2.10),
  11. libssl-dev (>= 1.0.2),
  12. meson,
  13. pkg-config,
  14. zlib1g-dev,
  15. Priority: optional
  16. Rules-Requires-Root: no
  17. Section: net
  18. Package: jose
  19. Architecture: any
  20. Depends: ${misc:Depends}, ${shlibs:Depends},
  21. Description: C implementation of Javascript Object Signing and Encryption standards
  22. José is a C-language implementation of the Javascript Object Signing
  23. and Encryption standards. Specifically, José aims towards implementing
  24. the following standards:
  25. .
  26. RFC 7515 - JSON Web Signature (JWS)
  27. RFC 7516 - JSON Web Encryption (JWE)
  28. RFC 7517 - JSON Web Key (JWK)
  29. RFC 7518 - JSON Web Algorithms (JWA)
  30. RFC 7519 - JSON Web Token (JWT)
  31. RFC 7520 - Examples of ... JOSE
  32. RFC 7638 - JSON Web Key (JWK) Thumbprint
  33. Package: libjose0
  34. Architecture: any
  35. Depends: ${misc:Depends}, ${shlibs:Depends},
  36. Section: libs
  37. Multi-Arch: same
  38. Description: Javascript Object Signing and Encryption (José) - library
  39. This package provides the shared library for José, a C-language
  40. implementation of the Javascript Object Signing and Encryption
  41. standards.
  42. Package: libjose-dev
  43. Architecture: any
  44. Depends: ${misc:Depends},
  45. libjansson-dev,
  46. libjose0 (= ${binary:Version}),
  47. libssl-dev,
  48. zlib1g-dev,
  49. Section: libdevel
  50. Description: Javascript Object Signing and Encryption (José) - development files
  51. This package provides the development files for José, a C-language
  52. implementation of the Javascript Object Signing and Encryption
  53. standards.