Home
last modified time | relevance | path

Searched refs:keylength (Results 1 – 18 of 18) sorted by relevance

/NextBSD/crypto/openssl/doc/ssl/
HDSSL_CTX_set_tmp_rsa_callback.pod12 RSA *(*tmp_rsa_callback)(SSL *ssl, int is_export, int keylength));
17 RSA *(*tmp_rsa_callback)(SSL *ssl, int is_export, int keylength));
21 RSA *(*tmp_rsa_callback)(SSL *ssl, int is_export, int keylength);
86 The B<tmp_rsa_callback> is called with the B<keylength> needed and
112 RSA *tmp_rsa_callback(SSL *s, int is_export, int keylength)
116 switch (keylength) {
121 rsa_tmp = RSA_generate_key(keylength,RSA_F4,NULL,NULL);
HDSSL_CTX_set_tmp_dh_callback.pod12 DH *(*tmp_dh_callback)(SSL *ssl, int is_export, int keylength));
16 DH *(*tmp_dh_callback)(SSL *ssl, int is_export, int keylength));
93 Previous versions of the callback used B<is_export> and B<keylength>
98 B<keylength> and B<is_export> and simply supply at least 2048-bit
HDSSL_CTX_set_cipher_list.pod40 RSA export ciphers with a keylength of 512 bits for the RSA key require
HDssl.pod348 …t_tmp_rsa_callback>(SSL_CTX *B<ctx>, RSA *(*B<cb>)(SSL *B<ssl>, int B<export>, int B<keylength>));>
353 B<C<keylength>> will contain the required keylength in bits. Generate a key of
358 long B<SSL_set_tmp_rsa_callback>(SSL *ssl, RSA *(*cb)(SSL *ssl, int export, int keylength));
/NextBSD/crypto/openssl/crypto/asn1/
HDp5_pbev2.c78 ASN1_OPT(PBKDF2PARAM, keylength, ASN1_INTEGER),
240 if (!(kdf->keylength = M_ASN1_INTEGER_new())) in PKCS5_pbkdf2_set()
242 if (!ASN1_INTEGER_set(kdf->keylength, keylen)) in PKCS5_pbkdf2_set()
/NextBSD/gnu/usr.bin/rcs/lib/
HDrcskeys.c162 static char local_id[keylength+1];
169 if (strlen(key) > keylength)
HDrcsfcmp.c160 char xkeyword[keylength+2];
216 if (xkeyword+keylength <= tp)
HDrcskeep.c129 char keyword[keylength+1];
163 if (keyword+keylength <= tp)
HDrcsedit.c877 bufalloc(&keyval, keylength+3);
920 if (tp <= &keyval.string[keylength])
HDrcsbase.h430 #define keylength 9 /* max length of any of the above keywords */ macro
/NextBSD/contrib/netbsd-tests/dev/cgd/
HDparamsfile3 keylength 128;
/NextBSD/crypto/openssl/crypto/evp/
HDp5_crpt2.c286 if (kdf->keylength && (ASN1_INTEGER_get(kdf->keylength) != (int)keylen)) { in PKCS5_v2_PBKDF2_keyivgen()
/NextBSD/crypto/openssl/ssl/
HDssl.h2512 int keylength));
2516 int keylength));
2521 int keylength));
2524 int keylength));
2529 int keylength));
2532 int keylength));
HDssl_lib.c3313 int keylength)) in SSL_CTX_set_tmp_rsa_callback() argument
3320 int keylength)) in SSL_set_tmp_rsa_callback() argument
3337 RSA *cb(SSL *ssl, int is_export, int keylength) in cb() argument
3351 int keylength)) in SSL_CTX_set_tmp_dh_callback() argument
3357 int keylength)) in SSL_set_tmp_dh_callback() argument
3366 int keylength)) in SSL_CTX_set_tmp_ecdh_callback() argument
3374 int keylength)) in SSL_set_tmp_ecdh_callback() argument
HDssltest.c229 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength);
2745 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength) in tmp_rsa_cb() argument
2755 BIO_printf(bio_err, "Generating temp (%d bit) RSA key...", keylength); in tmp_rsa_cb()
2757 if (!RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL)) { in tmp_rsa_cb()
/NextBSD/crypto/openssl/apps/
HDs_server.c210 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength);
3326 static RSA MS_CALLBACK *tmp_rsa_cb(SSL *s, int is_export, int keylength) in tmp_rsa_cb() argument
3336 keylength); in tmp_rsa_cb()
3340 !RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL)) { in tmp_rsa_cb()
/NextBSD/crypto/openssl/crypto/x509/
HDx509.h556 ASN1_INTEGER *keylength; member
/NextBSD/contrib/unbound/doc/
HDChangelog332 - Updated default keylength in unbound-control-setup to 3k.