-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: constructor and access to some methods were missing in ios (#93)
Co-authored-by: Ahmed Moussa <[email protected]> Signed-off-by: Goncalo Frade <[email protected]>
- Loading branch information
1 parent
1e80892
commit 9bc0392
Showing
4 changed files
with
7 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 1 addition & 7 deletions
8
...tric-encryption/src/iosMain/kotlin/io/iohk/atala/prism/apollo/utils/KMMX25519PublicKey.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
package io.iohk.atala.prism.apollo.utils | ||
|
||
actual class KMMX25519PublicKey { | ||
public val raw: ByteArray | ||
|
||
constructor(raw: ByteArray) { | ||
this.raw = raw | ||
} | ||
} | ||
actual class KMMX25519PublicKey(val raw: ByteArray = ByteArray(0)) |