
Cryptography library enables secure operations across multiple platforms, including JS, iOS, Android, and JVM. Supports integration via popular dependency management systems and offers comprehensive setup guidance.
A cryptography lib built with Kotlin Multiplatform with support for the following targets:
In build.gradle.kts files include the dependency
repositories {
mavenCentral()
}For dependencies
dependencies {
implementation("org.hyperledger.identus:apollo:<latest version>")
}Inside your Package.swift file, add the following
dependencies: [
.package(
url: "git@github.com:hyperledger/identus-apollo.git",
from: "<latest version>"
)
]The following instruction using Xcode 15
ApolloBinary.xcframework.zip file.ApolloBinary.xcframework to your Xcode project.ApolloBinary.xcframework if not found then choose Embed & Sign.[!WARNING]
For Intel iOS simulator: You need to add the following flag as YES EMBEDDED_CONTENT_CONTAINS_SWIFT=YES on the target like so:
Package.swift
Package(
...
targets: .testTarget(
...
swiftSettings: [.define("EMBEDDED_CONTENT_CONTAINS_SWIFT=YES")]
...
)
)Inside the package.json
{
"dependencies": {
"@hyperledger/identus-apollo": "<latest version>"
}
}In the project build.gradle
allprojects {
repositories {
// along with all the other current existing repos add the following
mavenCentral()
}
}In the module build.gradle
kotlin {
sourceSets {
commonMain {
dependencies {
// This following is just an example you can import it as per you needs
implementation 'org.hyperledger.identus:apollo:<latest version>'
}
}
}
}In the project build.gradle.kts
allprojects {
repositories {
// along with all the other current existing repos add the following
mavenCentral()
}
}kotlin {
sourceSets {
val commonMain by getting {
dependencies {
// This following is just an example you can import it as per you needs
implementation("org.hyperledger.identus:apollo:<latest version>")
}
}
}
}libraryDependencies += "org.hyperledger.identus" % "apollo-jvm" % "<latest version>"Please have a look at unit tests, more samples will be added soon.
See BUILDING.md for instructions on how to build Apollo from source.
See CONTRIBUTING.md and CODE_OF_CONDUCT.md for instructions on how to contribute
This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See http://www.wassenaar.org/ for more information.
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely.
A cryptography lib built with Kotlin Multiplatform with support for the following targets:
In build.gradle.kts files include the dependency
repositories {
mavenCentral()
}For dependencies
dependencies {
implementation("org.hyperledger.identus:apollo:<latest version>")
}Inside your Package.swift file, add the following
dependencies: [
.package(
url: "git@github.com:hyperledger/identus-apollo.git",
from: "<latest version>"
)
]The following instruction using Xcode 15
ApolloBinary.xcframework.zip file.ApolloBinary.xcframework to your Xcode project.ApolloBinary.xcframework if not found then choose Embed & Sign.[!WARNING]
For Intel iOS simulator: You need to add the following flag as YES EMBEDDED_CONTENT_CONTAINS_SWIFT=YES on the target like so:
Package.swift
Package(
...
targets: .testTarget(
...
swiftSettings: [.define("EMBEDDED_CONTENT_CONTAINS_SWIFT=YES")]
...
)
)Inside the package.json
{
"dependencies": {
"@hyperledger/identus-apollo": "<latest version>"
}
}In the project build.gradle
allprojects {
repositories {
// along with all the other current existing repos add the following
mavenCentral()
}
}In the module build.gradle
kotlin {
sourceSets {
commonMain {
dependencies {
// This following is just an example you can import it as per you needs
implementation 'org.hyperledger.identus:apollo:<latest version>'
}
}
}
}In the project build.gradle.kts
allprojects {
repositories {
// along with all the other current existing repos add the following
mavenCentral()
}
}kotlin {
sourceSets {
val commonMain by getting {
dependencies {
// This following is just an example you can import it as per you needs
implementation("org.hyperledger.identus:apollo:<latest version>")
}
}
}
}libraryDependencies += "org.hyperledger.identus" % "apollo-jvm" % "<latest version>"Please have a look at unit tests, more samples will be added soon.
See BUILDING.md for instructions on how to build Apollo from source.
See CONTRIBUTING.md and CODE_OF_CONDUCT.md for instructions on how to contribute
This distribution includes cryptographic software. The country in which you currently reside may have restrictions on the import, possession, use, and/or re-export to another country, of encryption software. BEFORE using any encryption software, please check your country's laws, regulations and policies concerning the import, possession, or use, and re-export of encryption software, to see if this is permitted. See http://www.wassenaar.org/ for more information.
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely.