Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# .gitignore exclusion rules

# Visual Studio
/.vs

# Visual Studio Code Workspace Files
*.vscode

# Backup files
*.bak
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,21 @@ git clone https://github.com/wolfssl/wolfssl.git

To install the SM code into wolfSSL, use the install script:

```
```bash
cd wolfsm
./install.sh
```

If you have wolfssl installed in a different directory, such as `wolfssl-username`:

```bash
cd wolfsm
./install.sh ../wolfssl-$USER
```

The following file will be placed in wolfssl/wolfssl:
* certs_test_sm.h

The following files will be placed in wolfssl/wolfssl/wolfcrypt:
* sm2.h
* sm3.h
Expand Down
Loading