{
  "bundles": [
    {
      "@type": "NXBundle",
      "artifactId": "nuxeo-platform-signature-api",
      "artifactVersion": "2021.7.15",
      "bundleGroup": {
        "@type": "NXBundleGroup",
        "bundleIds": [
          "org.nuxeo.ecm.platform.signature.api",
          "org.nuxeo.ecm.platform.signature.config",
          "org.nuxeo.ecm.platform.signature.core"
        ],
        "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.signature",
        "id": "grp:org.nuxeo.ecm.platform.signature",
        "name": "org.nuxeo.ecm.platform.signature",
        "parentIds": [
          "grp:org.nuxeo.ecm.platform"
        ],
        "readmes": [
          {
            "blobProviderId": "default",
            "content": "# Nuxeo Platform Signature\n\n\nThis is a digital signature plugin for signing PDF files. It provides multiple functionalities related to digital signing of documents, among others:\n\n1. to create user certificates and store them within the Nuxeo CAP Instance.\n2. to sign pdf documents\n3. to share/download the local root certificate used for signing all documents within the domain\n\n\n<A name=\"buildinganddeploying\"></A>\n## Building and deploying\n\nTo see the list of all commands available for building and deploying, use the following:\n\n    $ ant usage\n\n### How to build\n\nYou can build Nuxeo Digital Signature plugin with:\n\n    $ ant build\n\nIf you want to build and launch the tests, do it with:\n\n    $ ant build-with-tests\n\n### How to deploy\n\nConfigure the build.properties files (starting from the `build.properties.sample` file to be found in the current folder), to point your Tomcat instance:\n\n    $ cp build.properties.sample build.properties\n    $ vi build.properties\n\nYou can then deploy Nuxeo Digital Signature to your Tomcat instance with:\n\n    $ ant deploy-tomcat\n\nYou can also take all generated jar files (currently 3, present in the target directories of all submodules of this project), copy them into `$NUXEO_HOME/templates/custom/bundles/` and activate the \"custom\" template.\n\n\n## Project Structure\n\nThis project can be divided conceptually into 3 parts:\n\n1) certificate generation (low-level PKI object operations, CA operations)\n\n2) certificate persistence (storing and retrieving keystores containing certificates inside nuxeo directories)\n\n3) pdf signing with an existing certificate\n\n\n## Configuration:\n\n1) Install your root keystore file in a secured directory\n\nTo do initial testing you can use the keystore specified in:\n./nuxeo-platform-signature-core/src/main/resources/OSGI-INF/root-contrib.xml\n\n2) You might have to modify your server system's java encryption configuration by installing JCE Unlimited Strength Jurisdiction Policy Files needed for passwords longer than 7 characters,\n\n*Note: cryptography exportation laws differ between countries so make sure you are using adequate encryption configuration, libraries and tools.*\n\n\n# About Nuxeo\n\nNuxeo dramatically improves how content-based applications are built, managed and deployed, making customers more agile, innovative and successful. Nuxeo provides a next generation, enterprise ready platform for building traditional and cutting-edge content oriented applications. Combining a powerful application development environment with SaaS-based tools and a modular architecture, the Nuxeo Platform and Products provide clear business value to some of the most recognizable brands including Verizon, Electronic Arts, Sharp, FICO, the U.S. Navy, and Boeing. Nuxeo is headquartered in New York and Paris. More information is available at www.nuxeo.com.",
            "digest": "22f56d5291b9c9107486dbf2319cb39c",
            "encoding": "UTF-8",
            "length": 2832,
            "mimeType": "text/plain",
            "name": "README.md"
          }
        ],
        "version": "2021.7"
      },
      "bundleId": "org.nuxeo.ecm.platform.signature.api",
      "components": [],
      "fileName": "nuxeo-platform-signature-api-2021.7.15.jar",
      "groupId": "org.nuxeo.ecm.platform",
      "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.signature/org.nuxeo.ecm.platform.signature.api",
      "id": "org.nuxeo.ecm.platform.signature.api",
      "location": "",
      "manifest": "Manifest-Version: 1.0\r\nArchiver-Version: Plexus Archiver\r\nCreated-By: Apache Maven\r\nBuilt-By: root\r\nBuild-Jdk: 11.0.12\r\nBundle-ManifestVersion: 1\r\nBundle-Version: 1.0.0\r\nBundle-Name: Digital Signature Api\r\nBundle-SymbolicName: org.nuxeo.ecm.platform.signature.api;singleton:=t\r\n rue\r\nRequire-Bundle:  org.nuxeo.ecm.core,org.nuxeo.runtime,org.nuxeo.ecm.co\r\n re.api\r\n\r\n",
      "packages": [
        "nuxeo-signature"
      ],
      "parentReadme": {
        "blobProviderId": "default",
        "content": "# Nuxeo Platform Signature\n\n\nThis is a digital signature plugin for signing PDF files. It provides multiple functionalities related to digital signing of documents, among others:\n\n1. to create user certificates and store them within the Nuxeo CAP Instance.\n2. to sign pdf documents\n3. to share/download the local root certificate used for signing all documents within the domain\n\n\n<A name=\"buildinganddeploying\"></A>\n## Building and deploying\n\nTo see the list of all commands available for building and deploying, use the following:\n\n    $ ant usage\n\n### How to build\n\nYou can build Nuxeo Digital Signature plugin with:\n\n    $ ant build\n\nIf you want to build and launch the tests, do it with:\n\n    $ ant build-with-tests\n\n### How to deploy\n\nConfigure the build.properties files (starting from the `build.properties.sample` file to be found in the current folder), to point your Tomcat instance:\n\n    $ cp build.properties.sample build.properties\n    $ vi build.properties\n\nYou can then deploy Nuxeo Digital Signature to your Tomcat instance with:\n\n    $ ant deploy-tomcat\n\nYou can also take all generated jar files (currently 3, present in the target directories of all submodules of this project), copy them into `$NUXEO_HOME/templates/custom/bundles/` and activate the \"custom\" template.\n\n\n## Project Structure\n\nThis project can be divided conceptually into 3 parts:\n\n1) certificate generation (low-level PKI object operations, CA operations)\n\n2) certificate persistence (storing and retrieving keystores containing certificates inside nuxeo directories)\n\n3) pdf signing with an existing certificate\n\n\n## Configuration:\n\n1) Install your root keystore file in a secured directory\n\nTo do initial testing you can use the keystore specified in:\n./nuxeo-platform-signature-core/src/main/resources/OSGI-INF/root-contrib.xml\n\n2) You might have to modify your server system's java encryption configuration by installing JCE Unlimited Strength Jurisdiction Policy Files needed for passwords longer than 7 characters,\n\n*Note: cryptography exportation laws differ between countries so make sure you are using adequate encryption configuration, libraries and tools.*\n\n\n# About Nuxeo\n\nNuxeo dramatically improves how content-based applications are built, managed and deployed, making customers more agile, innovative and successful. Nuxeo provides a next generation, enterprise ready platform for building traditional and cutting-edge content oriented applications. Combining a powerful application development environment with SaaS-based tools and a modular architecture, the Nuxeo Platform and Products provide clear business value to some of the most recognizable brands including Verizon, Electronic Arts, Sharp, FICO, the U.S. Navy, and Boeing. Nuxeo is headquartered in New York and Paris. More information is available at www.nuxeo.com.",
        "digest": "22f56d5291b9c9107486dbf2319cb39c",
        "encoding": "UTF-8",
        "length": 2832,
        "mimeType": "text/plain",
        "name": "README.md"
      },
      "requirements": [
        "org.nuxeo.ecm.core",
        "org.nuxeo.runtime",
        "org.nuxeo.ecm.core.api"
      ],
      "version": "2021.7.15"
    }
  ],
  "creationDate": 1664794077570,
  "key": "Nuxeo Platform-2021.7",
  "name": "Nuxeo Platform",
  "operations": [],
  "packages": [
    {
      "@type": "NXPackage",
      "bundles": [
        "org.nuxeo.ecm.platform.signature.api",
        "org.nuxeo.ecm.platform.signature.config",
        "org.nuxeo.ecm.platform.signature.core"
      ],
      "conflicts": [],
      "dependencies": [],
      "hierarchyPath": "/nuxeo-signature-2021.7.15",
      "id": "nuxeo-signature-2021.7.15",
      "name": "nuxeo-signature",
      "optionalDependencies": [],
      "packageType": "addon",
      "title": "Digital Signature",
      "version": "2021.7.15"
    }
  ],
  "pluginSnapshots": {},
  "releaseDate": 1664755200000,
  "version": "2021.7"
}