Skip to content

Commit 7c154d2

Browse files
authored
AEAD-2022 ciphers (new protocol) (#811)
1 parent c99ed3a commit 7c154d2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3397
-630
lines changed

.github/workflows/build-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@ jobs:
4747
run: cargo test --manifest-path ./crates/shadowsocks/Cargo.toml --verbose --no-default-features --no-fail-fast
4848
- name: Build with All Features Enabled (Unix)
4949
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
50-
run: cargo build --verbose --features "local-http-rustls local-redir local-dns dns-over-tls dns-over-https stream-cipher local-tun"
50+
run: cargo build --verbose --features "local-http-rustls local-redir local-dns local-tun dns-over-tls dns-over-https stream-cipher aead-cipher-2022"
5151
- name: Build with All Features Enabled (Windows)
5252
if: ${{ runner.os == 'Windows' }}
53-
run: cargo build --verbose --features "local-http-rustls local-dns dns-over-tls dns-over-https stream-cipher"
53+
run: cargo build --verbose --features "local-http-rustls local-dns dns-over-tls dns-over-https stream-cipher aead-cipher-2022"
5454
- name: Build with All Features Enabled - shadowsocks
55-
run: cargo build --manifest-path ./crates/shadowsocks/Cargo.toml --verbose --features "stream-cipher"
55+
run: cargo build --manifest-path ./crates/shadowsocks/Cargo.toml --verbose --features "stream-cipher aead-cipher-2022"
5656
- name: Clippy Check
5757
uses: actions-rs/clippy-check@v1
5858
with:
5959
name: clippy-${{ matrix.platform }}
6060
token: ${{ secrets.GITHUB_TOKEN }}
6161
args: |
62-
--verbose --features "local-http-rustls local-redir local-dns dns-over-tls dns-over-https stream-cipher" -- -Z macro-backtrace
62+
--features "local-http-rustls local-redir local-dns dns-over-tls dns-over-https stream-cipher aead-cipher-2022" -- -Z macro-backtrace
6363
-W clippy::absurd_extreme_comparisons
6464
-W clippy::erasing_op
6565
-A clippy::collapsible_else_if

0 commit comments

Comments
 (0)