control 1.7 KB

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