Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pkeyparam(1) [centos man page]

PKEYPARAM(1)							      OpenSSL							      PKEYPARAM(1)

NAME
pkeyparam - public key algorithm parameter processing tool SYNOPSIS
openssl pkeyparam [-in filename] [-out filename] [-text] [-noout] [-engine id] DESCRIPTION
The pkey command processes public or private keys. They can be converted between various forms and their components printed out. COMMAND OPTIONS
-in filename This specifies the input filename to read parameters from or standard input if this option is not specified. -out filename This specifies the output filename to write parameters to or standard output if this option is not specified. -text prints out the parameters in plain text in addition to the encoded version. -noout do not output the encoded version of the parameters. -engine id specifying an engine (by its unique id string) will cause pkeyparam to attempt to obtain a functional reference to the specified engine, thus initialising it if needed. The engine will then be set as the default for all available algorithms. EXAMPLE
Print out text version of parameters: openssl pkeyparam -in param.pem -text NOTES
There are no -inform or -outform options for this command because only PEM format is supported because the key type is determined by the PEM headers. SEE ALSO
genpkey(1), rsa(1), pkcs8(1), dsa(1), genrsa(1), gendsa(1) 1.0.1e 2013-02-11 PKEYPARAM(1)

Check Out this Related Man Page

PKEYPARAM(1SSL) 						      OpenSSL							   PKEYPARAM(1SSL)

NAME
openssl-pkeyparam, pkeyparam - public key algorithm parameter processing tool SYNOPSIS
openssl pkeyparam [-help] [-in filename] [-out filename] [-text] [-noout] [-engine id] [-check] DESCRIPTION
The pkeyparam command processes public key algorithm parameters. They can be checked for correctness and their components printed out. OPTIONS
-help Print out a usage message. -in filename This specifies the input filename to read parameters from or standard input if this option is not specified. -out filename This specifies the output filename to write parameters to or standard output if this option is not specified. -text Prints out the parameters in plain text in addition to the encoded version. -noout Do not output the encoded version of the parameters. -engine id Specifying an engine (by its unique id string) will cause pkeyparam to attempt to obtain a functional reference to the specified engine, thus initialising it if needed. The engine will then be set as the default for all available algorithms. -check This option checks the correctness of parameters. EXAMPLE
Print out text version of parameters: openssl pkeyparam -in param.pem -text NOTES
There are no -inform or -outform options for this command because only PEM format is supported because the key type is determined by the PEM headers. SEE ALSO
genpkey(1), rsa(1), pkcs8(1), dsa(1), genrsa(1), gendsa(1) COPYRIGHT
Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <https://www.openssl.org/source/license.html>. 1.1.1a 2018-12-18 PKEYPARAM(1SSL)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Appending to filename a string of text grep finds

I am wanting to automate a process that includes the step of appending to a filename a string of text that's contained inside the file. I.e. if filename A.fileA contains a string of text that reads 1234 after the phrase ABC, I want the shell script file to rename the file 1234_FileChecked_A.fileA.... (3 Replies)
Discussion started by: HLee1981
3 Replies

2. Shell Programming and Scripting

input parameters pls help!

Hi i am a newbie who is trying to input parameters into this script, but not sure where to start. The parameters that need to be input are the baseline label "abc.0111.BL " mantioned bellow, and database string "abc/abcp@db2 @counter.sql " Environment: Windows XP Running script: Cygwin 3.2 ... (2 Replies)
Discussion started by: yarik20
2 Replies

3. Shell Programming and Scripting

Problem with Input parameters

Hi, I am facing a weird problem with input parameters. Please find more details about my problem below: a) I am executing a korn shellscript with 11 input parameters from "Appworx" tool (it's a scheduling tool) and immediately displaying those 11 parameter values in unixscript and noticed... (4 Replies)
Discussion started by: npk2210
4 Replies

4. Shell Programming and Scripting

How to validate input parameters?

Hi, I wonder how I can know if the input parameters to the script are numbers or text Thanks (11 Replies)
Discussion started by: Gengis-Kahn
11 Replies

5. UNIX for Dummies Questions & Answers

Writing text to file

Hi, I know the code to write a piece of text to the end of a given text file is echo $text >> filename.txt I would like to know how to write a piece of text to a file using shell, but the file name isn't given. I want it to write to whatever text file is currently open. Not to all text files... (2 Replies)
Discussion started by: anirudh215
2 Replies

6. UNIX for Dummies Questions & Answers

Take output of processing in text file

Hi ALL, I am presently using perl script mukesh.pl I just want to catch its output into another text file . So I am using > File.txt . I am getting output but i want the whole processing of the script into that file please let me know . Thanks in advance Cheers Mukesh (1 Reply)
Discussion started by: mumakhij
1 Replies