pii-encryptor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.nabhosal</groupId>
<artifactId>pii-encryptor</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.nabhosal</groupId>
<artifactId>pii-encryptor</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.9</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.13</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.7</version>
<scope>compile</scope>
</dependency>
</dependencies>
<description>Utility for encrypting & decryption field level PII (i.e Personally identifiable information) in document. Useful utility for implementing in-house Payment Card Industry ( PCI ) or similar compliance.</description>
<name>PII-Encryptor</name>
<url>https://github.com/nabhosal/pii-encryptor</url>
<organization>
<name>io.github.nabhosal</name>
<url>https://github.com/nabhosal</url>
</organization>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/nabhosal/pii-encryptor/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://github.com/nabhosal/pii-encryptor/blob/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/nabhosal/pii-encryptor</url>
<connection>scm:git:git://github.com/nabhosal/pii-encryptor.git</connection>
<developerConnection>scm:git:ssh://git@github.com:nabhosal/pii-encryptor.git</developerConnection>
</scm>
<developers>
<developer>
<name>nabhosal</name>
</developer>
</developers>
</project>