summaryrefslogtreecommitdiffstats
path: root/libssh/dh.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2010-01-06 21:12:00 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2010-01-06 21:12:00 +0100
commit84e6aca5c523768653b751d2d770f0fedcbbe0a9 (patch)
tree7516d3c4306baf1783d9497d3e60c7ffd671a385 /libssh/dh.c
parentebd09873768e872e765744bb07754fc9847e84d9 (diff)
downloadlibssh-84e6aca5c523768653b751d2d770f0fedcbbe0a9.tar.gz
libssh-84e6aca5c523768653b751d2d770f0fedcbbe0a9.tar.xz
libssh-84e6aca5c523768653b751d2d770f0fedcbbe0a9.zip
Fixed typos from a* to error.c
Diffstat (limited to 'libssh/dh.c')
-rw-r--r--libssh/dh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libssh/dh.c b/libssh/dh.c
index 0142c8d5..f33d9997 100644
--- a/libssh/dh.c
+++ b/libssh/dh.c
@@ -29,10 +29,10 @@
* g and n are two numbers common to every ssh software.
* client's public key (e) is calculated by doing:
* e = g^x mod p
- * client sents e to the server.
+ * client sends e to the server.
* the server computes his own public key, f
* f = g^y mod p
- * it sents it to the client
+ * it sends it to the client
* the common key K is calculated by the client by doing
* k = f^x mod p
* the server does the same with the client public key e
@@ -209,7 +209,7 @@ char *ssh_get_hexa(const unsigned char *what, size_t len) {
/**
* @brief Print a buffer as colon separated hex string.
*
- * @param descr Description printed infront of the hex string.
+ * @param descr Description printed in front of the hex string.
*
* @param what What should be converted to a hex string.
*