aboutsummaryrefslogtreecommitdiff
path: root/ssh/transport.go
diff options
context:
space:
mode:
Diffstat (limited to 'ssh/transport.go')
-rw-r--r--ssh/transport.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh/transport.go b/ssh/transport.go
index acf5a21..da01580 100644
--- a/ssh/transport.go
+++ b/ssh/transport.go
@@ -17,7 +17,8 @@ import (
const debugTransport = false
const (
- gcmCipherID = "aes128-gcm@openssh.com"
+ gcm128CipherID = "aes128-gcm@openssh.com"
+ gcm256CipherID = "aes256-gcm@openssh.com"
aes128cbcID = "aes128-cbc"
tripledescbcID = "3des-cbc"
)