summaryrefslogtreecommitdiff
path: root/ssh-rsa.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-12-29 17:48:15 +1100
committerDamien Miller <djm@mindrot.org>2013-12-29 17:48:15 +1100
commit06122e9a74bb488b0fe0a8f64e1135de870f9cc0 (patch)
tree2dc7d611c5f17892d9234fe2c0dda35055d8ec72 /ssh-rsa.c
parent3e19295c3a253c8dc8660cf45baad7f45fccb969 (diff)
- djm@cvs.openbsd.org 2013/12/27 22:37:18
[ssh-rsa.c] correct comment
Diffstat (limited to 'ssh-rsa.c')
-rw-r--r--ssh-rsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-rsa.c b/ssh-rsa.c
index 782c85573..6e28bb4a6 100644
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-rsa.c,v 1.47 2013/12/27 22:30:17 djm Exp $ */ 1/* $OpenBSD: ssh-rsa.c,v 1.48 2013/12/27 22:37:18 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org> 3 * Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org>
4 * 4 *
@@ -202,8 +202,8 @@ static const u_char id_sha1[] = {
202 */ 202 */
203static const u_char id_md5[] = { 203static const u_char id_md5[] = {
204 0x30, 0x20, /* type Sequence, length 0x20 (32) */ 204 0x30, 0x20, /* type Sequence, length 0x20 (32) */
205 0x30, 0x0c, /* type Sequence, length 0x09 */ 205 0x30, 0x0c, /* type Sequence, length 0x0c (12) */
206 0x06, 0x08, /* type OID, length 0x05 */ 206 0x06, 0x08, /* type OID, length 0x08 */
207 0x2a, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, /* id-md5 */ 207 0x2a, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, /* id-md5 */
208 0x05, 0x00, /* NULL */ 208 0x05, 0x00, /* NULL */
209 0x04, 0x10 /* Octet string, length 0x10 (16), followed by md5 hash */ 209 0x04, 0x10 /* Octet string, length 0x10 (16), followed by md5 hash */