Home
last modified time | relevance | path

Searched refs:o (Results 26 – 50 of 250) sorted by relevance

12345678910

/openssl/include/openssl/
H A Ddes.h61 # define DES_ecb2_encrypt(i,o,k1,k2,e) \ argument
62 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
64 # define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \ argument
65 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
67 # define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \ argument
68 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
70 # define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \ argument
71 DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n))
/openssl/apps/
H A Drand.c54 OPTION_CHOICE o; in rand_main() local
60 while ((o = opt_next()) != OPT_EOF) { in rand_main()
61 switch (o) { in rand_main()
78 if (!opt_rand(o)) in rand_main()
88 if (!opt_provider(o)) in rand_main()
H A Dgendsa.c63 OPTION_CHOICE o; in gendsa_main() local
68 while ((o = opt_next()) != OPT_EOF) { in gendsa_main()
69 switch (o) { in gendsa_main()
89 if (!opt_rand(o)) in gendsa_main()
93 if (!opt_provider(o)) in gendsa_main()
H A Derrstr.c36 OPTION_CHOICE o; in errstr_main() local
42 while ((o = opt_next()) != OPT_EOF) { in errstr_main()
43 switch (o) { in errstr_main()
H A Dnseq.c43 OPTION_CHOICE o; in nseq_main() local
48 while ((o = opt_next()) != OPT_EOF) { in nseq_main()
49 switch (o) { in nseq_main()
69 if (!opt_provider(o)) in nseq_main()
H A Dpkeyparam.c53 OPTION_CHOICE o; in pkeyparam_main() local
57 while ((o = opt_next()) != OPT_EOF) { in pkeyparam_main()
58 switch (o) { in pkeyparam_main()
87 if (!opt_provider(o)) in pkeyparam_main()
H A Dprime.c65 OPTION_CHOICE o; in prime_main() local
68 while ((o = opt_next()) != OPT_EOF) { in prime_main()
69 switch (o) { in prime_main()
96 if (!opt_provider(o)) in prime_main()
H A Ddsaparam.c74 OPTION_CHOICE o; in dsaparam_main() local
77 while ((o = opt_next()) != OPT_EOF) { in dsaparam_main()
78 switch (o) { in dsaparam_main()
112 if (!opt_rand(o)) in dsaparam_main()
116 if (!opt_provider(o)) in dsaparam_main()
H A Dgenrsa.c89 OPTION_CHOICE o; in genrsa_main() local
97 while ((o = opt_next()) != OPT_EOF) { in genrsa_main()
98 switch (o) { in genrsa_main()
123 if (!opt_rand(o)) in genrsa_main()
127 if (!opt_provider(o)) in genrsa_main()
H A Dinfo.c42 OPTION_CHOICE o; in info_main() local
45 while ((o = opt_next()) != OPT_EOF) { in info_main()
46 switch (o) { in info_main()
/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-onecolumn.pem21 o
69 o
169 o
213 o
509 o
609 o
653 o
923 o
944 o
1062 o
[all …]
/openssl/crypto/modes/
H A Dbuild.info66 INCLUDE[gcm128.o]=..
74 INCLUDE[ghash-sparcv9.o]=..
80 INCLUDE[ghash-armv4.o]=..
82 INCLUDE[ghashv8-armx.o]=..
84 INCLUDE[aes-gcm-armv8_64.o]=..
86 INCLUDE[aes-gcm-armv8-unroll8_64.o]=..
88 INCLUDE[ghash-s390x.o]=..
/openssl/crypto/poly1305/
H A Dbuild.info39 INCLUDE[poly1305-sparcv9.o]=..
46 INCLUDE[poly1305-armv4.o]=..
48 INCLUDE[poly1305-armv8.o]=..
50 INCLUDE[poly1305-mips.o]=..
52 INCLUDE[poly1305-s390x.o]=..
/openssl/apps/include/
H A Dopt.h262 #define IS_NO_PROT_FLAG(o) \ argument
263 (o == OPT_S_NOSSL3 || o == OPT_S_NOTLS1 || o == OPT_S_NOTLS1_1 \
264 || o == OPT_S_NOTLS1_2 || o == OPT_S_NOTLS1_3)
361 char *opt_init(int ac, char **av, const OPTIONS * o);
/openssl/crypto/ec/
H A Dbuild.info38 INCLUDE[ecp_nistp521.o]=..
90 INCLUDE[ecp_nistz256-sparcv9.o]=..
92 INCLUDE[ecp_s390x_nistp.o]=..
93 INCLUDE[ecx_s390x.o]=..
94 INCLUDE[ecx_meth.o]=..
97 INCLUDE[ecp_nistz256-armv4.o]=..
99 INCLUDE[ecp_nistz256-armv8.o]=..
/openssl/crypto/aes/
H A Dbuild.info104 INCLUDE[aes-sparcv9.o]=..
106 INCLUDE[aest4-sparcv9.o]=..
109 INCLUDE[aesfx-sparcv9.o]=..
118 INCLUDE[aes-mips.o]=..
124 INCLUDE[aesv8-armx.o]=..
126 INCLUDE[vpaes-armv8.o]=..
129 INCLUDE[aes-armv4.o]=..
131 INCLUDE[bsaes-armv7.o]=..
134 INCLUDE[aes-s390x.o]=..
/openssl/test/testutil/
H A Doptions.c20 OPTION_CHOICE_DEFAULT o; in test_skip_common_options() local
22 while ((o = (OPTION_CHOICE_DEFAULT)opt_next()) != OPT_EOF) { in test_skip_common_options()
23 switch (o) { in test_skip_common_options()
/openssl/crypto/ocsp/
H A Docsp_prn.c87 int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *o, unsigned long flags) in OCSP_REQUEST_print() argument
93 OCSP_REQINFO *inf = &o->tbsRequest; in OCSP_REQUEST_print()
94 OCSP_SIGNATURE *sig = o->optionalSignature; in OCSP_REQUEST_print()
132 int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags) in OCSP_RESPONSE_print() argument
143 OCSP_RESPBYTES *rb = o->responseBytes; in OCSP_RESPONSE_print()
147 l = ASN1_ENUMERATED_get(o->responseStatus); in OCSP_RESPONSE_print()
162 if ((br = OCSP_response_get1_basic(o)) == NULL) in OCSP_RESPONSE_print()
/openssl/crypto/asn1/
H A Da_object.c383 ASN1_OBJECT o; in ASN1_OBJECT_create() local
385 o.sn = sn; in ASN1_OBJECT_create()
386 o.ln = ln; in ASN1_OBJECT_create()
387 o.data = data; in ASN1_OBJECT_create()
388 o.nid = nid; in ASN1_OBJECT_create()
389 o.length = len; in ASN1_OBJECT_create()
390 o.flags = ASN1_OBJECT_FLAG_DYNAMIC | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS | in ASN1_OBJECT_create()
392 return OBJ_dup(&o); in ASN1_OBJECT_create()
/openssl/
H A DConfigure2275 my $o = $_;
2280 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2281 $o = cleanfile($buildd, $o, $blddir);
2288 $o = cleanfile($buildd, $o, $blddir);
2296 if ($o ne $_) {
2321 my $o = $_;
2326 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2327 $o = cleanfile($buildd, $o, $blddir);
2334 $o = cleanfile($buildd, $o, $blddir);
2341 $o = cleanfile($buildd, $_, $blddir);
[all …]
/openssl/fuzz/corpora/conf/
H A Dbebc77c23e46d2f27e22b0f4a45ad463da86387577 -0000::=o
114 00^00::=0o=
136 o::=
H A D22c2eaeac44a1a5e85a059e91b71f4924214edf364 o::=
83 -5::=o
133 000400000::0=o
/openssl/crypto/chacha/
H A Dbuild.info34 INCLUDE[chacha-armv4.o]=..
37 INCLUDE[chacha-armv8.o]=..
38 INCLUDE[chacha-armv8-sve.o]=..
39 INCLUDE[chacha-s390x.o]=..
/openssl/crypto/bn/
H A Dbuild.info128 INCLUDE[bn_exp.o]=..
140 INCLUDE[sparcv9a-mont.o]=..
142 INCLUDE[sparcv9-mont.o]=..
144 INCLUDE[vis3-mont.o]=..
146 INCLUDE[sparct4-mont.o]=..
148 INCLUDE[sparcv9-gf2m.o]=..
151 INCLUDE[bn-mips.o]=..
153 INCLUDE[mips-mont.o]=..
181 INCLUDE[armv4-mont.o]=..
183 INCLUDE[armv4-gf2m.o]=..
[all …]
/openssl/Configurations/
H A DREADME-design.md88 DEPEND[cversion.o]=buildinf.h
259 "crypto/cversion.o" =>
350 "apps/openssl.o" =>
354 "crypto/aes.o" =>
358 "crypto/cversion.o" =>
362 "crypto/evp.o" =>
392 "ssl/tls.o" =>
570 objs => [ "crypto/aes.o", "crypto/evp.o", "crypto/cversion.o" ],
574 objs => [ "crypto/aes.o", "crypto/evp.o", "crypto/cversion.o" ]);
576 src2obj(obj => "crypto/aes.o"
[all …]

Completed in 69 milliseconds

12345678910