diff options
Diffstat (limited to 'libgo/go/exp/ssh/cipher.go')
-rw-r--r-- | libgo/go/exp/ssh/cipher.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libgo/go/exp/ssh/cipher.go b/libgo/go/exp/ssh/cipher.go index de4926d7b81..d91929aa99a 100644 --- a/libgo/go/exp/ssh/cipher.go +++ b/libgo/go/exp/ssh/cipher.go @@ -77,12 +77,12 @@ var DefaultCipherOrder = []string{ var cipherModes = map[string]*cipherMode{ // Ciphers from RFC4344, which introduced many CTR-based ciphers. Algorithms // are defined in the order specified in the RFC. - "aes128-ctr": &cipherMode{16, aes.BlockSize, 0, newAESCTR}, - "aes192-ctr": &cipherMode{24, aes.BlockSize, 0, newAESCTR}, - "aes256-ctr": &cipherMode{32, aes.BlockSize, 0, newAESCTR}, + "aes128-ctr": {16, aes.BlockSize, 0, newAESCTR}, + "aes192-ctr": {24, aes.BlockSize, 0, newAESCTR}, + "aes256-ctr": {32, aes.BlockSize, 0, newAESCTR}, // Ciphers from RFC4345, which introduces security-improved arcfour ciphers. // They are defined in the order specified in the RFC. - "arcfour128": &cipherMode{16, 0, 1536, newRC4}, - "arcfour256": &cipherMode{32, 0, 1536, newRC4}, + "arcfour128": {16, 0, 1536, newRC4}, + "arcfour256": {32, 0, 1536, newRC4}, } |