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) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |