Skip to content

Commit

Permalink
Use stdlib crc32 - modified version changes have been merged.
Browse files Browse the repository at this point in the history
  • Loading branch information
klauspost committed Nov 28, 2018
1 parent c4ad2ed commit 083b1c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gunzip.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ import (
"bufio"
"errors"
"hash"
"hash/crc32"
"io"
"sync"
"time"

"github.com/klauspost/compress/flate"
"github.com/klauspost/crc32"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion gzip.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import (
"errors"
"fmt"
"hash"
"hash/crc32"
"io"
"sync"
"time"

"github.com/klauspost/compress/flate"
"github.com/klauspost/crc32"
)

const (
Expand Down

0 comments on commit 083b1c3

Please sign in to comment.