We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e487c77 commit c497904Copy full SHA for c497904
1 file changed
sshd-common/src/main/java/org/apache/sshd/common/cipher/ChaCha20Cipher.java
@@ -133,6 +133,11 @@ public int getKeySize() {
133
return 512;
134
}
135
136
+ @Override
137
+ public String toString() {
138
+ return "chacha20-poly1305";
139
+ }
140
+
141
protected static class ChaChaEngine {
142
private static final int BLOCK_BYTES = 64;
143
private static final int BLOCK_INTS = BLOCK_BYTES / Integer.BYTES;
0 commit comments