Home
last modified time | relevance | path

Searched refs:keyspec (Results 1 – 25 of 148) sorted by relevance

123456

/dports/x11/xpra/xpra-4.3/xpra/client/
H A Dkeyboard_shortcuts_parser.py127 keyspec = parts[0].split("+")
129 if len(keyspec)>1:
132 for mod in keyspec[:len(keyspec)-1]:
155 keyname = keyspec[len(keyspec)-1]
/dports/www/firefox-esr/firefox-91.8.0/build/docs/
H A Dtest_certificates.rst12 If it needs a non-default private key, add a corresponding ``${cert_name}.server.keyspec``.
14 For a new **client certificate**, add a ``${cert_name}.client.keyspec`` and corresponding ``${cert_…
16 To add a new **CA**, add a ``${cert_name}.ca.keyspec`` as well as a corresponding ``${cert_name}.ce…
22 …* The full syntax for .keyspec files is documented at https://searchfox.org/mozilla-central/source…
28 These commands will modify cert9.db and key4.db, and if you have added a .keyspec file will generat…
/dports/lang/spidermonkey78/firefox-78.9.0/build/docs/
H A Dtest_certificates.rst12 If it needs a non-default private key, add a corresponding ``${cert_name}.server.keyspec``.
14 For a new **client certificate**, add a ``${cert_name}.client.keyspec`` and corresponding ``${cert_…
16 To add a new **CA**, add a ``${cert_name}.ca.keyspec`` as well as a corresponding ``${cert_name}.ce…
22 …* The full syntax for .keyspec files is documented at https://searchfox.org/mozilla-central/source…
28 These commands will modify cert9.db and key4.db, and if you have added a .keyspec file will generat…
/dports/www/firefox/firefox-99.0/build/docs/
H A Dtest_certificates.rst12 If it needs a non-default private key, add a corresponding ``${cert_name}.server.keyspec``.
14 For a new **client certificate**, add a ``${cert_name}.client.keyspec`` and corresponding ``${cert_…
16 To add a new **CA**, add a ``${cert_name}.ca.keyspec`` as well as a corresponding ``${cert_name}.ce…
22 …* The full syntax for .keyspec files is documented at https://searchfox.org/mozilla-central/source…
28 These commands will modify cert9.db and key4.db, and if you have added a .keyspec file will generat…
/dports/mail/thunderbird/thunderbird-91.8.0/build/docs/
H A Dtest_certificates.rst12 If it needs a non-default private key, add a corresponding ``${cert_name}.server.keyspec``.
14 For a new **client certificate**, add a ``${cert_name}.client.keyspec`` and corresponding ``${cert_…
16 To add a new **CA**, add a ``${cert_name}.ca.keyspec`` as well as a corresponding ``${cert_name}.ce…
22 …* The full syntax for .keyspec files is documented at https://searchfox.org/mozilla-central/source…
28 These commands will modify cert9.db and key4.db, and if you have added a .keyspec file will generat…
/dports/lang/spidermonkey60/firefox-60.9.0/build/pgo/certs/
H A DREADME7 To add a new CA, add a ${cert_name}.ca.keyspec as well as a corresponding
12 ${cert_name}.server.keyspec.
14 For new client certificates, add a ${cert_name}.client.keyspec and corresponding
25 dynamicPinningGood: Changing this keyspec will require changing
/dports/net-p2p/vuze/vuze-5.7.4.0_2/com/aelitis/azureus/core/security/
H A DCryptoECCUtils.java124 KeySpec keyspec = new ECPrivateKeySpec(D,(ECParameterSpec)ECCparam); in rawdataToPrivkey() local
129 …vkey = KeyFactory.getInstance("ECDSA",BouncyCastleProvider.PROVIDER_NAME).generatePrivate(keyspec); in rawdataToPrivkey()
162 KeySpec keyspec = new ECPublicKeySpec(W,(ECParameterSpec)ECCparam); in rawdataToPubkey() local
166 …return KeyFactory.getInstance("ECDSA", BouncyCastleProvider.PROVIDER_NAME).generatePublic(keyspec); in rawdataToPubkey()
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/cygnal/libnet/
H A Dsslclient.cpp171 SSLClient::sslSetupCTX(std::string &keyspec, std::string &caspec) in sslSetupCTX() argument
180 if (keyspec.find('/', 0) != string::npos) { in sslSetupCTX()
181 keyfile = keyspec; in sslSetupCTX()
185 keyfile += keyspec; in sslSetupCTX()
197 keyfile = keyspec; in sslSetupCTX()
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/
H A D9import.c19 char *keyspec = ""; variable
90 keyspec = EARGF(usage()); in threadmain()
155 authp, keyspec); in connectez()
157 authp, keyspec); in connectez()
/dports/databases/sqlcipher/sqlcipher-3.4.2/src/
H A Dcrypto_impl.c68 char *keyspec; member
379 sqlcipher_free(ctx->keyspec, ctx->keyspec_sz); in sqlcipher_cipher_ctx_free()
481 if(source->keyspec && source->keyspec_sz) { in sqlcipher_cipher_ctx_copy()
484 memcpy(target->keyspec, source->keyspec, source->keyspec_sz); in sqlcipher_cipher_ctx_copy()
498 sqlcipher_free(ctx->keyspec, ctx->keyspec_sz); in sqlcipher_cipher_ctx_set_keyspec()
499 ctx->keyspec = NULL; in sqlcipher_cipher_ctx_set_keyspec()
506 if(ctx->keyspec == NULL) return SQLITE_NOMEM; in sqlcipher_cipher_ctx_set_keyspec()
508 ctx->keyspec[0] = 'x'; in sqlcipher_cipher_ctx_set_keyspec()
509 ctx->keyspec[1] = '\''; in sqlcipher_cipher_ctx_set_keyspec()
512 ctx->keyspec[ctx->keyspec_sz - 1] = '\''; in sqlcipher_cipher_ctx_set_keyspec()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/build/pgo/
H A Dgenpgocert.py170 for keyspec in [i for i in files if i.endswith(".keyspec")]:
171 parts = keyspec.split(".")
177 "or XXX.ca.keyspec (key_type={})".format(keyspec, key_type)
183 with open(os.path.join(root, keyspec), "r") as keyspec_file:
196 "the keyspec {}".format(cert_pem, keyspec)
/dports/lang/spidermonkey78/firefox-78.9.0/build/pgo/
H A Dgenpgocert.py149 for keyspec in [i for i in files if i.endswith(".keyspec")]:
150 parts = keyspec.split(".")
156 keyspec, key_type))
161 with open(os.path.join(root, keyspec), "r") as keyspec_file:
173 cert_pem, keyspec))
/dports/www/firefox/firefox-99.0/build/pgo/
H A Dgenpgocert.py170 for keyspec in [i for i in files if i.endswith(".keyspec")]:
171 parts = keyspec.split(".")
177 "or XXX.ca.keyspec (key_type={})".format(keyspec, key_type)
183 with open(os.path.join(root, keyspec), "r") as keyspec_file:
196 "the keyspec {}".format(cert_pem, keyspec)
/dports/mail/thunderbird/thunderbird-91.8.0/build/pgo/
H A Dgenpgocert.py170 for keyspec in [i for i in files if i.endswith(".keyspec")]:
171 parts = keyspec.split(".")
177 "or XXX.ca.keyspec (key_type={})".format(keyspec, key_type)
183 with open(os.path.join(root, keyspec), "r") as keyspec_file:
196 "the keyspec {}".format(cert_pem, keyspec)
/dports/lang/spidermonkey60/firefox-60.9.0/build/pgo/
H A Dgenpgocert.py135 for keyspec in [i for i in files if i.endswith(".keyspec")]:
136 parts = keyspec.split(".")
140 … must be of the form XXX.client.keyspec or XXX.ca.keyspec (key_type={})".format(keyspec, key_type))
145 with open(os.path.join(root, keyspec), "r") as keyspec_file:
154 …There has to be a corresponding certificate named {} for the keyspec {}".format(cert_pem, keyspec))
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/layouts/power/
H A Ddefault.c34 const layouts_keyspec_t keyspec[] = { variable
62 keyspec,
/dports/net/jsch/jsch-0.1.55/src/main/java/com/jcraft/jsch/jce/
H A DAES128CTR.java56 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
62 keyspec, new IvParameterSpec(iv)); in init()
H A DAES256CBC.java55 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
61 keyspec, new IvParameterSpec(iv)); in init()
H A DAES256CTR.java55 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
61 keyspec, new IvParameterSpec(iv)); in init()
H A DAES128CBC.java56 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
62 keyspec, new IvParameterSpec(iv)); in init()
H A DAES192CBC.java55 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
61 keyspec, new IvParameterSpec(iv)); in init()
H A DAES192CTR.java55 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
61 keyspec, new IvParameterSpec(iv)); in init()
/dports/net/tigervnc-server/tigervnc-1.12.0/java/com/jcraft/jsch/jce/
H A DAES192CTR.java55 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
61 keyspec, new IvParameterSpec(iv)); in init()
H A DAES128CBC.java56 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
62 keyspec, new IvParameterSpec(iv)); in init()
H A DAES128CTR.java56 SecretKeySpec keyspec=new SecretKeySpec(key, "AES"); in init() local
62 keyspec, new IvParameterSpec(iv)); in init()

123456