Home
last modified time | relevance | path

Searched refs:issuerKey (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/npm/node_modules/sshpk/lib/
Dcertificate.js34 if (opts.issuerKey !== undefined) {
35 utils.assertCompatible(opts.issuerKey, Key, [1, 0],
50 this.issuerKey = opts.issuerKey;
123 Certificate.prototype.isSignedByKey = function (issuerKey) { argument
124 utils.assertCompatible(issuerKey, Key, [1, 2], 'issuerKey');
126 if (this.issuerKey !== undefined) {
127 return (this.issuerKey.
128 fingerprint('sha512').matches(issuerKey));
132 var valid = formats[fmt].verify(this, issuerKey);
134 this.issuerKey = issuerKey;
[all …]
/third_party/openssl/crypto/ocsp/
Docsp_lib.c44 const ASN1_BIT_STRING *issuerKey, in OCSP_cert_id_new() argument
74 if (!EVP_Digest(issuerKey->data, issuerKey->length, md, &i, dgst, NULL)) in OCSP_cert_id_new()
/third_party/node/deps/npm/node_modules/sshpk/lib/formats/
Dopenssh-cert.js132 cert.issuerKey = rfc4253.read(signingKeyBuf);
143 Signature.parse(sigBuf, cert.issuerKey.type, 'ssh');
292 sub = rfc4253.write(cert.issuerKey);
/third_party/openssl/doc/man3/
DOCSP_cert_to_id.pod17 ASN1_BIT_STRING *issuerKey,
37 issuer name B<issuerName>, issuer key hash B<issuerKey> and serial number
/third_party/openssl/ohos_lite/include/openssl/
Docsp.h174 const ASN1_BIT_STRING *issuerKey,
/third_party/node/deps/npm/node_modules/sshpk/
DREADME.md454 ### `createCertificate(subject, key, issuer, issuerKey[, options])`
461 - `issuerKey` -- a PrivateKey, the issuer's private key for signing
483 ### `Certificate#issuerKey`
/third_party/openssl/include/openssl/
Docsp.h.in205 const ASN1_BIT_STRING *issuerKey,