Files
zipline/settings.gradle.kts
Alex Szlavik 119ec004f0 Adding zipline-cryptography package (#1215)
* Adding zipline-security package to provide cryptographic APIs for guest code

Adding a new package to support cryptography primitives in zipline.
This PR adds project layout and an implementation of a Random (SecureRandom specifically) interface.
This commit only adds end to end testing via zipline.ZiplineSecurityTest.

Paired with @swankjesse, @alvinsee

* Fixing up copyright headers

* Rename zipline-security to zipline-cryptography

* Addressing comments

Refactored appleMain nextSecureRandomBytes to avoid null usage.
Fixup visibility modifier for internal RealCryptographyService.

* Fix linux tests through 'isLinux' platform identification

* A few more renames of files and zipline services
2024-01-18 13:17:16 -05:00

17 lines
454 B
Kotlin

rootProject.name = "zipline-root"
include(":zipline")
include(":zipline-api-validator")
include(":zipline-bytecode")
include(":zipline-cli")
include(":zipline-cryptography")
include(":zipline-gradle-plugin")
include(":zipline-kotlin-plugin")
include(":zipline-kotlin-plugin-tests")
include(":zipline-loader")
include(":zipline-loader-testing")
include(":zipline-profiler")
include(":zipline-testing")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")