diff --git a/README.txt b/README.txt index 24a6265..48b5f28 100644 --- a/README.txt +++ b/README.txt @@ -1,3 +1,6 @@ +This fork add support for Standard Zip Encryption. +https://github.com/yeka/zip + This is a fork of the Go archive/zip package to add support for reading/writing password protected .zip files. Only supports Winzip's AES extension: http://www.winzip.com/aes_info.htm. diff --git a/crypto_test.go b/crypto_test.go index 7f86994..7ff8ed8 100644 --- a/crypto_test.go +++ b/crypto_test.go @@ -175,7 +175,7 @@ func TestPasswordWriteSimple(t *testing.T) { contents := []byte("Hello World") conLen := len(contents) - for _, enc := range []EncryptionMethod{AES128Encryption, AES192Encryption, AES256Encryption} { + for _, enc := range []EncryptionMethod{ZipStandardEncryption, AES128Encryption, AES192Encryption, AES256Encryption} { raw := new(bytes.Buffer) zipw := NewWriter(raw) w, err := zipw.Encrypt("hello.txt", "golang", enc)