control 1.7 KB

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