/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/vars/ |
H A D | tst.nullassign.d | 40 phrase = strjoin(die, tap); 41 phrase = strjoin(phrase, die); 46 /phrase != expected/ 48 printf("global: expected '%s', found '%s'\n", expected, phrase); 54 this->phrase = strjoin(the, tap); 59 this->phrase = strjoin(this->phrase, the); 64 /this->phrase != expected/ 67 expected, this->phrase); 73 phrase = NULL; 74 this->phrase = NULL; [all …]
|
/freebsd/sys/contrib/ncsw/inc/ |
H A D | debug_ext.h | 62 #define _CREATE_DUMP_SUBSTR(phrase) \ argument 64 snprintf(dumpTmpStr, DUMP_MAX_STR, "%s", #phrase); \ 188 #define DUMP_VAR(st, phrase) \ argument 190 void *addr = (void *)&((st)->phrase); \ 192 _CREATE_DUMP_SUBSTR(phrase); \ 211 #define DUMP_ARR(st, phrase) \ argument 214 _CREATE_DUMP_SUBSTR(phrase); \ 215 dumpArrSize = ARRAY_SIZE((st)->phrase); \ 217 physAddr = XX_VirtToPhys((void *)&((st)->phrase[dumpArrIdx])); \ 219 … physAddr, GET_UINT32((st)->phrase[dumpArrIdx]), "", dumpSubStr, dumpArrIdx); \
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | passphrase-encoding.pod | 22 This means that for an object that was encrypted using a pass phrase encoded in 23 ISO-8859-1, that object needs to be decrypted using a pass phrase encoded in 29 PKCS#12 is a bit different regarding pass phrase encoding. 30 The standard stipulates that the pass phrase shall be encoded as an ASN.1 40 Treats the received pass phrase as UTF-8 encoded and tries to re-encode it to 47 Assumes that the pass phrase is encoded in ASCII or ISO-8859-1 and 52 UTF-16 characters that do not correspond to the original pass phrase characters 64 A pass phrase encoded in ISO-8859-2 could very well have a sequence such as 68 SMALL LETTER I WITH DIAERESIS) I<if the pass phrase doesn't contain anything that 70 A pass phrase that contains this kind of byte sequence will give a different [all …]
|
H A D | ossl_store-file.pod | 48 When needed, the 'file' scheme loader will require a pass phrase by 50 This pass phrase is expected to be UTF-8 encoded, anything else will 53 standard compliant with regards to pass phrase encoding. 55 phrase.
|
H A D | ossl_store.pod | 39 encoding on the pass phrase that the B<UI_METHOD> provides. However, 40 the pass phrase is expected to be UTF-8 encoded. The result of any
|
H A D | provider-decoder.pod | 233 used when a pass phrase prompt is needed. 266 Parameters currently recognised by the built-in pass phrase callback: 272 A string of information that will become part of the pass phrase
|
/freebsd/lib/libc/string/ |
H A D | strtok.c | 109 char *brkb, *brkt, *phrase, *sep, *word; in main() local 112 phrase = "foo"; in main() 124 for (phrase = strtok_r(blah, sep, &brkb); phrase; in main() 125 phrase = strtok_r(NULL, sep, &brkb)) in main() 126 printf("So far we're at %s:%s\n", word, phrase); in main()
|
/freebsd/tools/test/stress2/misc/ |
H A D | gbde.sh |
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | openssl-dsa.pod.in | 78 option is not specified. If the key is encrypted a pass phrase will be 84 is not specified. If any encryption options are set then a pass phrase will be 97 cipher before outputting it. A pass phrase is prompted for. 99 means that this command can be used to remove the pass phrase from a key 101 phrase by setting them. 153 To remove the pass phrase on a DSA private key:
|
H A D | openssl-rsa.pod.in | 79 option is not specified. If the key is encrypted a pass phrase will be 91 option is not specified. If any encryption options are set then a pass phrase 98 cipher before outputting it. A pass phrase is prompted for. 100 means that this command can be used to remove the pass phrase from a key 102 phrase by setting them. 165 To remove the pass phrase on an RSA private key:
|
H A D | openssl-ec.pod.in | 68 option is not specified. If the key is encrypted a pass phrase will be 74 is not specified. If any encryption options are set then a pass phrase will be 87 any other cipher supported by OpenSSL before outputting it. A pass phrase is 91 encryption option can be used to remove the pass phrase from a key, or by 92 setting the encryption options it can be use to add or change the pass phrase.
|
H A D | openssl-passphrase-options.pod | 5 openssl-passphrase-options - Pass phrase options 31 Pass phrase arguments can be formatted as follows.
|
H A D | openssl-pkey.pod.in | 75 a pass phrase will be prompted for. 105 then a pass phrase will be prompted for. 183 To remove the pass phrase on a private key:
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_DECODER_CTX_new_for_pkey.pod | 74 OSSL_DECODER_CTX_set_passphrase() gives the implementation a pass phrase to 75 use when decrypting the encoded private key. Alternatively, a pass phrase 80 implementation can use to prompt for a pass phrase, giving the caller the 81 choice of preferred pass phrase callback form. These are called indirectly, 84 The internal L<OSSL_PASSPHRASE_CALLBACK(3)> function caches the pass phrase, to
|
H A D | OSSL_ENCODER_CTX_new_for_pkey.pod | 74 pass phrase to use when encrypting the encoded private key. 75 Alternatively, a pass phrase callback may be specified with the 80 implementation can use to prompt for a pass phrase, giving the caller the 81 choice of preferred pass phrase callback form. These are called indirectly,
|
H A D | OSSL_CALLBACK.pod | 42 store the pass phrase needs to be given with I<pass>, and its size with 43 I<pass_size>. The length of the prompted pass phrase will be given back in
|
H A D | PEM_read_bio_PrivateKey.pod | 333 phrase used for encrypted PEM structures (normally only private keys). 395 These functions make no assumption regarding the pass phrase received from the 507 triple DES encryption, the pass phrase is prompted for: 513 DES encryption, using the pass phrase "hello": 519 Read a private key from a BIO using a pass phrase callback: 525 Skeleton pass phrase callback: 531 printf("Enter pass phrase for \"%s\"\n", (char *)u); 533 /* get pass phrase, length 'len' into 'tmp' */
|
H A D | d2i_PKCS8PrivateKey_bio.pod | 48 These functions make no assumption regarding the pass phrase received from the
|
H A D | UI_new.pod | 152 a prompt from two pieces of information: a phrase description I<phrase_desc> 157 With the description "pass phrase" and the filename "foo.key", that becomes 158 "Enter pass phrase for foo.key:". Other methods may create whatever
|
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | marvell,mvebu-pinctrl.txt | 9 phrase "pin configuration node".
|
H A D | pinctrl-rk805.txt | 7 including the meaning of the phrase "pin configuration node".
|
H A D | pinctrl-vt8500.txt | 21 phrase "pin configuration node".
|
/freebsd/ |
H A D | COPYRIGHT | 69 In the following statement, the phrase ``this text'' refers to portions 80 In the following statement, the phrase ``This material'' refers to portions
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | printer | 47 # 1 space char after length value to get phrase like "length 263893 PostScript document text" 56 # GRR: in file version 5.44 calling indirect of ./msdos produce phrase like "length 452\012- Window… 65 # GRR: in file version 5.44 calling indirect of ./images produce phrase like "length 43320\012- TIF…
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | ui.h.in | 148 * phrase_desc is a textual short description of the phrase to enter, 149 * for example "pass phrase", and 160 * So, if phrase_desc has the value "pass phrase" and object_name has 163 * "Enter pass phrase for foo.key:"
|