diff options
author | Wim <wim@42.be> | 2019-03-02 13:04:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-02 13:04:28 +0100 |
commit | df3fdc26a01a20c3568b824f4f15f9b56a2f3db3 (patch) | |
tree | 053e3caf197063f94af386e60c67e4bef69a7863 /vendor/golang.org/x/crypto/blowfish | |
parent | af00c34aaccb3521b8dbf0bd8876a5b38d5d42f4 (diff) | |
download | matterbridge-msglm-df3fdc26a01a20c3568b824f4f15f9b56a2f3db3.tar.gz matterbridge-msglm-df3fdc26a01a20c3568b824f4f15f9b56a2f3db3.tar.bz2 matterbridge-msglm-df3fdc26a01a20c3568b824f4f15f9b56a2f3db3.zip |
Use whatsapp forks (#750)
Diffstat (limited to 'vendor/golang.org/x/crypto/blowfish')
-rw-r--r-- | vendor/golang.org/x/crypto/blowfish/cipher.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/golang.org/x/crypto/blowfish/cipher.go b/vendor/golang.org/x/crypto/blowfish/cipher.go index 2641dadd..213bf204 100644 --- a/vendor/golang.org/x/crypto/blowfish/cipher.go +++ b/vendor/golang.org/x/crypto/blowfish/cipher.go @@ -3,6 +3,14 @@ // license that can be found in the LICENSE file. // Package blowfish implements Bruce Schneier's Blowfish encryption algorithm. +// +// Blowfish is a legacy cipher and its short block size makes it vulnerable to +// birthday bound attacks (see https://sweet32.info). It should only be used +// where compatibility with legacy systems, not security, is the goal. +// +// Deprecated: any new system should use AES (from crypto/aes, if necessary in +// an AEAD mode like crypto/cipher.NewGCM) or XChaCha20-Poly1305 (from +// golang.org/x/crypto/chacha20poly1305). package blowfish // import "golang.org/x/crypto/blowfish" // The code is a port of Bruce Schneier's C implementation. |