type golang.org/x/crypto/blowfish.Cipher

13 uses

	golang.org/x/crypto/blowfish (current package)
		block.go#L28: func ExpandKey(key []byte, c *Cipher) {
		block.go#L71: func expandKeyWithSalt(key []byte, salt []byte, c *Cipher) {
		block.go#L115: func encryptBlock(l, r uint32, c *Cipher) (uint32, uint32) {
		block.go#L138: func decryptBlock(l, r uint32, c *Cipher) (uint32, uint32) {
		cipher.go#L25: type Cipher struct {
		cipher.go#L38: func NewCipher(key []byte) (*Cipher, error) {
		cipher.go#L39: 	var result Cipher
		cipher.go#L52: func NewSaltedCipher(key, salt []byte) (*Cipher, error) {
		cipher.go#L56: 	var result Cipher
		cipher.go#L68: func (c *Cipher) BlockSize() int { return BlockSize }
		cipher.go#L75: func (c *Cipher) Encrypt(dst, src []byte) {
		cipher.go#L85: func (c *Cipher) Decrypt(dst, src []byte) {
		cipher.go#L93: func initCipher(c *Cipher) {