| /src/crypto/krb5/src/include/ |
| H A D | CredentialsCache.h | 397 const cc_context_f *functions; member 423 const cc_ccache_f *functions; member 448 const cc_ccache_iterator_f *functions; member 553 const cc_credentials_f *functions; member 575 const cc_credentials_iterator_f *functions; member 600 const cc_string_f *functions; member 1390 ((context) -> functions -> release (context)) 1393 ((context) -> functions -> get_change_time (context, change_time)) 1396 ((context) -> functions -> get_default_ccache_name (context, name)) 1399 ((context) -> functions -> open_ccache (context, name, ccache)) [all …]
|
| /src/sys/contrib/device-tree/Bindings/pinctrl/ |
| H A D | marvell,armada-37xx-pinctrl.txt | 30 Available groups and functions for the North bridge: 34 - functions jtag, gpio 38 - functions sdio, gpio 42 - functions emmc, gpio 46 - functions pwm, led, gpio 50 - functions pwm, led, gpio 54 - functions pwm, led, gpio 58 - functions pwm, led, gpio 62 - functions pmic, gpio 66 - functions pmic, gpio [all …]
|
| /src/crypto/openssl/doc/man7/ |
| H A D | evp.pod | 5 evp - high-level cryptographic functions 14 functions. 17 functions provide public key encryption and decryption to implement digital "envelopes". 20 L<B<EVP_DigestVerify>I<XXX>|EVP_DigestVerifyInit(3)> functions implement 23 functions. 26 functions. The L<B<EVP_Digest>I<XXX>|EVP_DigestInit(3)> functions provide message digests. 28 The B<EVP_PKEY>I<XXX> functions provide a high-level interface to 31 with a private key of a particular algorithm by using the functions 38 The EVP_PKEY functions support the full range of asymmetric algorithm operations: 47 these functions do not perform a digest of the data to be signed. Therefore, [all …]
|
| H A D | ossl-guide-migration.pod | 71 "high level" APIs (for example those functions prefixed with C<EVP>). They cannot 87 L<EVP_EncryptInit_ex(3)>, and L<EVP_DigestInit(3)> functions. In case when 88 the requested algorithm is not available, these functions will fail. 101 For example, the EVP APIs provide the functions L<EVP_EncryptInit_ex(3)>, 103 encryption. Those functions can be used with the algorithms AES, CHACHA, 3DES etc. 105 to call AES specific functions such as L<AES_set_encrypt_key(3)>, 106 L<AES_encrypt(3)>, and so on. The functions for 3DES are different. 137 L<EC_KEY_METHOD_new(3)>, etc.). These functions are being deprecated in 166 functions must be used. 223 Using calls to convenience functions such as EVP_sha256() and EVP_aes_256_gcm() may [all …]
|
| H A D | provider.pod | 37 functions in the form of an L<OSSL_DISPATCH(3)> array, and by extension, 54 For the provider itself, it is passed to some of the functions given in the 57 I<in> is a dispatch array of base functions offered by the OpenSSL 58 libraries, and the available functions are further described in 61 I<*out> must be assigned a dispatch array of base functions that the 63 The functions that may be offered are further described in 69 This pointer will be passed to various operation functions offered by 75 One of the functions the provider offers to the OpenSSL libraries is 97 commonly in the I<fetching> type of functions 117 The functions the provider can offer are described in [all …]
|
| /src/sys/gnu/gcov/ |
| H A D | gcc_4_7.c | 110 struct gcov_fn_info **functions; member 215 ci_ptr = info->functions[fi_idx]->ctrs; in gcov_info_reset() 258 dci_ptr = dst->functions[fi_idx]->ctrs; in gcov_info_add() 259 sci_ptr = src->functions[fi_idx]->ctrs; in gcov_info_add() 299 dup->functions = NULL; in gcov_info_dup() 305 …dup->functions = malloc(info->n_functions * sizeof(struct gcov_fn_info *), M_GCOV, M_NOWAIT|M_ZERO… in gcov_info_dup() 306 if (dup->functions == NULL) in gcov_info_dup() 313 dup->functions[fi_idx] = malloc(fi_size, M_GCOV, M_NOWAIT|M_ZERO); in gcov_info_dup() 314 if (!dup->functions[fi_idx]) in gcov_info_dup() 317 *(dup->functions[fi_idx]) = *(info->functions[fi_idx]); in gcov_info_dup() [all …]
|
| /src/crypto/openssl/doc/man3/ |
| H A D | SRP_Calc_B.pod | 21 The following functions have been deprecated since OpenSSL 3.0, and can be 50 All of the functions described on this page are deprecated. There are no 51 available replacement functions at this time. 53 The SRP functions described on this page are used to calculate various 58 client side and are calculated via the functions SRP_Calc_client_key_ex(), 61 BIGNUM parameters to these functions. 63 Most of these functions come in two forms. Those that take a I<libctx> and 64 I<propq> parameter, and those that don't. Any cryptogrpahic functions that 69 functions do not have a form that takes I<libctx> or I<propq> parameters because 74 All these functions return the calculated key or parameter, or NULL on error. [all …]
|
| H A D | OPENSSL_fork_prepare.pod | 14 The following functions have been deprecated since OpenSSL 3.0, and can be 31 functions are used to reset this internal state. 33 Platforms without fork(2) will probably not need to use these functions. 36 such as Linux that have both functions will normally not need to call these 37 functions as the OpenSSL library will do so automatically. 39 L<OPENSSL_init_crypto(3)> will register these functions with the appropriate 41 applications, these functions can be called directly. They should be used 59 These functions were added in OpenSSL 1.1.1.
|
| H A D | SSL_CTX_set_min_proto_version.pod | 27 The functions get or set the minimum and maximum supported protocol versions 32 Use these functions instead of disabling specific protocol versions. 47 TLSv1.3. Calling these functions on a QUIC object has no effect. 51 These setter functions return 1 on success and 0 on failure. The getter 52 functions return the configured version or 0 for auto-configuration of 57 All these functions are implemented using macros. 66 The setter functions were added in OpenSSL 1.1.0. The getter functions
|
| H A D | OPENSSL_load_u16_le.pod | 43 These functions read and write 16, 32 and 64 bit unsigned integers in a 45 The C<_be> functions use big-endian byte order, while the C<_le> functions use 48 compiler supports inline functions, they're also declared inline. 52 The C<load> functions write the decoded integer value at the address pointed to 55 The C<store> functions write the encoding of I<val> at the address pointed to 58 For convenience, these functions return the updated input or output pointer, 68 All these functions return the next memory address following the last byte 73 These functions were added in OpenSSL 3.5.
|
| H A D | MDC2_Init.pod | 11 The following functions have been deprecated since OpenSSL 3.0, and can be 25 All of the functions described on this page are deprecated. 29 MDC2 is a method to construct hash functions with 128 bit output from 30 block ciphers. These functions are an implementation of MDC2 with 38 The following functions may be used if the message is not completely 49 Applications should use the higher level functions 51 hash functions directly. 69 All of these functions were deprecated in OpenSSL 3.0.
|
| H A D | MD5.pod | 6 MD4_Final, MD5_Init, MD5_Update, MD5_Final - MD2, MD4, and MD5 hash functions 10 The following functions have been deprecated since OpenSSL 3.0, and can be 23 The following functions have been deprecated since OpenSSL 3.0, and can be 35 The following functions have been deprecated since OpenSSL 3.0, and can be 49 All of the functions described on this page are deprecated. 53 MD2, MD4, and MD5 are cryptographic hash functions with a 128 bit output. 61 The following functions may be used if the message is not completely 75 Applications should use the higher level functions 77 etc. instead of calling the hash functions directly. 103 All of these functions were deprecated in OpenSSL 3.0.
|
| H A D | ADMISSIONS.pod | 115 NAMING_AUTHORITY_get0_get0_authorityText(), functions return pointers 120 functions free any existing value and set the pointer to the specified value. 125 and ADMISSION_SYNTAX_get0_contentsOfAdmissions() functions return pointers 130 functions free any existing value and set the pointer to the specified value. 136 functions return pointers to those values within the object. 141 functions free any existing value and set the pointer to the specified value. 146 The functions PROFESSION_INFO_get0_addProfessionInfo(), 150 functions return pointers to those values within the object. 157 functions free any existing value and set the pointer to the specified value. 162 Note that all of the I<get0> functions return a pointer to the internal data
|
| H A D | d2i_PKCS8PrivateKey_bio.pod | 7 i2d_PKCS8PrivateKey_nid_bio, i2d_PKCS8PrivateKey_nid_fp - PKCS#8 format private key functions 34 The PKCS#8 functions encode and decode private keys in PKCS#8 format using both 37 Other than the use of DER as opposed to PEM these functions are identical to the 42 These functions are currently the only way to store encrypted private keys using DER format. 44 Currently all the functions use BIOs or FILE pointers, there are no functions which 48 These functions make no assumption regarding the pass phrase received from the
|
| H A D | SSL_CTX_ctrl.pod | 5 SSL_CTX_ctrl, SSL_CTX_callback_ctrl, SSL_ctrl, SSL_callback_ctrl - internal handling functions for … 19 The SSL_*_ctrl() family of functions is used to manipulate settings of 21 B<larg>, B<parg>, or B<fp> are evaluated. These functions should never 23 other functions or macros. 27 The return values of the SSL*_ctrl() functions depend on the command
|
| /src/crypto/openssl/doc/designs/ |
| H A D | slh-dsa.md | 12 There are constants related to these, as well as there being a group of functions 17 OpenSSL will have 12 different key managers and 12 corresponding signature functions. 20 There are 7 hash functions used. The algorithms using SHAKE have a much simpler 21 set of 7 functions as they just use SHAKE-256 XOF (Even for the SHAKE-128 names). 23 There are 2 sets of functions for the SHA2 case. 25 Some of the hash functions use an ADRS object. This is 32 bytes for SHAKE algorithms 26 and 22 bytes for SHA2. Because SHA2 used a compressed format the ADRS functions are 29 There are many functions required to implement the sign and verify paths, which include 30 Merkle trees and WOTS+. The different functions normally call one of 2 of the 31 7 hash functions, as well as calling ADRS functions to pass to the HASH functions. [all …]
|
| /src/usr.sbin/bsdconfig/includes/ |
| H A D | USAGE | 31 -f Show functions for selected includes. 33 If `-f', only print functions matching pattern. Without `-f' 34 print only includes containing functions matching pattern. 43 View functions for all available includes (function names are 48 View functions with less(1) (function names are not highlighted): 52 View functions with less(1) and color: 56 View functions from `common.subr': 62 Show only functions containing the word `show' in common.subr: 68 Show descriptions of each of the `show' functions:
|
| /src/contrib/llvm-project/libcxx/include/ |
| H A D | random | 41 // constructors and seeding functions 49 // generating functions 103 // constructors and seeding functions 111 // generating functions 163 // constructors and seeding functions 171 // generating functions 213 // constructors and seeding functions 223 // generating functions 227 // property functions 266 // constructors and seeding functions [all …]
|
| /src/crypto/krb5/src/ccapi/lib/ |
| H A D | ccapi_string.c | 60 string->functions = malloc (sizeof (*string->functions)); in cci_string_new() 61 if (string->functions) { in cci_string_new() 62 *((cc_string_f *) string->functions) = cci_string_f_initializer; in cci_string_new() 96 free ((char *) in_string->functions); in ccapi_string_release()
|
| H A D | ccapi_credentials.c | 34 cc_credentials_f *functions; member 81 credentials->functions = malloc (sizeof (*credentials->functions)); in cci_credentials_read() 82 if (credentials->functions) { in cci_credentials_read() 83 *credentials->functions = cci_credentials_f_initializer; in cci_credentials_read() 159 free ((char *) credentials->functions); in ccapi_credentials_release()
|
| H A D | ccapi_credentials_iterator.c | 33 cc_credentials_iterator_f *functions; member 77 credentials_iterator->functions = malloc (sizeof (*credentials_iterator->functions)); in cci_credentials_iterator_new() 78 if (credentials_iterator->functions) { in cci_credentials_iterator_new() 79 *credentials_iterator->functions = cci_credentials_iterator_f_initializer; in cci_credentials_iterator_new() 139 free ((char *) credentials_iterator->functions); in ccapi_credentials_iterator_release()
|
| /src/sys/contrib/openzfs/etc/zfs/ |
| H A D | zfs-functions.in | 2 # This is a script with common functions etc used by zfs-import, zfs-load-key, 15 if [ -f /etc/rc.d/init.d/functions ]; then 17 . /etc/rc.d/init.d/functions 18 elif [ -L /etc/init.d/functions.sh ]; then 20 . /etc/init.d/functions.sh 21 elif [ -f /lib/lsb/init-functions ]; then 23 . /lib/lsb/init-functions 26 # Of course the functions we need are called differently 30 # LSB functions - fall through 36 # Fedora/RedHat functions [all …]
|
| /src/usr.sbin/memcontrol/ |
| H A D | memcontrol.c | 73 } functions[] = { variable 115 for (i = 0; functions[i].cmd != NULL; i++) in main() 116 if (!strcmp(argv[1], functions[i].cmd)) in main() 118 functions[i].func(memfd, argc - 1, argv + 1); in main() 329 for (i = 0; functions[i].cmd != NULL; i++) in help() 330 if (!strcmp(what, functions[i].cmd)) { in help() 331 fprintf(stderr, "%s\n", functions[i].desc); in help() 339 for (i = 0; functions[i].cmd != NULL; i++) in help() 340 fprintf(stderr, " %s\n", functions[i].cmd); in help()
|
| /src/contrib/libcbor/doc/source/api/ |
| H A D | item_types.rst | 12 …se note the distinction between functions like :func:`cbor_isa_uint()` and :func:`cbor_is_int()`. … 18 Alternatively, there are functions to query each particular type. 20 .. warning:: Passing an invalid :type:`cbor_item_t` reference to any of these functions results in … 35 These functions provide information about the item type from a more high-level perspective
|
| /src/lib/libc/locale/ |
| H A D | DESIGN.xlocale | 9 - Locale-aware functions taking an explicit locale argument (Darwin) 22 With this in mind, various libc-private functions have been modified to take a 25 variants of these functions, to make it harder for accidental uses of the 37 A locale_t is almost immutable after creation. There are no functions that modify it, 47 with each locale. These are used by various functions that previously had a 61 constraints as with the pre-xlocale libc. Calls to any locale-aware functions 111 A large number of functions have been modified to take an explicit `locale_t` 114 APIs, but also simplifies the modifications to these functions. The 117 if any functions attempt to use them. 119 The ctype.h functions are a little different. These are not implemented in [all …]
|