-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nikolai Trukhin
authored and
Nikolai Trukhin
committed
Mar 16, 2024
1 parent
6c59773
commit 881e780
Showing
7 changed files
with
404 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,3 @@ | ||
/target | ||
|
||
/include | ||
|
||
/Example.xcframework/ios-arm64/Example.framework/* | ||
/Example.xcframework/ios-arm64/Example.framework/Headers/* | ||
!/Example.xcframework/ios-arm64/Example.framework/Info.plist | ||
!/Example.xcframework/ios-arm64/Example.framework/Modules | ||
!/Example.xcframework/ios-arm64/Example.framework/Headers | ||
!/Example.xcframework/ios-arm64/Example.framework/Headers/exampleFFI.h | ||
|
||
/Example.xcframework/ios-arm64_x86_64-simulator/Example.framework/* | ||
/Example.xcframework/ios-arm64_x86_64-simulator/Example.framework/Headers/* | ||
!/Example.xcframework/ios-arm64_x86_64-simulator/Example.framework/Info.plist | ||
!/Example.xcframework/ios-arm64_x86_64-simulator/Example.framework/Modules | ||
!/Example.xcframework/ios-arm64_x86_64-simulator/Example.framework/Headers | ||
!/Example.xcframework/ios-arm64_x86_64-simulator/Example.framework/Headers/exampleFFI.h |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
1 change: 1 addition & 0 deletions
1
Example.xcframework/ios-arm64/Example.framework/Headers/Export.h
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
#include "exampleFFI.h" |
1 change: 1 addition & 0 deletions
1
Example.xcframework/ios-arm64_x86_64-simulator/Example.framework/Headers/Export.h
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
#include "exampleFFI.h" |
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,3 +1,6 @@ | ||
namespace example { | ||
bytes hash_embedding(bytes embedding); | ||
bytes encrypt(bytes prk, bytes pbk, bytes message); | ||
bytes decrypt(bytes prk, bytes pbk, bytes enc); | ||
bytes ext_sign_pubkey(bytes to_sign, bytes prk); | ||
bytes ext_generate_pubkey(bytes signed_bytes); | ||
}; |
Oops, something went wrong.