summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjmc <>2016-04-07 20:02:19 +0000
committerjmc <>2016-04-07 20:02:19 +0000
commita86f4ff4726d5e2b5134e7bc440483aeae201a2b (patch)
treec48b027941b3341e1ffc9839346944d42c11ab6f /src
parent8d615e14801649271e105df0f420c20902909031 (diff)
downloadopenbsd-a86f4ff4726d5e2b5134e7bc440483aeae201a2b.tar.gz
openbsd-a86f4ff4726d5e2b5134e7bc440483aeae201a2b.tar.bz2
openbsd-a86f4ff4726d5e2b5134e7bc440483aeae201a2b.zip
hexidecimal->hexadecimal; from mmcc
ok beck
Diffstat (limited to 'src')
-rw-r--r--src/usr.bin/openssl/enc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr.bin/openssl/enc.c b/src/usr.bin/openssl/enc.c
index 8dcaf0bd7c..4c6de096fd 100644
--- a/src/usr.bin/openssl/enc.c
+++ b/src/usr.bin/openssl/enc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: enc.c,v 1.10 2015/10/17 15:00:11 doug Exp $ */ 1/* $OpenBSD: enc.c,v 1.11 2016/04/07 20:02:19 jmc Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -178,14 +178,14 @@ static struct option enc_options[] = {
178 { 178 {
179 .name = "iv", 179 .name = "iv",
180 .argname = "IV", 180 .argname = "IV",
181 .desc = "IV to use, specified as a hexidecimal string", 181 .desc = "IV to use, specified as a hexadecimal string",
182 .type = OPTION_ARG, 182 .type = OPTION_ARG,
183 .opt.arg = &enc_config.hiv, 183 .opt.arg = &enc_config.hiv,
184 }, 184 },
185 { 185 {
186 .name = "K", 186 .name = "K",
187 .argname = "key", 187 .argname = "key",
188 .desc = "Key to use, specified as a hexidecimal string", 188 .desc = "Key to use, specified as a hexadecimal string",
189 .type = OPTION_ARG, 189 .type = OPTION_ARG,
190 .opt.arg = &enc_config.hkey, 190 .opt.arg = &enc_config.hkey,
191 }, 191 },
@@ -256,7 +256,7 @@ static struct option enc_options[] = {
256 { 256 {
257 .name = "S", 257 .name = "S",
258 .argname = "salt", 258 .argname = "salt",
259 .desc = "Salt to use, specified as a hexidecimal string", 259 .desc = "Salt to use, specified as a hexadecimal string",
260 .type = OPTION_ARG, 260 .type = OPTION_ARG,
261 .opt.arg = &enc_config.hsalt, 261 .opt.arg = &enc_config.hsalt,
262 }, 262 },