| 1 | /*
|
|---|
| 2 | * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan
|
|---|
| 3 | * (Royal Institute of Technology, Stockholm, Sweden).
|
|---|
| 4 | * All rights reserved.
|
|---|
| 5 | *
|
|---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 7 | * modification, are permitted provided that the following conditions
|
|---|
| 8 | * are met:
|
|---|
| 9 | *
|
|---|
| 10 | * 1. Redistributions of source code must retain the above copyright
|
|---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 12 | *
|
|---|
| 13 | * 2. Redistributions in binary form must reproduce the above copyright
|
|---|
| 14 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 15 | * documentation and/or other materials provided with the distribution.
|
|---|
| 16 | *
|
|---|
| 17 | * 3. Neither the name of the Institute nor the names of its contributors
|
|---|
| 18 | * may be used to endorse or promote products derived from this software
|
|---|
| 19 | * without specific prior written permission.
|
|---|
| 20 | *
|
|---|
| 21 | * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|---|
| 22 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|---|
| 23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|---|
| 24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|---|
| 25 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|---|
| 26 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|---|
| 27 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|---|
| 28 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|---|
| 29 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|---|
| 30 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|---|
| 31 | * SUCH DAMAGE.
|
|---|
| 32 | */
|
|---|
| 33 |
|
|---|
| 34 | #include "config.h"
|
|---|
| 35 |
|
|---|
| 36 | #include <stdio.h>
|
|---|
| 37 | #include <string.h>
|
|---|
| 38 | #include <otp.h>
|
|---|
| 39 |
|
|---|
| 40 | static int
|
|---|
| 41 | test_one(OtpKey key1, char *name, char *val,
|
|---|
| 42 | void (*print)(OtpKey,char*, size_t),
|
|---|
| 43 | OtpAlgorithm *alg)
|
|---|
| 44 | {
|
|---|
| 45 | char buf[256];
|
|---|
| 46 | OtpKey key2;
|
|---|
| 47 |
|
|---|
| 48 | (*print)(key1, buf, sizeof(buf));
|
|---|
| 49 | printf ("%s: %s, ", name, buf);
|
|---|
| 50 | if (strcmp (buf, val) != 0) {
|
|---|
| 51 | printf ("failed(*%s* != *%s*)\n", buf, val);
|
|---|
| 52 | return 1;
|
|---|
| 53 | }
|
|---|
| 54 | if (otp_parse (key2, buf, alg)) {
|
|---|
| 55 | printf ("parse of %s failed\n", name);
|
|---|
| 56 | return 1;
|
|---|
| 57 | }
|
|---|
| 58 | if (memcmp (key1, key2, OTPKEYSIZE) != 0) {
|
|---|
| 59 | printf ("key1 != key2, ");
|
|---|
| 60 | }
|
|---|
| 61 | printf ("success\n");
|
|---|
| 62 | return 0;
|
|---|
| 63 | }
|
|---|
| 64 |
|
|---|
| 65 | static int
|
|---|
| 66 | test (void)
|
|---|
| 67 | {
|
|---|
| 68 | struct test {
|
|---|
| 69 | char *alg;
|
|---|
| 70 | char *passphrase;
|
|---|
| 71 | char *seed;
|
|---|
| 72 | int count;
|
|---|
| 73 | char *hex;
|
|---|
| 74 | char *word;
|
|---|
| 75 | } tests[] = {
|
|---|
| 76 |
|
|---|
| 77 | /* md4 */
|
|---|
| 78 | {"md4", "This is a test.", "TeSt", 0, "d1854218ebbb0b51", "ROME MUG FRED SCAN LIVE LACE"},
|
|---|
| 79 | {"md4", "This is a test.", "TeSt", 1, "63473ef01cd0b444", "CARD SAD MINI RYE COL KIN"},
|
|---|
| 80 | {"md4", "This is a test.", "TeSt", 99, "c5e612776e6c237a", "NOTE OUT IBIS SINK NAVE MODE"},
|
|---|
| 81 | {"md4", "AbCdEfGhIjK", "alpha1", 0, "50076f47eb1ade4e", "AWAY SEN ROOK SALT LICE MAP"},
|
|---|
| 82 | {"md4", "AbCdEfGhIjK", "alpha1", 1, "65d20d1949b5f7ab", "CHEW GRIM WU HANG BUCK SAID"},
|
|---|
| 83 | {"md4", "AbCdEfGhIjK", "alpha1", 99, "d150c82cce6f62d1", "ROIL FREE COG HUNK WAIT COCA"},
|
|---|
| 84 | {"md4", "OTP's are good", "correct", 0, "849c79d4f6f55388", "FOOL STEM DONE TOOL BECK NILE"},
|
|---|
| 85 | {"md4", "OTP's are good", "correct", 1, "8c0992fb250847b1", "GIST AMOS MOOT AIDS FOOD SEEM"},
|
|---|
| 86 | {"md4", "OTP's are good", "correct",99, "3f3bf4b4145fd74b", "TAG SLOW NOV MIN WOOL KENO"},
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 | /* md5 */
|
|---|
| 90 | {"md5", "This is a test.", "TeSt", 0, "9e876134d90499dd", "INCH SEA ANNE LONG AHEM TOUR"},
|
|---|
| 91 | {"md5", "This is a test.", "TeSt", 1, "7965e05436f5029f", "EASE OIL FUM CURE AWRY AVIS"},
|
|---|
| 92 | {"md5", "This is a test.", "TeSt", 99, "50fe1962c4965880", "BAIL TUFT BITS GANG CHEF THY"},
|
|---|
| 93 | {"md5", "AbCdEfGhIjK", "alpha1", 0, "87066dd9644bf206", "FULL PEW DOWN ONCE MORT ARC"},
|
|---|
| 94 | {"md5", "AbCdEfGhIjK", "alpha1", 1, "7cd34c1040add14b", "FACT HOOF AT FIST SITE KENT"},
|
|---|
| 95 | {"md5", "AbCdEfGhIjK", "alpha1", 99, "5aa37a81f212146c", "BODE HOP JAKE STOW JUT RAP"},
|
|---|
| 96 | {"md5", "OTP's are good", "correct", 0, "f205753943de4cf9", "ULAN NEW ARMY FUSE SUIT EYED"},
|
|---|
| 97 | {"md5", "OTP's are good", "correct", 1, "ddcdac956f234937", "SKIM CULT LOB SLAM POE HOWL"},
|
|---|
| 98 | {"md5", "OTP's are good", "correct",99, "b203e28fa525be47", "LONG IVY JULY AJAR BOND LEE"},
|
|---|
| 99 |
|
|---|
| 100 | /* sha */
|
|---|
| 101 | {"sha", "This is a test.", "TeSt", 0, "bb9e6ae1979d8ff4", "MILT VARY MAST OK SEES WENT"},
|
|---|
| 102 | {"sha", "This is a test.", "TeSt", 1, "63d936639734385b", "CART OTTO HIVE ODE VAT NUT"},
|
|---|
| 103 | {"sha", "This is a test.", "TeSt", 99, "87fec7768b73ccf9", "GAFF WAIT SKID GIG SKY EYED"},
|
|---|
| 104 | {"sha", "AbCdEfGhIjK", "alpha1", 0, "ad85f658ebe383c9", "LEST OR HEEL SCOT ROB SUIT"},
|
|---|
| 105 | {"sha", "AbCdEfGhIjK", "alpha1", 1, "d07ce229b5cf119b", "RITE TAKE GELD COST TUNE RECK"},
|
|---|
| 106 | {"sha", "AbCdEfGhIjK", "alpha1", 99, "27bc71035aaf3dc6", "MAY STAR TIN LYON VEDA STAN"},
|
|---|
| 107 | {"sha", "OTP's are good", "correct", 0, "d51f3e99bf8e6f0b", "RUST WELT KICK FELL TAIL FRAU"},
|
|---|
| 108 | {"sha", "OTP's are good", "correct", 1, "82aeb52d943774e4", "FLIT DOSE ALSO MEW DRUM DEFY"},
|
|---|
| 109 | {"sha", "OTP's are good", "correct", 99, "4f296a74fe1567ec", "AURA ALOE HURL WING BERG WAIT"},
|
|---|
| 110 | {NULL}
|
|---|
| 111 | };
|
|---|
| 112 |
|
|---|
| 113 | struct test *t;
|
|---|
| 114 | int sum = 0;
|
|---|
| 115 |
|
|---|
| 116 | for(t = tests; t->alg; ++t) {
|
|---|
| 117 | int i;
|
|---|
| 118 | OtpAlgorithm *alg = otp_find_alg (t->alg);
|
|---|
| 119 | OtpKey key;
|
|---|
| 120 |
|
|---|
| 121 | if (alg == NULL) {
|
|---|
| 122 | printf ("Could not find alg %s\n", t->alg);
|
|---|
| 123 | return 1;
|
|---|
| 124 | }
|
|---|
| 125 | if(alg->init (key, t->passphrase, t->seed))
|
|---|
| 126 | return 1;
|
|---|
| 127 | for (i = 0; i < t->count; ++i) {
|
|---|
| 128 | if (alg->next (key))
|
|---|
| 129 | return 1;
|
|---|
| 130 | }
|
|---|
| 131 | sum += test_one (key, "hexadecimal", t->hex, otp_print_hex,
|
|---|
| 132 | alg) +
|
|---|
| 133 | test_one (key, "standard_word", t->word, otp_print_stddict, alg);
|
|---|
| 134 | }
|
|---|
| 135 | return sum;
|
|---|
| 136 | }
|
|---|
| 137 |
|
|---|
| 138 | int
|
|---|
| 139 | main (void)
|
|---|
| 140 | {
|
|---|
| 141 | return test ();
|
|---|
| 142 | }
|
|---|