HomeSort by: relevance | last modified time | path
    Searched defs:nid (Results 1 - 25 of 259) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/crypto/external/apache2/openssl/dist/crypto/ec/
ec_check.c 22 int nid; local
38 nid = ossl_ec_curve_nid_from_params(group, ctx);
39 if (nid > 0 && nist_only && EC_curve_nid2nist(nid) == NULL)
40 nid = NID_undef;
43 return nid;
  /src/crypto/external/bsd/openssl/dist/crypto/ec/
ec_check.c 22 int nid; local
38 nid = ossl_ec_curve_nid_from_params(group, ctx);
39 if (nid > 0 && nist_only && EC_curve_nid2nist(nid) == NULL)
40 nid = NID_undef;
43 return nid;
  /src/crypto/external/apache2/openssl/dist/providers/common/der/
der_slh_dsa_key.c 15 #define CASE_OID(nid, name) \
16 case nid: \
25 int nid = ossl_slh_dsa_key_get_type(key); local
27 switch (nid) {
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
nid_104.h 22 unsigned char nid[8]; member in struct:dns_rdata_nid
  /src/crypto/external/apache2/openssl/dist/test/
asn1_string_table_test.c 21 int nid = 12345678, nid2 = 87654321, rv = 0, ret = 0; local
23 tmp = ASN1_STRING_TABLE_get(nid);
25 TEST_info("asn1 string table: ASN1_STRING_TABLE_get non-exist nid");
29 ret = ASN1_STRING_TABLE_add(nid, -1, -1, MBSTRING_ASC, 0);
31 TEST_info("asn1 string table: add NID(%d) failed", nid);
37 TEST_info("asn1 string table: add NID(%d) failed", nid2);
41 tmp = ASN1_STRING_TABLE_get(nid);
43 TEST_info("asn1 string table: get NID(%d) failed", nid);
    [all...]
ecdsatest.h 24 const int nid; /* curve NID */ member in struct:__anon671
25 const int md_nid; /* hash function NID */
  /src/crypto/external/bsd/openssl/dist/test/
asn1_string_table_test.c 21 int nid = 12345678, nid2 = 87654321, rv = 0, ret = 0; local
23 tmp = ASN1_STRING_TABLE_get(nid);
25 TEST_info("asn1 string table: ASN1_STRING_TABLE_get non-exist nid");
29 ret = ASN1_STRING_TABLE_add(nid, -1, -1, MBSTRING_ASC, 0);
31 TEST_info("asn1 string table: add NID(%d) failed", nid);
37 TEST_info("asn1 string table: add NID(%d) failed", nid2);
41 tmp = ASN1_STRING_TABLE_get(nid);
43 TEST_info("asn1 string table: get NID(%d) failed", nid);
    [all...]
ecdsatest.h 24 const int nid; /* curve NID */ member in struct:__anon1705
25 const int md_nid; /* hash function NID */
  /src/crypto/external/bsd/openssl.old/dist/crypto/dh/
dh_rfc7919.c 28 DH *DH_new_by_nid(int nid)
30 switch (nid) {
49 int nid; local
54 nid = NID_ffdhe2048;
56 nid = NID_ffdhe3072;
58 nid = NID_ffdhe4096;
60 nid = NID_ffdhe6144;
62 nid = NID_ffdhe8192;
70 nid = NID_undef;
73 return nid;
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
asn1_string_table_test.c 21 int nid = 12345678, nid2 = 87654321, rv = 0, ret = 0; local
23 tmp = ASN1_STRING_TABLE_get(nid);
25 TEST_info("asn1 string table: ASN1_STRING_TABLE_get non-exist nid");
29 ret = ASN1_STRING_TABLE_add(nid, -1, -1, MBSTRING_ASC, 0);
31 TEST_info("asn1 string table: add NID(%d) failed", nid);
37 TEST_info("asn1 string table: add NID(%d) failed", nid2);
41 tmp = ASN1_STRING_TABLE_get(nid);
43 TEST_info("asn1 string table: get NID(%d) failed", nid);
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
nid_104.h 23 unsigned char nid[8]; member in struct:dns_rdata_nid
  /src/sys/arch/vax/bi/
bi_nmi.c 66 int nid; local
90 nid = v2[1] & 15;
94 sc->sc_intcpu = 1 << nid;
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
asn_moid.c 62 int nid; local
97 nid = OBJ_create(ostr, name, ln);
101 return nid != NID_undef;
asn_mstbl.c 60 int nid, i, rv = 0; local
65 nid = OBJ_sn2nid(name);
66 if (nid == NID_undef)
67 nid = OBJ_ln2nid(name);
68 if (nid == NID_undef)
110 rv = ASN1_STRING_TABLE_add(nid, tbl_min, tbl_max,
  /src/crypto/external/apache2/openssl/dist/crypto/ct/
ct_prn.c 21 int nid = SCT_get_signature_nid(sct); local
23 if (nid == NID_undef)
26 BIO_printf(out, "%s", OBJ_nid2ln(nid));
  /src/crypto/external/apache2/openssl/dist/crypto/dh/
dh_gen.c 68 int nid; local
72 nid = NID_ffdhe2048;
75 nid = NID_ffdhe3072;
78 nid = NID_ffdhe4096;
81 nid = NID_ffdhe6144;
84 nid = NID_ffdhe8192;
90 return nid;
99 int nid = ossl_dh_get_named_group_uid_from_size(prime_len); local
101 if (nid == NID_undef)
104 dh = ossl_dh_new_by_nid_ex(libctx, nid);
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
ec_support.c 17 int nid; member in struct:ec_name2nid_st
118 const char *OSSL_EC_curve_nid2name(int nid)
122 if (nid <= 0)
126 if (curve_list[i].nid == nid)
135 int nid; local
138 if ((nid = ossl_ec_curve_nist2nid_int(name)) != NID_undef)
139 return nid;
143 return curve_list[i].nid;
170 const char *ossl_ec_curve_nid2nist_int(int nid)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ocsp/
ocsp_lib.c 47 int nid; local
58 if ((nid = EVP_MD_get_type(dgst)) == NID_undef) {
62 if ((alg->algorithm = OBJ_nid2obj(nid)) == NULL)
  /src/crypto/external/apache2/openssl/dist/providers/common/
securitycheck_fips.c 85 int nid = ossl_digest_get_approved_nid(md); local
86 int approved = (nid != NID_undef && nid != NID_sha1);
100 int nid, int sha1_allowed,
108 switch (nid) {
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
asn_moid.c 62 int nid; local
99 nid = OBJ_create(ostr, name, ln);
103 return nid != NID_undef;
asn_mstbl.c 60 int nid, i, rv = 0; local
65 nid = OBJ_sn2nid(name);
66 if (nid == NID_undef)
67 nid = OBJ_ln2nid(name);
68 if (nid == NID_undef)
110 rv = ASN1_STRING_TABLE_add(nid, tbl_min, tbl_max,
  /src/crypto/external/bsd/openssl/dist/crypto/ct/
ct_prn.c 21 int nid = SCT_get_signature_nid(sct); local
23 if (nid == NID_undef)
26 BIO_printf(out, "%s", OBJ_nid2ln(nid));
  /src/crypto/external/bsd/openssl/dist/crypto/dh/
dh_gen.c 67 int nid; local
71 nid = NID_ffdhe2048;
74 nid = NID_ffdhe3072;
77 nid = NID_ffdhe4096;
80 nid = NID_ffdhe6144;
83 nid = NID_ffdhe8192;
89 return nid;
98 int nid = ossl_dh_get_named_group_uid_from_size(prime_len); local
100 if (nid == NID_undef)
103 dh = ossl_dh_new_by_nid_ex(libctx, nid);
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
ec_support.c 17 int nid; member in struct:ec_name2nid_st
118 const char *OSSL_EC_curve_nid2name(int nid)
122 if (nid <= 0)
126 if (curve_list[i].nid == nid)
135 int nid; local
138 if ((nid = ossl_ec_curve_nist2nid_int(name)) != NID_undef)
139 return nid;
143 return curve_list[i].nid;
170 const char *ossl_ec_curve_nid2nist_int(int nid)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ocsp/
ocsp_lib.c 47 int nid; local
58 if ((nid = EVP_MD_get_type(dgst)) == NID_undef) {
62 if ((alg->algorithm = OBJ_nid2obj(nid)) == NULL)

Completed in 69 milliseconds

1 2 3 4 5 6 7 8 91011