Skip to content

Instantly share code, notes, and snippets.

View nostrict's full-sized avatar

Alexey Malyshev nostrict

  • Mail.ru Group
  • Moscow, Russia
View GitHub Profile
@nostrict
nostrict / gist:5781559
Created June 14, 2013 12:51
Blowfish example
package main
import (
"code.google.com/p/go.crypto/blowfish"
"crypto/cipher"
"encoding/hex"
"fmt"
)
func EncryptBlowfish(dst, src, key, iv []byte) error {