Home
last modified time | relevance | path

Searched refs:label (Results 51 – 75 of 108) sorted by relevance

12345

/openssl/doc/man3/
H A DX509_check_host.pod30 and they match only in the left-most label; but they may match
31 part of that label with an explicit prefix or suffix. For example,
37 domain names must be given in A-label form. The B<namelen> argument
56 is made to convert from A-label to U-label before comparison.
113 constitutes the complete label of a DNS name (e.g. "*.example.com")
114 to match more than one label in B<name>; this flag only applies
H A DOSSL_trace_set_channel.pod275 const char *label = NULL;
279 label = "BEGIN";
282 label = "END";
286 if (label != NULL) {
294 label, OSSL_trace_get_category_name(category), tid.ltid);
H A DEVP_PKEY_CTX_ctrl.pod119 int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx, void *label,
121 int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx, unsigned char **label);
366 EVP_PKEY_CTX_set0_rsa_oaep_label() sets the RSA OAEP label to binary data
367 I<label> and its length in bytes to I<len>. If I<label> is NULL or I<len> is 0,
368 the label is cleared. The library takes ownership of the label so the
369 caller should not free the original memory pointed to by I<label>.
372 EVP_PKEY_CTX_get0_rsa_oaep_label() gets the RSA OAEP label to
373 I<label>. The return value is the label length. The padding mode
/openssl/crypto/perlasm/
H A Dppc-xlate.pl411 my $label = $1;
412 if ($label) {
413 my $xlated = ($GLOBALS{$label} or $label);
416 if ($TYPES{$label} =~ /function/) {
H A Dx86gas.pl216 { &::call(&::label("PIC_me_up"));
220 $reflabel=&::label("PIC_me_up");
/openssl/include/internal/
H A Dhpke_util.h86 const char *label,
93 const char *label,
/openssl/providers/implementations/encode_decode/
H A Dencode_key2text.c52 static int print_labeled_bignum(BIO *out, const char *label, const BIGNUM *bn) in DEFINE_SPECIAL_STACK_OF_CONST()
64 if (label == NULL) { in DEFINE_SPECIAL_STACK_OF_CONST()
65 label = ""; in DEFINE_SPECIAL_STACK_OF_CONST()
70 return BIO_printf(out, "%s%s0\n", label, post_label_spc); in DEFINE_SPECIAL_STACK_OF_CONST()
79 label, post_label_spc, neg, words[0], neg, words[0]); in DEFINE_SPECIAL_STACK_OF_CONST()
91 if (BIO_printf(out, "%s%s\n", label, neg) <= 0) in DEFINE_SPECIAL_STACK_OF_CONST()
133 static int print_labeled_buf(BIO *out, const char *label, in print_labeled_buf() argument
138 if (BIO_printf(out, "%s\n", label) <= 0) in print_labeled_buf()
/openssl/demos/encrypt/
H A Drsa_encrypt.c63 static unsigned char label[] = "label"; in set_optional_params() local
70 label, sizeof(label)); in set_optional_params()
/openssl/test/recipes/30-test_evp_data/
H A Devpkdf_tls11_prf.txt19 Ctrl.label = seed:master secret
27 Ctrl.label = seed:key expansion
/openssl/test/
H A Dtls13secretstest.c188 const char *label, in ssl_log_secret() argument
242 const unsigned char *label, size_t labellen, in test_secret() argument
258 if (!tls13_hkdf_expand(s, md, prk, label, labellen, hash, hashsize, in test_secret()
H A Devp_kdf_test.c1297 char *label = "prf", *digest = "sha256", *prf_input = "test", in test_kdf_kbkdf_8009_prf1() local
1318 OSSL_KDF_PARAM_SALT, label, strlen(label)); in test_kdf_kbkdf_8009_prf1()
1337 char *label = "prf", *digest = "sha384", *prf_input = "test", in test_kdf_kbkdf_8009_prf2() local
1362 OSSL_KDF_PARAM_SALT, label, strlen(label)); in test_kdf_kbkdf_8009_prf2()
1517 static unsigned char label[] = { in test_kdf_kbkdf_kmac() local
1575 label, sizeof(label)); in test_kdf_kbkdf_kmac()
/openssl/crypto/rc4/asm/
H A Drc4-parisc.pl124 my ($label,$count)=@_;
126 $label
143 addib,<> -1,$count,$label ; $count is always small
/openssl/crypto/modes/asm/
H A Dghash-ia64.pl54 my $label=shift;
64 $label:
92 br.ctop.sptk $label };;
/openssl/crypto/
H A Dinfo.c148 #define add_seeds_stringlist(label, strlist) \ in DEFINE_RUN_ONCE_STATIC() argument
150 add_seeds_string(label "("); \ in DEFINE_RUN_ONCE_STATIC()
/openssl/crypto/bn/asm/
H A Dx86-gf2m.pl216 &jz (&label("ialu"));
219 &jz (&label("mmx"));
221 &jz (&label("mmx"));
/openssl/doc/
H A Dopenssl-c-indent.el50 (label . 1)
/openssl/doc/man7/
H A DEVP_KDF-TLS13_KDF.pod38 This parameter sets the label prefix on the specified TLS 1.3 KDF context.
42 =item "label" (B<OSSL_KDF_PARAM_LABEL>) <octet string>
44 This parameter sets the label on the specified TLS 1.3 KDF context.
H A DEVP_KDF-X963.pod92 value "label":
108 "label", (size_t)5);
H A Dprovider-asym_cipher.pod221 =item "oaep-label" (B<OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL>) <octet string ptr>
223 Gets the OAEP label used when OAEP padding is in use.
225 =item "oaep-label" (B<OSSL_ASYM_CIPHER_PARAM_OAEP_LABEL>) <octet string>
227 Sets the OAEP label used when OAEP padding is in use.
/openssl/crypto/rsa/
H A Drsa_lib.c1175 int EVP_PKEY_CTX_set0_rsa_oaep_label(EVP_PKEY_CTX *ctx, void *label, int llen) in EVP_PKEY_CTX_set0_rsa_oaep_label() argument
1183 void *plabel = label; in EVP_PKEY_CTX_set0_rsa_oaep_label()
1197 if (label == NULL && llen == 0) in EVP_PKEY_CTX_set0_rsa_oaep_label()
1210 OPENSSL_free(label); in EVP_PKEY_CTX_set0_rsa_oaep_label()
1214 int EVP_PKEY_CTX_get0_rsa_oaep_label(EVP_PKEY_CTX *ctx, unsigned char **label) in EVP_PKEY_CTX_get0_rsa_oaep_label() argument
1230 (void **)label, 0); in EVP_PKEY_CTX_get0_rsa_oaep_label()
H A Drsa_pk1.c281 const char *label, int llen, in ossl_rsa_prf() argument
340 if (HMAC_Update(hmac, (unsigned char *)label, llen) <= 0) { in ossl_rsa_prf()
/openssl/crypto/cast/asm/
H A Dcast-586.pl87 &jnz(&label('cast_dec_skip'));
110 &jnz(&label('cast_enc_done'));
/openssl/doc/internal/man3/
H A Dossl_punycode_decode.pod26 ossl_punycode_decode() decodes one label (one dot-separated part) from
/openssl/include/openssl/
H A Dhpke.h137 const unsigned char *label,
/openssl/crypto/des/asm/
H A Ddes_enc.m4271 ! parameter 4 loop label
755 ! parameter 5 label
804 ! parameter 4 label
860 ! parameter 7 label
861 ! parameter 8 return label
982 ! parameter 7 label
983 ! parameter 8 return label
1398 ! addr left right temp label
1480 ! addr, length, dest left, dest right, temp, temp2, label, ret label
1683 ! addr, length, dest left, dest right, temp, temp2, label, ret label

Completed in 71 milliseconds

12345