control 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. libjansson-dev (>= 2.10),
  10. libssl-dev (>= 1.0.2),
  11. meson,
  12. pkg-config,
  13. zlib1g-dev,
  14. Priority: optional
  15. Rules-Requires-Root: no
  16. Section: net
  17. Package: jose
  18. Architecture: any
  19. Depends: ${misc:Depends}, ${shlibs:Depends},
  20. Description: C implementation of Javascript Object Signing and Encryption standards
  21. José is a C-language implementation of the Javascript Object Signing
  22. and Encryption standards. Specifically, José aims towards implementing
  23. the following standards:
  24. .
  25. RFC 7515 - JSON Web Signature (JWS)
  26. RFC 7516 - JSON Web Encryption (JWE)
  27. RFC 7517 - JSON Web Key (JWK)
  28. RFC 7518 - JSON Web Algorithms (JWA)
  29. RFC 7519 - JSON Web Token (JWT)
  30. RFC 7520 - Examples of ... JOSE
  31. RFC 7638 - JSON Web Key (JWK) Thumbprint
  32. Package: libjose0
  33. Architecture: any
  34. Depends: ${misc:Depends}, ${shlibs:Depends},
  35. Section: libs
  36. Multi-Arch: same
  37. Description: Javascript Object Signing and Encryption (José) - library
  38. This package provides the shared library for José, a C-language
  39. implementation of the Javascript Object Signing and Encryption
  40. standards.
  41. Package: libjose-dev
  42. Architecture: any
  43. Depends: ${misc:Depends},
  44. libjansson-dev,
  45. libjose0 (= ${binary:Version}),
  46. libssl-dev,
  47. zlib1g-dev,
  48. Section: libdevel
  49. Description: Javascript Object Signing and Encryption (José) - development files
  50. This package provides the development files for José, a C-language
  51. implementation of the Javascript Object Signing and Encryption
  52. standards.