Home
last modified time | relevance | path

Searched refs:suffix (Results 1 – 25 of 29) sorted by relevance

12

/openssl-master/crypto/
A Dtrace.c172 char *suffix; member
274 trace_channels[category].suffix = NULL; in set_trace_data()
295 if (suffix != NULL && *suffix != NULL) { in set_trace_data()
310 if (suffix != NULL && *suffix != NULL) { in set_trace_data()
311 attach_cb(category, SUFFIX, *suffix); in set_trace_data()
331 const char *suffix = NULL; in ossl_trace_cleanup() local
341 &prefix, &suffix, in ossl_trace_cleanup()
496 char *suffix = NULL; in OSSL_trace_end() local
499 suffix = trace_channels[category].suffix; in OSSL_trace_end()
505 if (suffix != NULL) { in OSSL_trace_end()
[all …]
/openssl-master/tools/
A Dc_rehash.in170 my $suffix = 0;
172 while(exists $hashlist{"$hash.$suffix"}) {
174 if ($hashlist{"$hash.$suffix"} eq $fprint) {
178 $suffix++;
180 $hash .= ".$suffix";
211 my $suffix = 0;
213 while(exists $hashlist{"$hash.r$suffix"}) {
215 if ($hashlist{"$hash.r$suffix"} eq $fprint) {
219 $suffix++;
221 $hash .= ".r$suffix";
/openssl-master/test/ssl-tests/
A D18-dtls-renegotiate.cnf.in27 my $suffix = ($sctp eq "No") ? "" : "-sctp";
30 name => "renegotiate-client-no-resume".$suffix,
47 name => "renegotiate-client-resume".$suffix,
72 name => "renegotiate-server-resume".$suffix,
88 name => "renegotiate-client-auth-require".$suffix,
108 name => "renegotiate-client-auth-once".$suffix,
133 name => "renegotiate-aead-to-non-aead".$suffix,
152 name => "renegotiate-non-aead-to-aead".$suffix,
171 name => "renegotiate-non-aead-to-non-aead".$suffix,
190 name => "renegotiate-aead-to-aead".$suffix,
/openssl-master/crypto/perlasm/
A Dx86gas.pl36 my($suffix,$dst,$src);
49 if ($dst =~ m/^%/o) { $suffix=&opsize($dst); }
50 elsif ($src =~ m/^%/o) { $suffix=&opsize($src); }
51 else { $suffix="l"; }
52 undef $suffix if ($dst =~ m/^%[xm]/o || $src =~ m/^%[xm]/o);
57 else { &::emit($opcode.$suffix,@arg);}
/openssl-master/crypto/asn1/
A Dbio_asn1.c54 asn1_ps_func *prefix, *prefix_free, *suffix, *suffix_free; member
351 ctx->suffix = ex_func->ex_func; in asn1_bio_ctrl()
357 ex_func->ex_func = ctx->suffix; in asn1_bio_ctrl()
375 if (!asn1_bio_setup_ex(b, ctx, ctx->suffix, in asn1_bio_ctrl()
439 int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix, in BIO_asn1_set_suffix() argument
442 return asn1_bio_set_ex(b, BIO_C_SET_SUFFIX, suffix, suffix_free); in BIO_asn1_set_suffix()
/openssl-master/crypto/x509/
A Dby_dir.c36 int suffix; member
285 k = hent->suffix; in get_cert_by_subject_ex()
379 hent->suffix = k; in get_cert_by_subject_ex()
387 } else if (hent->suffix < k) { in get_cert_by_subject_ex()
388 hent->suffix = k; in get_cert_by_subject_ex()
A Dv3_utl.c676 const unsigned char *suffix, size_t suffix_len, in wildcard_match() argument
692 if (!equal_nocase(wildcard_end, suffix_len, suffix, suffix_len, flags)) in wildcard_match()
698 if (prefix_len == 0 && *suffix == '.') { in wildcard_match()
/openssl-master/crypto/sha/asm/
A Dsha256-586.pl248 my $suffix=shift;
250 &set_label("loop$suffix",$suffix?32:16);
290 &set_label("00_15$suffix",16);
295 &jne (&label("00_15$suffix"));
298 &jmp (&label("16_63$suffix"));
300 &set_label("16_63$suffix",16);
305 &jne (&label("16_63$suffix"));
338 &jb (&label("loop$suffix"));
/openssl-master/doc/internal/man3/
A DOSSL_SAFE_MATH_SIGNED.pod37 suffix B<I<NAME>>.
40 suffix B<I<NAME>>.
/openssl-master/test/
A Devp_pkey_provided_test.c60 const char *suffix; in compare_with_file() local
68 suffix = "priv.txt"; in compare_with_file()
72 suffix = "priv.pem"; in compare_with_file()
76 suffix = "priv.der"; in compare_with_file()
80 suffix = "pub.txt"; in compare_with_file()
84 suffix = "pub.pem"; in compare_with_file()
88 suffix = "pub.der"; in compare_with_file()
96 BIO_snprintf(filename, sizeof(filename), "%s.%s", alg, suffix); in compare_with_file()
/openssl-master/apps/
A Drehash.c210 const char *suffix = suffixes[type]; in handle_symlink() local
211 if (strncasecmp(suffix, &filename[i], strlen(suffix)) == 0) in handle_symlink()
/openssl-master/util/perl/TLSProxy/
A DMessage.pm486 my $suffix = substr($recdata, $self->startoffset + $old_length);
488 $rec->decrypt_data($prefix.($msgdata).($suffix));
/openssl-master/apps/lib/
A Dapps.c1502 if (suffix == NULL) in save_serial()
1505 j = strlen(serialfile) + strlen(suffix) + 1; in save_serial()
1511 if (suffix == NULL) in save_serial()
1515 j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", serialfile, suffix); in save_serial()
1517 j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s-%s", serialfile, suffix); in save_serial()
1704 int save_index(const char *dbfile, const char *suffix, CA_DB *db) in save_index() argument
1710 j = strlen(dbfile) + strlen(suffix); in save_index()
1717 j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s.attr.%s", dbfile, suffix); in save_index()
1718 j = BIO_snprintf(buf[0], sizeof(buf[0]), "%s.%s", dbfile, suffix); in save_index()
1721 j = BIO_snprintf(buf[1], sizeof(buf[1]), "%s-attr-%s", dbfile, suffix); in save_index()
[all …]
/openssl-master/apps/include/
A Dapps.h223 int save_serial(const char *serialfile, const char *suffix, const BIGNUM *serial,
230 int save_index(const char *dbfile, const char *suffix, CA_DB *db);
/openssl-master/crypto/pem/
A Dpem_lib.c32 int ossl_pem_check_suffix(const char *pem_str, const char *suffix);
1010 int ossl_pem_check_suffix(const char *pem_str, const char *suffix) in ossl_pem_check_suffix() argument
1013 int suffix_len = strlen(suffix); in ossl_pem_check_suffix()
1018 if (strcmp(p, suffix)) in ossl_pem_check_suffix()
A Dpem_pkey.c31 int ossl_pem_check_suffix(const char *pem_str, const char *suffix);
/openssl-master/doc/man3/
A DOSSL_trace_set_channel.pod19 void OSSL_trace_set_suffix(int category, const char *suffix);
61 something suitable for application needs where a prefix and suffix
216 An example with just a channel and constant prefix / suffix.
A DX509_LOOKUP_hash_dir.pod95 The .I<N> or .B<r>I<N> suffix is a sequence number that starts at zero, and is
117 hashed names for all files with F<.pem> suffix in a given directory.
A DX509_check_host.pod31 part of that label with an explicit prefix or suffix. For example,
108 for "*" as wildcard pattern in labels that have a prefix or suffix,
/openssl-master/include/openssl/
A Dtrace.h92 int OSSL_trace_set_suffix(int category, const char *suffix);
A Dbio.h.in308 /* Prefix and suffix callback in ASN1 BIO */
594 int BIO_asn1_set_suffix(BIO *b, asn1_ps_func *suffix,
/openssl-master/crypto/modes/asm/
A Dghash-x86.pl267 $suffix = $x86only ? "" : "_x86";
269 &function_begin("gcm_gmult_4bit".$suffix);
300 &function_end("gcm_gmult_4bit".$suffix);
302 &function_begin("gcm_ghash_4bit".$suffix);
348 &function_end("gcm_ghash_4bit".$suffix);
/openssl-master/engines/
A De_loader_attic.c139 static int check_suffix(const char *str, const char *suffix) in check_suffix() argument
142 int suffix_len = strlen(suffix) + 1; in check_suffix()
149 || strcmp(p + 1, suffix) != 0) in check_suffix()
/openssl-master/
A DNOTES-UNIX.md115 differently, add `_a` suffix to link with them, e.g. `-lcrypto_a`.
/openssl-master/Configurations/
A DREADME-design.md40 end products. There are variants for them with `_NO_INST` as suffix

Completed in 76 milliseconds

12