diff options
author | 2013-12-27 22:37:18 +0000 | |
---|---|---|
committer | 2013-12-27 22:37:18 +0000 | |
commit | 790850811a1e8af62d87cf70758414d7267fcf4a (patch) | |
tree | 67ee18ec6280444edfa2081bfefcca1e9c7143bc /usr.bin/ssh/ssh-rsa.c | |
parent | create a seed file for the bootloader in /etc/random.seed (diff) | |
download | wireguard-openbsd-790850811a1e8af62d87cf70758414d7267fcf4a.tar.xz wireguard-openbsd-790850811a1e8af62d87cf70758414d7267fcf4a.zip |
correct comment
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.c')
-rw-r--r-- | usr.bin/ssh/ssh-rsa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c index 6ed3ca110a5..5971b526a2b 100644 --- a/usr.bin/ssh/ssh-rsa.c +++ b/usr.bin/ssh/ssh-rsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-rsa.c,v 1.47 2013/12/27 22:30:17 djm Exp $ */ +/* $OpenBSD: ssh-rsa.c,v 1.48 2013/12/27 22:37:18 djm Exp $ */ /* * Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org> * @@ -199,8 +199,8 @@ static const u_char id_sha1[] = { */ static const u_char id_md5[] = { 0x30, 0x20, /* type Sequence, length 0x20 (32) */ - 0x30, 0x0c, /* type Sequence, length 0x09 */ - 0x06, 0x08, /* type OID, length 0x05 */ + 0x30, 0x0c, /* type Sequence, length 0x0c (12) */ + 0x06, 0x08, /* type OID, length 0x08 */ 0x2a, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, /* id-md5 */ 0x05, 0x00, /* NULL */ 0x04, 0x10 /* Octet string, length 0x10 (16), followed by md5 hash */ |