-
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.
Merge branch 'main' of https://github.uconn.edu/map17018/SDP--PKI-Cyb…
- Loading branch information
Showing
3 changed files
with
18 additions
and
66 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# GZIP Implementation | ||
|
||
## Contents: | ||
- `Decode.go`: defines the decode and encode functions | ||
- `GZipbyte.go`: contains the compress function | ||
- `GZipDecomp.go`: contains the decompression function | ||
|
||
## Decode.go: | ||
- Decode takes in bytes, decompresses them, then returns the decoded string if successful, error if not | ||
- Encode takes in bytes, compresses them, then returns an encoded string if successful, error if not | ||
|
||
## GZipbyte.go: | ||
- When given a bytes it will compress them and return compressed bytes | ||
|
||
## GZipDecomp.go: | ||
- Decompresses the the compressed bytes to readable data |
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