Skip to content

Commit 11380b7

Browse files
marinaioannousraptis-scy
authored andcommitted
docs updated
1 parent 1635594 commit 11380b7

16 files changed

Lines changed: 151 additions & 9 deletions

File tree

docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@
2121
| [eu.europa.ec.eudi.wallet.transfer.openId4vp](wallet-core/eu.europa.ec.eudi.wallet.transfer.openId4vp/index.md) |
2222
| [eu.europa.ec.eudi.wallet.transfer.openId4vp.dcql](wallet-core/eu.europa.ec.eudi.wallet.transfer.openId4vp.dcql/index.md) |
2323
| [eu.europa.ec.eudi.wallet.util](wallet-core/eu.europa.ec.eudi.wallet.util/index.md) |
24+
| [eu.europa.ec.eudi.wallet.zkp](wallet-core/eu.europa.ec.eudi.wallet.zkp/index.md) |
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[Circuit](index.md)/[Circuit](-circuit.md)
2+
3+
# Circuit
4+
5+
[androidJvm]\
6+
constructor(filename: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin/-string/index.html), bytes: ByteString)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[Circuit](index.md)/[bytes](bytes.md)
2+
3+
# bytes
4+
5+
[androidJvm]\
6+
val [bytes](bytes.md): ByteString
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[Circuit](index.md)/[filename](filename.md)
2+
3+
# filename
4+
5+
[androidJvm]\
6+
val [filename](filename.md): [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin/-string/index.html)
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[Circuit](index.md)
2+
3+
# Circuit
4+
5+
[androidJvm]\
6+
data class [Circuit](index.md)(val filename: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin/-string/index.html), val bytes: ByteString)
7+
8+
Data class representing a circuit with its filename and byte content.
9+
10+
## Constructors
11+
12+
| | |
13+
|---|---|
14+
| [Circuit](-circuit.md) | [androidJvm]<br>constructor(filename: [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin/-string/index.html), bytes: ByteString) |
15+
16+
## Properties
17+
18+
| Name | Summary |
19+
|---|---|
20+
| [bytes](bytes.md) | [androidJvm]<br>val [bytes](bytes.md): ByteString<br>the byte content of the circuit |
21+
| [filename](filename.md) | [androidJvm]<br>val [filename](filename.md): [String](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin/-string/index.html)<br>the name of the circuit file |
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[LongfellowCircuits](index.md)/[get](get.md)
2+
3+
# get
4+
5+
[androidJvm]\
6+
7+
@[JvmStatic](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin.jvm/-jvm-static/index.html)
8+
9+
fun [get](get.md)(context: [Context](https://developer.android.com/reference/kotlin/android/content/Context.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin.collections/-list/index.html)&lt;[Circuit](../-circuit/index.md)&gt;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[LongfellowCircuits](index.md)
2+
3+
# LongfellowCircuits
4+
5+
[androidJvm]\
6+
object [LongfellowCircuits](index.md)
7+
8+
Default Longfellow circuits.
9+
10+
## Functions
11+
12+
| Name | Summary |
13+
|---|---|
14+
| [get](get.md) | [androidJvm]<br>@[JvmStatic](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin.jvm/-jvm-static/index.html)<br>fun [get](get.md)(context: [Context](https://developer.android.com/reference/kotlin/android/content/Context.html)): [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin.collections/-list/index.html)&lt;[Circuit](../-circuit/index.md)&gt; |
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[LongfellowZkSystemRepository](index.md)/[LongfellowZkSystemRepository](-longfellow-zk-system-repository.md)
2+
3+
# LongfellowZkSystemRepository
4+
5+
[androidJvm]\
6+
constructor(circuits: [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin.collections/-list/index.html)&lt;[Circuit](../-circuit/index.md)&gt;)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[LongfellowZkSystemRepository](index.md)/[build](build.md)
2+
3+
# build
4+
5+
[androidJvm]\
6+
fun [build](build.md)(): ZkSystemRepository
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
//[wallet-core](../../../index.md)/[eu.europa.ec.eudi.wallet.zkp](../index.md)/[LongfellowZkSystemRepository](index.md)
2+
3+
# LongfellowZkSystemRepository
4+
5+
[androidJvm]\
6+
class [LongfellowZkSystemRepository](index.md)(circuits: [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin.collections/-list/index.html)&lt;[Circuit](../-circuit/index.md)&gt;)
7+
8+
Repository builder for Longfellow zero-knowledge proof systems.
9+
10+
## Constructors
11+
12+
| | |
13+
|---|---|
14+
| [LongfellowZkSystemRepository](-longfellow-zk-system-repository.md) | [androidJvm]<br>constructor(circuits: [List](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin-stdlib/kotlin.collections/-list/index.html)&lt;[Circuit](../-circuit/index.md)&gt;) |
15+
16+
## Functions
17+
18+
| Name | Summary |
19+
|---|---|
20+
| [build](build.md) | [androidJvm]<br>fun [build](build.md)(): ZkSystemRepository |

0 commit comments

Comments
 (0)