Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Add blowfish-cbc tests for 128, 256 and 448 bits keys.



details:   https://anonhg.NetBSD.org/src/rev/97fe98d10c84
branches:  trunk
changeset: 348838:97fe98d10c84
user:      alnsn <alnsn%NetBSD.org@localhost>
date:      Thu Nov 10 23:44:36 2016 +0000

description:
Add blowfish-cbc tests for 128, 256 and 448 bits keys.

diffstat:

 distrib/sets/lists/debug/mi    |     3 +-
 tests/dev/cgd/Makefile         |     6 +-
 tests/dev/cgd/t_cgd_blowfish.c |  2341 ++++++++++++++++++++++++++++++++++++++++
 3 files changed, 2346 insertions(+), 4 deletions(-)

diffs (truncated from 2382 to 300 lines):

diff -r 7c724ff7aba6 -r 97fe98d10c84 distrib/sets/lists/debug/mi
--- a/distrib/sets/lists/debug/mi       Thu Nov 10 23:41:58 2016 +0000
+++ b/distrib/sets/lists/debug/mi       Thu Nov 10 23:44:36 2016 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.173 2016/11/07 21:09:03 kamil Exp $
+# $NetBSD: mi,v 1.174 2016/11/10 23:44:36 alnsn Exp $
 ./etc/mtree/set.debug                           comp-sys-root
 ./usr/lib                                      comp-sys-usr            compatdir
 ./usr/lib/i18n/libBIG5_g.a                     comp-c-debuglib         debuglib,compatfile
@@ -1592,6 +1592,7 @@
 ./usr/libdata/debug/usr/tests/dev/audio/h_pad.debug                    tests-fs-debug          debug,atf,rump
 ./usr/libdata/debug/usr/tests/dev/cgd/h_img2cgd/h_img2cgd.debug                        tests-obsolete  obsolete,compattestfile
 ./usr/libdata/debug/usr/tests/dev/cgd/t_cgd_aes.debug                  tests-fs-debug          atf,compattestfile,crypto,debug,rump
+./usr/libdata/debug/usr/tests/dev/cgd/t_cgd_blowfish.debug             tests-fs-debug          atf,compattestfile,crypto,debug,rump
 ./usr/libdata/debug/usr/tests/dev/clock_subr/t_clock_subr.debug                tests-fs-debug          debug,atf,rump
 ./usr/libdata/debug/usr/tests/dev/md/h_mdserv.debug                                    tests-fs-debug  debug,atf,rump
 ./usr/libdata/debug/usr/tests/dev/scsipi/t_cd.debug                    tests-fs-debug          debug,atf,rump
diff -r 7c724ff7aba6 -r 97fe98d10c84 tests/dev/cgd/Makefile
--- a/tests/dev/cgd/Makefile    Thu Nov 10 23:41:58 2016 +0000
+++ b/tests/dev/cgd/Makefile    Thu Nov 10 23:44:36 2016 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.5 2016/11/07 16:33:37 scole Exp $
+#      $NetBSD: Makefile,v 1.6 2016/11/10 23:44:36 alnsn Exp $
 #
 
 .include <bsd.own.mk>
@@ -9,8 +9,8 @@
 
 TESTS_SH=      t_cgd
 
-.if ${MKCRYPTO} == "yes" && ${MKRUMP} == "yes"
-TESTS_C=       t_cgd_aes
+.if ${MKCRYPTO} != "no" && ${MKRUMP} != "no"
+TESTS_C=       t_cgd_aes t_cgd_blowfish
 
 WARNS= 4
 CPPFLAGS+=     -D_KERNTYPES
