Home
last modified time | relevance | path

Searched refs:spkac (Results 1 – 20 of 20) sorted by relevance

/third_party/node/lib/internal/crypto/
Dcertificate.js16 function verifySpkac(spkac) { argument
17 validateBuffer(spkac, 'spkac');
18 return certVerifySpkac(spkac);
21 function exportPublicKey(spkac, encoding) { argument
23 getArrayBufferView(spkac, 'spkac', encoding)
27 function exportChallenge(spkac, encoding) { argument
29 getArrayBufferView(spkac, 'spkac', encoding)
/third_party/openssl/doc/man1/
Dspkac.pod5 openssl-spkac,
6 spkac - SPKAC printing and generating utility
10 B<openssl> B<spkac>
19 [B<-spkac spkacname>]
27 The B<spkac> command processes Netscape signed public key and challenge
69 =item B<-spkac spkacname>
96 Specifying an engine (by its unique B<id> string) will cause B<spkac>
107 openssl spkac -in spkac.cnf
111 openssl spkac -in spkac.cnf -noout -verify
115 openssl spkac -key key.pem -challenge hello -out spkac.cnf
Dca.pod43 [B<-spkac file>]
102 =item B<-spkac filename>
117 file in PEM format (except that B<-spkac> outputs DER format).
154 B<-spkac>, B<-ss_cert> or B<-gencrl> are given, B<-selfsign> is
569 The input to the B<-spkac> command line option is a Netscape
572 It is however possible to create SPKACs using the B<spkac> utility.
617 openssl ca -spkac spkac.txt
757 L<req(1)>, L<spkac(1)>, L<x509(1)>, L<CA.pl(1)>,
Dopenssl.pod261 =item B<spkac>
548 L<smime(1)>, L<speed(1)>, L<spkac(1)>, L<srp(1)>, L<storeutl(1)>,
/third_party/openssl/crypto/x509/
Dx509spki.c16 if ((x == NULL) || (x->spkac == NULL)) in NETSCAPE_SPKI_set_pubkey()
18 return X509_PUBKEY_set(&(x->spkac->pubkey), pkey); in NETSCAPE_SPKI_set_pubkey()
23 if ((x == NULL) || (x->spkac == NULL)) in NETSCAPE_SPKI_get_pubkey()
25 return X509_PUBKEY_get(x->spkac->pubkey); in NETSCAPE_SPKI_get_pubkey()
Dx_all.c39 &a->sig_algor, a->signature, a->spkac, r)); in NETSCAPE_SPKI_verify()
106 x->signature, x->spkac, pkey, md)); in NETSCAPE_SPKI_sign()
/third_party/openssl/apps/
Dspkac.c60 const char *spkac = "SPKAC", *spksect = "default"; in spkac_main() local
106 spkac = opt_arg(); in spkac_main()
134 ASN1_STRING_set(spki->spkac->challenge, in spkac_main()
156 spkstr = NCONF_get_string(conf, spksect, spkac); in spkac_main()
159 BIO_printf(bio_err, "Can't find SPKAC called \"%s\"\n", spkac); in spkac_main()
Dbuild.info7 s_client.c s_server.c s_time.c sess_id.c smime.c speed.c spkac.c
/third_party/openssl/crypto/asn1/
Dt_spki.c28 X509_PUBKEY_get0_param(&spkioid, NULL, NULL, NULL, spki->spkac->pubkey); in NETSCAPE_SPKI_print()
32 pkey = X509_PUBKEY_get(spki->spkac->pubkey); in NETSCAPE_SPKI_print()
39 chal = spki->spkac->challenge; in NETSCAPE_SPKI_print()
Dx_spki.c23 ASN1_SIMPLE(NETSCAPE_SPKI, spkac, NETSCAPE_SPKAC),
/third_party/glib/gio/tests/desktop-files/usr/applications/
Dgcr-viewer.desktop3 …user-cert;application/pkcs10;application/pkcs10+pem;application/x-spkac;application/x-spkac+base64;
Dmimeinfo.cache94 application/x-spkac=gcr-viewer.desktop;
95 application/x-spkac+base64=gcr-viewer.desktop;
/third_party/node/test/fixtures/keys/
DMakefile56 rsa_spkac.spkac \
57 rsa_spkac_invalid.spkac \
673 rsa_spkac.spkac: rsa_private.pem
674 openssl spkac -key rsa_private.pem -challenge this-is-a-challenge | cut -c 7- > rsa_spkac.spkac
677 rsa_spkac_invalid.spkac: rsa_spkac.spkac
678 cat rsa_spkac.spkac | cut -c 5- > rsa_spkac_invalid.spkac
/third_party/node/doc/api/
Dcrypto.md56 ### `Certificate.exportChallenge(spkac)`
61 * `spkac` {string | Buffer | TypedArray | DataView}
62 * Returns: {Buffer} The challenge component of the `spkac` data structure, which
67 const spkac = getSpkacSomehow();
68 const challenge = Certificate.exportChallenge(spkac);
73 ### `Certificate.exportPublicKey(spkac[, encoding])`
78 * `spkac` {string | Buffer | TypedArray | DataView}
79 * `encoding` {string} The [encoding][] of the `spkac` string.
80 * Returns: {Buffer} The public key component of the `spkac` data structure,
85 const spkac = getSpkacSomehow();
[all …]
/third_party/openssl/include/openssl/
Dx509.h266 NETSCAPE_SPKAC *spkac; /* signed public key and challenge */ member
/third_party/node/src/
Dnode_crypto.cc6650 EVPKeyPointer pkey(X509_PUBKEY_get(spki->spkac->pubkey)); in VerifySpkac()
6724 ASN1_STRING_to_UTF8(&buf, sp->spkac->challenge); in ExportChallenge()
/third_party/node/doc/changelogs/
DCHANGELOG_V5.md1515 * [[`7d0b589644`](https://github.com/nodejs/node/commit/7d0b589644)] - **doc**: fix crypto spkac fu…
DCHANGELOG_V12.md2904 * [[`8670f6dd22`](https://github.com/nodejs/node/commit/8670f6dd22)] - **test**: move spkac certs t…
2930 * [[`5ac6dddb83`](https://github.com/nodejs/node/commit/5ac6dddb83)] - **test**: move spkac certs t…
DCHANGELOG_V4.md2823 * [[`347fb65aee`](https://github.com/nodejs/node/commit/347fb65aee)] - **doc**: fix crypto spkac fu…
/third_party/openssl/
DCHANGES11298 *) Add a new -notext option to 'ca' and a -pubkey option to 'spkac'.
12142 NETSCAPE_SPKI_print() to print out SPKAC and a new utility 'spkac' to