-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update plugin information #200
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
6a5c4a8
add faq page
mhmohona 9b1027f
plugin
mhmohona de9ceb8
update existing plugin
mhmohona 4b46f45
Merge branch 'main' into plugin
mhmohona 0204599
add github link
mhmohona 53f07df
Merge branch 'plugin' of https://github.com/mhmohona/WasmEdge_docs in…
mhmohona b2fa353
fix hyperlink
mhmohona d3fe60d
fix hyperlink
mhmohona File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -2,9 +2,71 @@ | |
sidebar_position: 8 | ||
--- | ||
|
||
# Build with Rusttls Plugin | ||
# Build with Rusttls Plug-in | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. May I ask where is the source for this doc? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This readme file - https://github.com/WasmEdge/WasmEdge/blob/master/plugins/wasm_bpf/README.md |
||
|
||
<!-- prettier-ignore --> | ||
:::info | ||
Work in Progress | ||
::: | ||
The WasmEdge Rustls plug-in is a replacement for the OpenSSL plug-in in WasmEdge. It provides a Rust-friendly interface to the Rustls library, which is a modern, fast, and more secure alternative to OpenSSL. | ||
|
||
Here's a step-by-step guide on how to build the WasmEdge Rustls plug-in: | ||
|
||
# Building the WasmEdge Rustls Plug-in | ||
|
||
The WasmEdge Rustls plug-in is a replacement for the OpenSSL plug-in in WasmEdge. It provides a Rust-friendly interface to the Rustls library, which is a modern, fast, and more secure alternative to OpenSSL. | ||
|
||
Here's a step-by-step guide on how to build the WasmEdge Rustls plug-in: | ||
|
||
## Prerequisites | ||
|
||
Ensure the following dependencies are installed on your system: | ||
|
||
- Rust: You can install it from the [official website](https://www.rust-lang.org/tools/install). | ||
- CMake: Minimum version 3.12. Install it from the [official website](https://cmake.org/download/). | ||
|
||
## Clone the WasmEdge Repository | ||
|
||
First, clone the WasmEdge repository from GitHub: | ||
|
||
```bash | ||
git clone https://github.com/WasmEdge/WasmEdge.git | ||
``` | ||
|
||
## Navigate to the Rustls Plug-in Directory | ||
|
||
Navigate to the `wasmedge_rustls` directory within the cloned repository: | ||
|
||
```bash | ||
cd WasmEdge/plugins/wasmedge_rustls | ||
``` | ||
|
||
## Build the Plug-in | ||
|
||
Now you can build the Rustls plug-in. Run the following command: | ||
|
||
```bash | ||
cargo build --release | ||
``` | ||
|
||
This command builds the plug-in in release mode. The compiled binary will be located in the `target/release` directory. | ||
|
||
## Install the Plug-in | ||
|
||
To install the plug-in, you can use the `cargo install` command: | ||
|
||
```bash | ||
cargo install --path . | ||
``` | ||
|
||
This command will install the built plug-in into your Rust binary directory. | ||
|
||
## Usage | ||
|
||
To use the plug-in with WasmEdge, you need to specify it when starting the WasmEdge runtime: | ||
|
||
```bash | ||
wasmedge --dir .:. --reactor --rustls_plugin target/release/libwasmedge_rustls.so your_wasm_file.wasm | ||
``` | ||
|
||
Replace `your_wasm_file.wasm` with the path to your WebAssembly file. The `--rustls_plugin` flag specifies the path to the Rustls plug-in. | ||
|
||
That's it! You have successfully built and installed the WasmEdge Rustls plug-in. Please ensure to replace the OpenSSL plug-in with the Rustls plug-in in your WasmEdge runtime configuration if you were previously using OpenSSL. | ||
|
||
For more information, you can refer to the [GitHub repository](https://github.com/WasmEdge/WasmEdge/tree/master/plugins/wasi_crypto). |
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May I ask where is the source for this doc?