mirror of
https://github.com/cashapp/zipline.git
synced 2026-03-13 10:23:19 +08:00
* 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
17 lines
454 B
Kotlin
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")
|