Home
last modified time | relevance | path

Searched refs:pubout (Results 1 – 11 of 11) sorted by relevance

/freebsd/crypto/openssl/apps/
H A Drsa.c92 static int try_legacy_encoding(EVP_PKEY *pkey, int outformat, int pubout, in try_legacy_encoding() argument
103 if (pubout == 2) in try_legacy_encoding()
108 if (pubout == 2) in try_legacy_encoding()
133 int noout = 0, modulus = 0, pubin = 0, pubout = 0, ret = 1; in rsa_main() local
181 pubout = 1; in rsa_main()
187 pubout = 2; in rsa_main()
228 private = (text && !pubin) || (!pubout && !noout) ? 1 : 0; in rsa_main()
338 if (pubout || pubin) { in rsa_main()
348 if (pubout || pubin) { in rsa_main()
349 if (pubout == 2) in rsa_main()
[all …]
H A Dpkey.c79 int pubin = 0, pubout = 0, text_pub = 0, text = 0, noout = 0, ret = 1; in pkey_main() local
122 pubin = pubout = 1; in pkey_main()
125 pubout = 1; in pkey_main()
186 if (!text_pub && pubout && text) { in pkey_main()
191 private = (!noout && !pubout) || (text && !text_pub); in pkey_main()
273 if (pubout) { in pkey_main()
295 if (pubout) { in pkey_main()
H A Ddsa.c87 int modulus = 0, pubin = 0, pubout = 0, ret = 1; in dsa_main() local
151 pubout = 1; in dsa_main()
172 private = pubin || pubout ? 0 : 1; in dsa_main()
247 if (pubout || pubin) in dsa_main()
254 if (pubout || pubin) { in dsa_main()
H A Dec.c77 int pubin = 0, pubout = 0, param_out = 0, ret = 1, private = 0; in ec_main() local
122 pubout = 1; in ec_main()
168 private = param_out || pubin || pubout ? 0 : 1; in ec_main()
250 } else if (pubin || pubout) { in ec_main()
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-rsa.pod.in40 [B<-pubout>]
127 =item B<-pubout>
135 Like B<-pubin> and B<-pubout> except B<RSAPublicKey> format is used instead.
183 openssl rsa -in key.pem -pubout -out pubkey.pem
H A Dopenssl-dsa.pod.in38 [B<-pubout>]
121 =item B<-pubout>
171 openssl dsa -in key.pem -pubout -out pubkey.pem
H A Dopenssl-ec.pod.in29 [B<-pubout>]
112 =item B<-pubout>
174 openssl ec -in key.pem -pubout -out pubkey.pem
H A Dopenssl-pkey.pod.in28 [B<-pubout>]
132 =item B<-pubout>
205 openssl pkey -in key.pem -pubout -out pubkey.pem
/freebsd/crypto/openssl/demos/certs/
H A Dmkcerts.sh54 $OPENSSL pkey -in dhskey.pem -pubout -out dhspub.pem
67 $OPENSSL pkey -in dhckey.pem -pubout -out dhcpub.pem
/freebsd/crypto/openssl/test/smime-certs/
H A Dmksmime-certs.sh76 $OPENSSL pkey -pubout -in smdh.pem -out dhpub.pem
/freebsd/crypto/openssl/
H A DCHANGES.md17802 * Add -pubin and -pubout options to the rsa and dsa commands. These allow
17804 openssl rsa -in key.pem -pubout -out pubkey.pem