diff -r 7c724ff7aba6 -r 97fe98d10c84 tests/dev/cgd/t_cgd_blowfish.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/dev/cgd/t_cgd_blowfish.c    Thu Nov 10 23:44:36 2016 +0000
@@ -0,0 +1,2341 @@
+/*     $NetBSD: t_cgd_blowfish.c,v 1.1 2016/11/10 23:44:36 alnsn Exp $ */
+/*-
+ * Copyright (c) 2016 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Alexander Nasonov.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in
+ *    the documentation and/or other materials provided with the
+ *    distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
+ * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+#include <sys/types.h>
+#include <sys/ioctl.h>
+#include <sys/sysctl.h>
+
+#include <atf-c.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include <util.h>
+
+#include <dev/cgdvar.h>
+
+#include <rump/rump.h>
+#include <rump/rump_syscalls.h>
+
+#include "../../h_macros.h"
+
+#define SECSIZE 512
+
+struct testvec {
+       unsigned int blkno;
+       const uint8_t *ptxt;    /* PlainText  */
+       const uint8_t *ctxt;    /* CipherText */
+};
+
+/*
+ * 128 bits Blowfish key, NUL terminated.
+ */
+static const char bf_cbc_128_key[17] = {
+       0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 01234567 */
+       0x38, 0x39, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, /* 89ABCDEF */
+       0
+};
+
+/*
+ * 256 bits Blowfish key, NUL terminated.
+ */
+static const char bf_cbc_256_key[33] = {
+       0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 01234567 */
+       0x38, 0x39, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, /* 89ABCDEF */
+       0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 01234567 */
+       0x38, 0x39, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, /* 89abcdef */
+       0
+};
+
+/*
+ * 448 bits Blowfish key, NUL terminated.
+ */
+static const char bf_cbc_448_key[57] = {
+       0x3a, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* :ABCDEFG */
+       0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* HIJKLMNO */
+       0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* PQRSTUVW */
+       0x58, 0x59, 0x5a, 0x7e, 0x3a, 0x61, 0x62, 0x63, /* XYZ~:abc */
+       0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, /* defghijk */
+       0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, /* lmnopqrs */
+       0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x23, /* tuvwxyz# */
+       0
+};
+
+static const uint8_t bf_cbc_ptxt[SECSIZE] =
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop"
+       "                abcdefghijklmnop";
+
+/*
+ * IV method encblkno1, blkno 0.
+ */
+static const uint8_t bf_cbc_128_encblkno1_vec0_ctxt[SECSIZE] = {
+       0x78, 0x53, 0x43, 0x2a, 0x08, 0xe7, 0x84, 0x3f,
+       0xb7, 0x61, 0x9c, 0x17, 0x81, 0xbe, 0x38, 0xb9,
+       0x65, 0x51, 0x68, 0xa2, 0x29, 0xd7, 0x45, 0xc9,
+       0xee, 0x0e, 0x9d, 0xe1, 0x69, 0xc6, 0x81, 0x81,
+       0xf3, 0x93, 0xa6, 0x62, 0xc9, 0x05, 0x2c, 0x1b,
+       0x0e, 0x05, 0xca, 0xbe, 0x12, 0x25, 0x37, 0xd8,
+       0x98, 0x66, 0xa2, 0xd3, 0xd0, 0x8a, 0x89, 0x57,
+       0x44, 0x91, 0x1e, 0xe9, 0x07, 0x03, 0x5c, 0xa6,
+       0xb8, 0x30, 0xf1, 0xc7, 0x8c, 0x66, 0x05, 0xb0,
+       0x2d, 0xc3, 0xc3, 0xd7, 0x60, 0xef, 0x62, 0xd3,
+       0x34, 0x9c, 0xa9, 0xd2, 0x0c, 0x1a, 0x9c, 0xfe,
+       0x74, 0x92, 0xcb, 0x90, 0x80, 0xfa, 0x71, 0x5c,
+       0xaa, 0x29, 0x39, 0xdd, 0x3b, 0x62, 0xa1, 0xfc,
+       0xa5, 0x35, 0xcd, 0xa3, 0x29, 0x41, 0x1a, 0x03,
+       0xf7, 0xe1, 0x36, 0xb2, 0xdc, 0x1a, 0xb3, 0x9f,
+       0x46, 0xa3, 0xf7, 0xc3, 0xd1, 0x29, 0x83, 0xcf,
+       0x0d, 0x88, 0x0b, 0xd1, 0xb7, 0xc7, 0x87, 0x21,
+       0xb7, 0x1f, 0xe7, 0xa2, 0x8e, 0x5f, 0xac, 0x6b,
+       0x49, 0x9c, 0x93, 0x6b, 0x6b, 0x05, 0x8e, 0x4c,
+       0xbd, 0x31, 0x13, 0x5f, 0x4a, 0xd0, 0x35, 0x0c,
+       0x67, 0x8f, 0xd0, 0x7a, 0xc9, 0xe3, 0x52, 0x50,
+       0x4f, 0x85, 0x09, 0xf1, 0x27, 0xb9, 0xb1, 0x1e,
+       0xe4, 0x6a, 0x40, 0xf6, 0x5a, 0x4f, 0x5f, 0xbe,
+       0xab, 0xe8, 0xb9, 0xfe, 0xc7, 0x59, 0x6b, 0x0c,
+       0xcd, 0x46, 0x4e, 0x90, 0x99, 0xde, 0xf7, 0x43,
+       0xee, 0x6e, 0xb6, 0xae, 0xc2, 0x5e, 0x08, 0xbb,
+       0xe9, 0x30, 0x2d, 0xb2, 0x91, 0xcc, 0xb9, 0xc7,
+       0x58, 0xea, 0x35, 0xae, 0xa2, 0xd8, 0x00, 0xf7,
+       0xc0, 0x01, 0xc4, 0x34, 0x2b, 0x34, 0x43, 0xae,
+       0xeb, 0x27, 0xbc, 0x5c, 0x91, 0x5f, 0x5f, 0xc1,
+       0x61, 0x42, 0x45, 0x68, 0x31, 0xbc, 0xce, 0xb4,
+       0x5c, 0xd3, 0x07, 0xdf, 0x4e, 0x65, 0x65, 0x9d,
+       0x2e, 0x26, 0x28, 0xfa, 0xcd, 0x53, 0x77, 0x6a,
+       0x77, 0xad, 0x96, 0x0b, 0x1f, 0xea, 0x03, 0xc1,
+       0xdd, 0xca, 0xe8, 0xfe, 0xe8, 0x36, 0x01, 0x61,
+       0x72, 0xbb, 0xed, 0xfd, 0x8d, 0xa3, 0xc2, 0x15,
+       0x25, 0x4f, 0xa6, 0x1a, 0x73, 0xbd, 0xcd, 0x45,
+       0xdb, 0x08, 0x74, 0x7b, 0xa8, 0x23, 0xf5, 0x74,
+       0x3a, 0x18, 0x6d, 0x90, 0xe0, 0xee, 0xae, 0xfe,
+       0xc8, 0xac, 0x00, 0x57, 0xa0, 0xe1, 0xfe, 0x10,
+       0xd4, 0xf3, 0xa8, 0x00, 0x21, 0x3e, 0x2d, 0xf9,
+       0x63, 0xb8, 0xe9, 0xa4, 0x2e, 0xf4, 0x6b, 0xd7,
+       0x5c, 0xfd, 0x32, 0x6c, 0x98, 0x05, 0x38, 0x0d,
+       0x29, 0xb5, 0x5a, 0x5b, 0xbb, 0xad, 0xfd, 0x46,
+       0x9b, 0x6a, 0x97, 0x4c, 0x24, 0xcc, 0x7d, 0x13,
+       0x25, 0xe8, 0x2c, 0xb9, 0x13, 0x54, 0xb2, 0x8a,
+       0x28, 0xa0, 0x8a, 0x3a, 0x4d, 0x7e, 0xf4, 0x29,
+       0xff, 0xfb, 0x4f, 0xd6, 0x3d, 0xf7, 0xca, 0x89,
+       0x2a, 0x58, 0x9e, 0x42, 0x00, 0x84, 0x61, 0x58,
+       0x7c, 0x94, 0xf6, 0x50, 0x48, 0x2f, 0x34, 0x88,
+       0xec, 0x97, 0xef, 0x8b, 0x2f, 0x84, 0xca, 0x23,
+       0xe1, 0xb7, 0x63, 0x99, 0xdd, 0x4a, 0x76, 0xdd,
+       0x20, 0xc1, 0xc2, 0x56, 0x45, 0xbe, 0x75, 0x9a,
+       0x40, 0x72, 0xc8, 0xfb, 0x7e, 0x40, 0x6f, 0x38,
+       0xfd, 0x76, 0xa4, 0x78, 0xf5, 0xde, 0x5f, 0xb7,
+       0x4a, 0xa9, 0xaf, 0xad, 0xa1, 0x8b, 0x25, 0x8f,
+       0xea, 0xb3, 0xeb, 0x54, 0x39, 0x5a, 0x91, 0xfe,
+       0x86, 0x18, 0xea, 0x8c, 0xd6, 0x66, 0xd5, 0x85,
+       0x02, 0x2b, 0x00, 0x5d, 0x7e, 0x13, 0xa0, 0x1f,
+       0x73, 0x46, 0x6d, 0x5e, 0xcd, 0xe0, 0x82, 0x02,
+       0x28, 0x88, 0xbf, 0x17, 0xfd, 0x9b, 0x83, 0x2c,
+       0xa2, 0xf7, 0xde, 0x51, 0x98, 0x3f, 0xe2, 0x80,
+       0x66, 0x14, 0x17, 0xce, 0x8e, 0x30, 0x2d, 0xe2,
+       0x24, 0x68, 0x4b, 0xe5, 0xd1, 0x09, 0xfb, 0x6e,
+};
+
+/*
+ * IV method encblkno1, blkno 1.
+ */
+static const uint8_t bf_cbc_128_encblkno1_vec1_ctxt[SECSIZE] = {
+       0x87, 0xae, 0x01, 0x52, 0xe8, 0xe9, 0xd9, 0xba,
+       0xa9, 0x18, 0x31, 0x2c, 0x1b, 0xab, 0x57, 0xad,
+       0x45, 0x0e, 0x25, 0x5e, 0x0e, 0x04, 0xfa, 0xdd,
+       0xf1, 0x59, 0xe6, 0xea, 0x78, 0x4b, 0x83, 0x07,
+       0x8b, 0x46, 0x91, 0x09, 0x58, 0x5a, 0x11, 0x2e,
+       0x54, 0x43, 0xa4, 0xc1, 0x04, 0x35, 0xd3, 0x3e,
+       0xc9, 0xc8, 0xf5, 0xff, 0x69, 0x1e, 0x57, 0x85,
+       0x6d, 0x91, 0x03, 0xeb, 0x8c, 0xa7, 0xe8, 0xcc,
+       0x3f, 0xac, 0xf9, 0x14, 0x1e, 0x88, 0x50, 0xa5,
+       0x38, 0x66, 0xa9, 0xf4, 0xf5, 0xc6, 0x30, 0x95,
+       0xd6, 0x84, 0x0b, 0x81, 0xf9, 0x51, 0x05, 0x80,
+       0x9a, 0x89, 0xbf, 0xd4, 0x7d, 0x6a, 0x26, 0x59,
+       0x29, 0x44, 0xe7, 0x1d, 0x0e, 0xad, 0x8c, 0xa0,
+       0x93, 0xe9, 0x4b, 0x4b, 0x51, 0x46, 0xa5, 0x07,
+       0xe8, 0xcb, 0x59, 0xf4, 0x63, 0xb5, 0x36, 0xdb,
+       0xbc, 0x54, 0x2d, 0xec, 0xf0, 0x90, 0x3a, 0xa5,
+       0xed, 0xc8, 0x28, 0x0e, 0xd3, 0x79, 0xb8, 0x57,
+       0xc6, 0x7f, 0x02, 0x22, 0x5e, 0x80, 0xe8, 0x7f,
+       0xdf, 0xa0, 0x0f, 0xbc, 0x98, 0x79, 0x6f, 0xd2,
+       0xb0, 0xb2, 0x4f, 0x9b, 0x1a, 0x21, 0x8f, 0x63,
+       0xce, 0x54, 0x41, 0x64, 0xbf, 0xb9, 0xa7, 0x93,
+       0xd6, 0x5b, 0x89, 0x86, 0xda, 0x90, 0x23, 0x2e,
+       0x25, 0x35, 0x1a, 0x9a, 0xf5, 0x1e, 0x8f, 0xb4,
+       0xe6, 0x66, 0x8e, 0x0e, 0x2d, 0x91, 0x06, 0x4b,
+       0x3d, 0x4a, 0x97, 0xab, 0x9b, 0x92, 0x09, 0xaa,
+       0x07, 0xbf, 0xc1, 0x7d, 0xe2, 0xbc, 0xd2, 0xf1,
+       0x38, 0x8d, 0x02, 0x45, 0xc8, 0x13, 0x12, 0xda,
+       0xaa, 0x53, 0xa2, 0x2c, 0x96, 0x69, 0x64, 0xce,
+       0x86, 0xe4, 0x84, 0x56, 0xd0, 0xe5, 0x81, 0x99,
+       0x27, 0xad, 0x86, 0x47, 0x5f, 0xaf, 0xa2, 0xa2,
+       0x90, 0x7f, 0xe7, 0x86, 0xec, 0x7f, 0xf4, 0xa3,
+       0xcd, 0x4f, 0x60, 0xcc, 0x1e, 0x35, 0x44, 0xe8,
+       0xe9, 0x06, 0xaf, 0x5e, 0x53, 0x3d, 0x30, 0x91,
+       0xfe, 0x44, 0x59, 0x66, 0x82, 0xc2, 0xea, 0x9f,
+       0xc8, 0x3b, 0xe2, 0xe5, 0x58, 0xf7, 0x34, 0xd5,
+       0x9e, 0xfc, 0x20, 0x84, 0x34, 0xaa, 0x4f, 0xe1,
+       0xd4, 0x95, 0x76, 0x11, 0x59, 0x90, 0x90, 0xfd,
+       0x4d, 0xf9, 0xb8, 0x41, 0xe1, 0xdb, 0x36, 0x05,
+       0xe3, 0x0f, 0xa4, 0x4f, 0x0c, 0x61, 0x70, 0xa5,
+       0x1b, 0xbf, 0xab, 0x65, 0x67, 0x75, 0x5c, 0x7d,
+       0x46, 0x3b, 0x29, 0xd0, 0x3d, 0x06, 0x40, 0x25,
+       0x47, 0x3e, 0x8d, 0x62, 0xf8, 0xd8, 0x08, 0xc1,
+       0x03, 0x04, 0x4b, 0x5a, 0x40, 0x65, 0x84, 0x52,
+       0x34, 0xa2, 0x4a, 0xcc, 0x3a, 0x9c, 0x1e, 0xbf,
+       0x2d, 0xed, 0x08, 0x8b, 0xc3, 0x8f, 0x48, 0xba,
+       0x06, 0x03, 0xea, 0x5b, 0xba, 0x6a, 0xac, 0x23,
+       0x5a, 0x5e, 0x31, 0x08, 0x29, 0x69, 0x64, 0x44,
+       0x1c, 0x31, 0xae, 0xb1, 0x86, 0x7b, 0x26, 0x89,
+       0xa6, 0xbe, 0xef, 0x69, 0x81, 0xf7, 0x77, 0xd5,
+       0x8e, 0x78, 0xa5, 0x11, 0x51, 0xca, 0xec, 0xd0,
+       0x86, 0xa5, 0x33, 0xf3, 0x65, 0x5d, 0x04, 0xc5,
+       0xd2, 0x17, 0x2a, 0xfe, 0x4a, 0x58, 0x0f, 0x98,
+       0x61, 0xad, 0xc3, 0xb8, 0x5b, 0x45, 0xcc, 0x28,
+       0x3d, 0x4d, 0x00, 0xf5, 0x4a, 0xe2, 0xbc, 0x6c,
+       0x1b, 0x80, 0x7a, 0x2b, 0x40, 0xb8, 0x34, 0x0e,
+       0x44, 0x53, 0x16, 0xda, 0x7c, 0x46, 0x8b, 0x42,
+       0x5e, 0xa8, 0xe1, 0xb8, 0xf8, 0xcf, 0xff, 0x48,
+       0xcf, 0x2c, 0x4c, 0x98, 0xdb, 0xe5, 0x55, 0xfe,
+       0x45, 0xfa, 0xf8, 0xde, 0x72, 0xf9, 0x84, 0x3c,
+       0xc0, 0x0c, 0x1f, 0x86, 0x97, 0x86, 0xb8, 0xfe,
+       0x7d, 0xff, 0xa3, 0xaf, 0x68, 0x00, 0x66, 0x90,
+       0xac, 0xb5, 0xd8, 0xde, 0x35, 0x01, 0xf7, 0xab,
+       0xab, 0xe3, 0xe9, 0x85, 0x4c, 0x6f, 0xe6, 0xbc,
+       0xce, 0x67, 0x4a, 0xbd, 0xad, 0x7b, 0xec, 0xa1,
+};
+
+/*
+ * IV method encblkno1, blkno 2.
+ */
+static const uint8_t bf_cbc_128_encblkno1_vec2_ctxt[SECSIZE] = {
+       0x17, 0xdd, 0x0f, 0x4b, 0x28, 0x33, 0x03, 0x89,
+       0x21, 0x7b, 0x67, 0x15, 0x15, 0x65, 0x08, 0x4f,
+       0x65, 0x18, 0xa6, 0x4b, 0x62, 0xdb, 0x1e, 0xc2,



Home | Main Index | Thread Index | Old Index