| /freebsd-13.1/crypto/openssh/ |
| H A D | ssh-ed25519-sk.c | 45 struct sshbuf *encoded = NULL; in ssh_ed25519_sk_verify() local 117 if ((encoded = sshbuf_new()) == NULL) { in ssh_ed25519_sk_verify() 121 if (sshbuf_put(encoded, sigblob, len) != 0 || in ssh_ed25519_sk_verify() 122 sshbuf_put(encoded, apphash, sizeof(apphash)) != 0 || in ssh_ed25519_sk_verify() 123 sshbuf_put_u8(encoded, sig_flags) != 0 || in ssh_ed25519_sk_verify() 124 sshbuf_put_u32(encoded, sig_counter) != 0 || in ssh_ed25519_sk_verify() 125 sshbuf_put(encoded, msghash, sizeof(msghash)) != 0) { in ssh_ed25519_sk_verify() 131 sshbuf_dump(encoded, stderr); in ssh_ed25519_sk_verify() 133 sm = sshbuf_ptr(encoded); in ssh_ed25519_sk_verify() 134 smlen = sshbuf_len(encoded); in ssh_ed25519_sk_verify() [all …]
|
| H A D | sshkey-xmss.c | 920 (encoded = sshbuf_new()) == NULL || in sshkey_xmss_encrypt_state() 932 (r = sshbuf_put_u32(encoded, state->idx)) != 0) in sshkey_xmss_encrypt_state() 948 aadlen = sshbuf_len(encoded); in sshkey_xmss_encrypt_state() 951 if ((r = sshbuf_putb(encoded, padded)) != 0) in sshkey_xmss_encrypt_state() 972 sshbuf_free(encoded); in sshkey_xmss_encrypt_state() 1012 if ((copy = sshbuf_fromb(encoded)) == NULL || in sshkey_xmss_decrypt_state() 1020 if (sshbuf_len(encoded) < sizeof(XMSS_MAGIC) || in sshkey_xmss_decrypt_state() 1027 (r = sshbuf_get_u32(encoded, &index)) != 0 || in sshkey_xmss_decrypt_state() 1037 if (sshbuf_len(encoded) < authlen || in sshkey_xmss_decrypt_state() 1043 aadlen = sshbuf_len(copy) - sshbuf_len(encoded); in sshkey_xmss_decrypt_state() [all …]
|
| /freebsd-13.1/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/ |
| H A D | argon2.c | 89 const size_t hashlen, char *encoded, const size_t encodedlen, in argon2_hash() argument 143 if (encoded && encodedlen) { in argon2_hash() 146 sodium_memzero(encoded, encodedlen); in argon2_hash() 166 NULL, hashlen, encoded, encodedlen, Argon2_i); in argon2i_hash_encoded() 187 NULL, hashlen, encoded, encodedlen, Argon2_id); in argon2id_hash_encoded() 201 argon2_verify(const char *encoded, const void *pwd, const size_t pwdlen, in argon2_verify() argument 218 encoded_len = strlen(encoded); in argon2_verify() 243 decode_result = decode_string(&ctx, encoded, type); in argon2_verify() 268 argon2i_verify(const char *encoded, const void *pwd, const size_t pwdlen) in argon2i_verify() argument 270 return argon2_verify(encoded, pwd, pwdlen, Argon2_i); in argon2i_verify() [all …]
|
| H A D | argon2.h | 216 char *encoded, const size_t encodedlen); 237 char *encoded, const size_t encodedlen); 281 void *hash, const size_t hashlen, char *encoded, 291 int argon2i_verify(const char *encoded, const void *pwd, const size_t pwdlen); 300 int argon2id_verify(const char *encoded, const void *pwd, const size_t pwdlen); 303 int argon2_verify(const char *encoded, const void *pwd, const size_t pwdlen,
|
| /freebsd-13.1/crypto/heimdal/lib/wind/ |
| H A D | idn-lookup.c | 65 char encoded[1024]; in lookup() local 89 ep = encoded; in lookup() 96 len = sizeof(encoded) - (ep - encoded); in lookup() 108 printf("Converted \"%s\" into \"%s\"\n", name, encoded); in lookup() 112 ret = getaddrinfo(encoded, NULL, &hints, &ai); in lookup()
|
| /freebsd-13.1/crypto/openssl/crypto/rsa/ |
| H A D | rsa_sign.c | 74 const unsigned char *encoded = NULL; in RSA_sign() local 92 encoded = m; in RSA_sign() 96 encoded = tmps; in RSA_sign() 103 encrypt_len = RSA_private_encrypt(encoded_len, encoded, sigret, rsa, in RSA_sign() 129 unsigned char *decrypt_buf = NULL, *encoded = NULL; in int_rsa_verify() local 215 if (!encode_pkcs1(&encoded, &encoded_len, type, m, m_len)) in int_rsa_verify() 219 || memcmp(encoded, decrypt_buf, encoded_len) != 0) { in int_rsa_verify() 234 OPENSSL_clear_free(encoded, (size_t)encoded_len); in int_rsa_verify()
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/soundwire/ |
| H A D | qcom,sdw.txt | 17 Value type: <prop-encoded-array> 23 Value type: <prop-encoded-array> 33 Value type: <prop-encoded-array> 53 Value type: <prop-encoded-array> 60 Value type: <prop-encoded-array> 67 Value type: <prop-encoded-array> 75 Value type: <prop-encoded-array> 81 Value type: <prop-encoded-array> 90 Value type: <prop-encoded-array> 98 Value type: <prop-encoded-array> [all …]
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | quoprint.c | 123 svn_stringbuf_t *encoded = svn_stringbuf_create_empty(subpool); in encode_data() local 128 encode_bytes(encoded, data, *len, &eb->linelen); in encode_data() 129 enclen = encoded->len; in encode_data() 131 err = svn_stream_write(eb->output, encoded->data, &enclen); in encode_data() 180 svn_stringbuf_t *encoded = svn_stringbuf_create_empty(pool); in svn_quoprint_encode_string() local 183 encode_bytes(encoded, str->data, str->len, &linelen); in svn_quoprint_encode_string() 185 svn_stringbuf_appendcstr(encoded, "=\n"); in svn_quoprint_encode_string() 186 return encoded; in svn_quoprint_encode_string()
|
| H A D | base64.c | 213 svn_stringbuf_t *encoded = svn_stringbuf_create_empty(eb->scratch_pool); in encode_data() local 218 encode_bytes(encoded, data, *len, eb->buf, &eb->buflen, &eb->linelen, in encode_data() 220 enclen = encoded->len; in encode_data() 222 err = svn_stream_write(eb->output, encoded->data, &enclen); in encode_data() 233 svn_stringbuf_t *encoded = svn_stringbuf_create_empty(eb->scratch_pool); in finish_encoding_data() local 238 encode_partial_group(encoded, eb->buf, eb->buflen, eb->linelen, in finish_encoding_data() 240 enclen = encoded->len; in finish_encoding_data() 242 err = svn_stream_write(eb->output, encoded->data, &enclen); in finish_encoding_data() 277 svn_stringbuf_t *encoded = svn_stringbuf_create_empty(pool); in svn_base64_encode_string2() local 284 encode_partial_group(encoded, ingroup, ingrouplen, linelen, in svn_base64_encode_string2() [all …]
|
| /freebsd-13.1/sys/contrib/openzfs/module/icp/algs/modes/ |
| H A D | ccm.c | 719 encoded[0] = (auth_data_len & 0xff00) >> 8; in encode_adata_len() 720 encoded[1] = auth_data_len & 0xff; in encode_adata_len() 726 encoded[0] = 0xff; in encode_adata_len() 727 encoded[1] = 0xfe; in encode_adata_len() 729 lencoded_ptr = (uint32_t *)&encoded[2]; in encode_adata_len() 734 encoded[4] = (auth_data_len & 0xff00) >> 8; in encode_adata_len() 735 encoded[5] = auth_data_len & 0xff; in encode_adata_len() 742 encoded[0] = 0xff; in encode_adata_len() 743 encoded[1] = 0xff; in encode_adata_len() 745 llencoded_ptr = (uint64_t *)&encoded[2]; in encode_adata_len() [all …]
|
| /freebsd-13.1/contrib/apr-util/encoding/ |
| H A D | apr_base64.c | 198 APU_DECLARE(int) apr_base64_encode(char *encoded, const char *string, int len) in apr_base64_encode() argument 201 return apr_base64_encode_binary(encoded, (const unsigned char *) string, len); in apr_base64_encode() 206 p = encoded; in apr_base64_encode() 230 return p - encoded; in apr_base64_encode() 237 APU_DECLARE(int) apr_base64_encode_binary(char *encoded, in apr_base64_encode_binary() argument 243 p = encoded; in apr_base64_encode_binary() 267 return (int)(p - encoded); in apr_base64_encode_binary()
|
| /freebsd-13.1/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 30 The standard stipulates that the pass phrase shall be encoded as an ASN.1 32 encoded in big endian (UCS-2 BE). 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 64 A pass phrase encoded in ISO-8859-2 could very well have a sequence such as 83 This API stipulates that pass phrases should be UTF-8 encoded, and that any 115 encoded using UTF-8. 153 This also takes care of the case when a UTF-8 encoded string was used with [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/sound/ |
| H A D | qcom,q6afe.txt | 50 Value type: <prop-encoded-array> 56 Value type: <prop-encoded-array> 64 Value type: <prop-encoded-array> 71 Value type: <prop-encoded-array> 78 Value type: <prop-encoded-array> 85 Value type: <prop-encoded-array> 94 Value type: <prop-encoded-array>
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/phy/ |
| H A D | qcom,usb-8x16-phy.txt | 10 Value type: <prop-encoded-array> 15 Value type: <prop-encoded-array> 42 Value type: <prop-encoded-array> 52 Value type: <prop-encoded-array>
|
| H A D | qcom,usb-hsic-phy.txt | 21 Value type: <prop-encoded-array> 37 Value type: <prop-encoded-array> 43 Value type: <prop-encoded-array>
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/i2c/ |
| H A D | i2c-qcom-cci.txt | 15 Value type: <prop-encoded-array> 21 Value type: <prop-encoded-array> 28 Value type: <prop-encoded-array> 39 Value type: <prop-encoded-array>
|
| /freebsd-13.1/crypto/openssl/doc/man1/ |
| H A D | crl2pkcs7.pod | 35 This specifies the CRL input format. B<DER> format is DER encoded CRL 36 structure.B<PEM> (the default) is a base64 encoded version of 42 encoded PKCS#7 structure.B<PEM> (the default) is a base64 encoded version of 87 the certificate enrollment process. This involves sending the DER encoded output 90 The B<PEM> encoded form with the header and footer lines removed can be used to
|
| H A D | sess_id.pod | 22 The B<sess_id> process the encoded version of the SSL session structure 38 This specifies the input format. The B<DER> option uses an ASN1 DER encoded 41 format base64 encoded with additional header and footer lines. 62 plain text in addition to the encoded version. 71 This option prevents output of the encoded version of the session. 138 The PEM encoded session format uses the header and footer lines:
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
| H A D | pamu.txt | 13 - ranges : <prop-encoded-array> 20 - interrupts : <prop-encoded-array> 31 - reg : <prop-encoded-array> 51 - reg : <prop-encoded-array> 58 : <prop-encoded-array> 64 : <prop-encoded-array> 83 - fsl,liodn-reg : <prop-encoded-array>
|
| H A D | dcsr.txt | 42 Value type: <prop-encoded-array> 89 Value type: <prop-encoded-array> 118 Value type: <prop-encoded-array> 155 Value type: <prop-encoded-array> 180 Value type: <prop-encoded-array> 217 Value type: <prop-encoded-array> 245 Value type: <prop-encoded-array> 276 Value type: <prop-encoded-array> 305 Value type: <prop-encoded-array> 335 Value type: <prop-encoded-array> [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/media/ |
| H A D | qcom,camss.txt | 13 Value type: <prop-encoded-array> 35 Value type: <prop-encoded-array> 53 Value type: <prop-encoded-array> 59 Value type: <prop-encoded-array> 108 Value type: <prop-encoded-array> 134 Value type: <prop-encoded-array>
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | BIO_f_base64.pod | 35 used to signal that no more data is to be encoded: this is used 47 Because of the format of base64 encoding the end of the encoded 70 Read Base64 encoded data from standard input and write the decoded 89 The ambiguity of EOF in base64 encoded data can cause additional 90 data following the base64 encoded block to be misinterpreted.
|
| H A D | EC_KEY_get_enc_flags.pod | 22 When reading a private key encoded without an associated public key (e.g. if 24 the missing public key automatically. Private keys encoded without parameters 33 the curve are not encoded along with the private key. If EC_PKEY_NO_PUBKEY is 34 set then the public key is not encoded along with the private key.
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | qcom-pm8xxx.txt | 28 Value type: <prop-encoded-array> 40 encoded as follows: 70 Value type: <prop-encoded-array> 75 Value type: <prop-encoded-array>
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/soc/qcom/ |
| H A D | qcom,smem.txt | 14 Value type: <prop-encoded-array> 19 Value type: <prop-encoded-array> 24 Value type: <prop-encoded-array>
|