control 1.7 KB

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