1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 17:46:58 -05:00

Chore: format code (#842)

This commit is contained in:
Loyalsoldier 2021-04-02 20:49:45 +08:00 committed by GitHub
parent 1b665d1d36
commit c80a6df749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
package antireplay package antireplay
import ( import (
ss_bloomring "github.com/v2fly/ss-bloomring"
"sync" "sync"
ss_bloomring "github.com/v2fly/ss-bloomring"
) )
type BloomRing struct { type BloomRing struct {

View File

@ -6,13 +6,13 @@ import (
"crypto/cipher" "crypto/cipher"
"crypto/md5" "crypto/md5"
"crypto/sha1" "crypto/sha1"
"github.com/v2fly/v2ray-core/v4/common/antireplay"
"io" "io"
"golang.org/x/crypto/chacha20poly1305" "golang.org/x/crypto/chacha20poly1305"
"golang.org/x/crypto/hkdf" "golang.org/x/crypto/hkdf"
"github.com/v2fly/v2ray-core/v4/common" "github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/common/antireplay"
"github.com/v2fly/v2ray-core/v4/common/buf" "github.com/v2fly/v2ray-core/v4/common/buf"
"github.com/v2fly/v2ray-core/v4/common/crypto" "github.com/v2fly/v2ray-core/v4/common/crypto"
"github.com/v2fly/v2ray-core/v4/common/protocol" "github.com/v2fly/v2ray-core/v4/common/protocol"