forked from v2ray/v2ray-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f884ed
commit a46db06
Showing
7 changed files
with
90 additions
and
109 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
package crypto | ||
|
||
import ( | ||
"crypto/aes" | ||
"crypto/cipher" | ||
"io" | ||
) | ||
|
||
func NewAesDecryptionStream(key []byte, iv []byte) (cipher.Stream, error) { | ||
aesBlock, err := aes.NewCipher(key) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return cipher.NewCFBDecrypter(aesBlock, iv), nil | ||
} | ||
|
||
func NewAesEncryptionStream(key []byte, iv []byte) (cipher.Stream, error) { | ||
aesBlock, err := aes.NewCipher(key) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return cipher.NewCFBEncrypter(aesBlock, iv), nil | ||
} | ||
|
||
type cryptionReader struct { | ||
stream cipher.Stream | ||
reader io.Reader | ||
} | ||
|
||
func NewCryptionReader(stream cipher.Stream, reader io.Reader) io.Reader { | ||
return &cryptionReader{ | ||
stream: stream, | ||
reader: reader, | ||
} | ||
} | ||
|
||
func (this *cryptionReader) Read(data []byte) (int, error) { | ||
nBytes, err := this.reader.Read(data) | ||
if nBytes > 0 { | ||
this.stream.XORKeyStream(data[:nBytes], data[:nBytes]) | ||
} | ||
return nBytes, err | ||
} | ||
|
||
type cryptionWriter struct { | ||
stream cipher.Stream | ||
writer io.Writer | ||
} | ||
|
||
func NewCryptionWriter(stream cipher.Stream, writer io.Writer) io.Writer { | ||
return &cryptionWriter{ | ||
stream: stream, | ||
writer: writer, | ||
} | ||
} | ||
|
||
func (this *cryptionWriter) Write(data []byte) (int, error) { | ||
this.stream.XORKeyStream(data, data) | ||
return this.writer.Write(data) | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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