Skip to content

Commit

Permalink
add openssl doc
Browse files Browse the repository at this point in the history
  • Loading branch information
richerfu committed Mar 21, 2024
1 parent a5ecb9e commit 2f87324
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .vitepress/Ecosystem.mts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,11 @@ export const EcosystemSideBar: DefaultTheme.SidebarItem[] = [
{text: 'init', link: "/ecosystem/binding/init"},
]
},
{
text: 'Third-Party',
collapsed: false,
items: [
{text: 'OpenSSL', link: "/ecosystem/third/openssl"}
]
}
];
17 changes: 17 additions & 0 deletions src/ecosystem/third/openssl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
editLink: true
---

# OpenSSL

In OpenHarmony, the official does not provide out-of-the-box openssl capabilities, but this library exists as the basic capability of a large number of other basic capabilities. Therefore, we need to build the openssl library that can run on OpenHarmony ourselves. We provide basic pre-built products, supporting the following platforms.

- arm64-v8a
- armeabi-v7a
- x86_64

We provide some simple usage examples, which are based on the `reqwest` package. You can find them in the code [here](https://github.com/ohos-rs/example/tree/main/example/reqwest).

## Source Code

You can find the pre-built products [here](https://github.com/ohos-rs/ohos-openssl).

0 comments on commit 2f87324

Please sign in to comment.