diff options
author | jmc <> | 2010-10-08 19:18:41 +0000 |
---|---|---|
committer | jmc <> | 2010-10-08 19:18:41 +0000 |
commit | 0b0e628f61a7b75e8bb9281c592e1a4da79a0586 (patch) | |
tree | 4d0453075fd462fa5e15480b3b7df2ec096397ba /src | |
parent | fc600d7b7678484d28305f72ce8a5f56aef59e40 (diff) | |
download | openbsd-0b0e628f61a7b75e8bb9281c592e1a4da79a0586.tar.gz openbsd-0b0e628f61a7b75e8bb9281c592e1a4da79a0586.tar.bz2 openbsd-0b0e628f61a7b75e8bb9281c592e1a4da79a0586.zip |
document "openssl engine";
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.sbin/openssl/openssl.1 | 52 |
1 files changed, 51 insertions, 1 deletions
diff --git a/src/usr.sbin/openssl/openssl.1 b/src/usr.sbin/openssl/openssl.1 index 79febb62ab..bc3f26f500 100644 --- a/src/usr.sbin/openssl/openssl.1 +++ b/src/usr.sbin/openssl/openssl.1 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: openssl.1,v 1.71 2010/10/08 17:57:19 jmc Exp $ | 1 | .\" $OpenBSD: openssl.1,v 1.72 2010/10/08 19:18:41 jmc Exp $ |
2 | .\" ==================================================================== | 2 | .\" ==================================================================== |
3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | .\" Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | .\" | 4 | .\" |
@@ -3244,6 +3244,56 @@ program only supports a fixed number of algorithms with certain parameters. | |||
3244 | Therefore it is not possible to use RC2 with a 76-bit key | 3244 | Therefore it is not possible to use RC2 with a 76-bit key |
3245 | or RC4 with an 84-bit key with this program. | 3245 | or RC4 with an 84-bit key with this program. |
3246 | .\" | 3246 | .\" |
3247 | .\" ENGINE | ||
3248 | .\" | ||
3249 | .Sh ENGINE | ||
3250 | .Nm openssl engine | ||
3251 | .Op Fl ctv | ||
3252 | .Op Fl post Ar cmd | ||
3253 | .Op Fl pre Ar cmd | ||
3254 | .Op Ar engine ... | ||
3255 | .Pp | ||
3256 | The | ||
3257 | .Nm engine | ||
3258 | command provides loadable module information and manipulation | ||
3259 | of various engines. | ||
3260 | Any options are applied to all engines supplied on the command line, | ||
3261 | or all supported engines if none are specified. | ||
3262 | .Pp | ||
3263 | The options are as follows: | ||
3264 | .Bl -tag -width Ds | ||
3265 | .It Fl c | ||
3266 | For each engine, also list the capabilities. | ||
3267 | .It Fl post Ar cmd | ||
3268 | Run command | ||
3269 | .Ar cmd | ||
3270 | against the engine after loading it | ||
3271 | (only used if | ||
3272 | .Fl t | ||
3273 | is also provided). | ||
3274 | .It Fl pre Ar cmd | ||
3275 | Run command | ||
3276 | .Ar cmd | ||
3277 | against the engine before any attempts | ||
3278 | to load it | ||
3279 | (only used if | ||
3280 | .Fl t | ||
3281 | is also provided). | ||
3282 | .It Fl t | ||
3283 | For each engine, check that they are really available. | ||
3284 | .Fl tt | ||
3285 | will display an error trace for unavailable engines. | ||
3286 | .It Fl v | ||
3287 | Verbose mode. | ||
3288 | For each engine, list its 'control commands'. | ||
3289 | .Fl vv | ||
3290 | will additionally display each command's description. | ||
3291 | .Fl vvv | ||
3292 | will also add the input flags for each command. | ||
3293 | .Fl vvvv | ||
3294 | will also show internal input flags. | ||
3295 | .El | ||
3296 | .\" | ||
3247 | .\" ERRSTR | 3297 | .\" ERRSTR |
3248 | .\" | 3298 | .\" |
3249 | .Sh ERRSTR | 3299 | .Sh ERRSTR |