MVN

com.aayushatharva : AtomicCrypto

Maven & Gradle

Feb 25, 2019
2 stars

AtomicCrypto · AtomicCrypto is a Java Library which uses NSA Suite B Cryptography. This means it uses AES-256-GCM to encrypt data and for asymmetric cryptography it uses ECDH with curve P-256 as default key agreement.

<dependency>
    <groupId>com.aayushatharva</groupId>
    <artifactId>AtomicCrypto</artifactId>
    <version>1.2.1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.aayushatharva : AtomicCrypto to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.1.0

All Versions

Choose a version of com.aayushatharva : AtomicCrypto to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
AtomicCrypto-1.2.1.0
AtomicCrypto-1.2.0.0
1.1.x
AtomicCrypto-1.1.0.1
AtomicCrypto-1.1.0.0

How to add a dependency to Maven

Add the following com.aayushatharva : AtomicCrypto maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.aayushatharva</groupId>
    <artifactId>AtomicCrypto</artifactId>
    <version>1.2.1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.aayushatharva : AtomicCrypto gradle dependency to your build.gradle file:

implementation 'com.aayushatharva:AtomicCrypto:1.2.1.0'

Gradle Kotlin DSL: Add the following com.aayushatharva : AtomicCrypto gradle kotlin dependency to your build.gradle.kts file:

implementation("com.aayushatharva:AtomicCrypto:1.2.1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.aayushatharva : AtomicCrypto sbt scala dependency to your build.sbt file:

libraryDependencies += "com.aayushatharva" % "AtomicCrypto" % "1.2.1.0"

Advertisement