Searched refs:datal (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/secure/lib/libcrypt/ |
| H A D | blowfish.c | 398 u_int32_t datal; in Blowfish_expand0state() local 409 datal = 0x00000000; in Blowfish_expand0state() 412 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state() 414 c->P[i] = datal; in Blowfish_expand0state() 420 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state() 422 c->S[i][k] = datal; in Blowfish_expand0state() 436 u_int32_t datal; in Blowfish_expandstate() local 447 datal = 0x00000000; in Blowfish_expandstate() 452 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate() 454 c->P[i] = datal; in Blowfish_expandstate() [all …]
|
| /freebsd-14.2/crypto/openssl/crypto/bio/ |
| H A D | bio_meth.c | 70 int bwrite_conv(BIO *bio, const char *data, size_t datal, size_t *written) in bwrite_conv() argument 74 if (datal > INT_MAX) in bwrite_conv() 75 datal = INT_MAX; in bwrite_conv() 77 ret = bio->method->bwrite_old(bio, data, (int)datal); in bwrite_conv() 116 int bread_conv(BIO *bio, char *data, size_t datal, size_t *readbytes) in bread_conv() argument 120 if (datal > INT_MAX) in bread_conv() 121 datal = INT_MAX; in bread_conv() 123 ret = bio->method->bread_old(bio, data, (int)datal); in bread_conv()
|
| /freebsd-14.2/crypto/openssh/openbsd-compat/ |
| H A D | blowfish.c | 427 u_int32_t datal; in Blowfish_expand0state() local 438 datal = 0x00000000; in Blowfish_expand0state() 441 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state() 443 c->P[i] = datal; in Blowfish_expand0state() 449 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state() 451 c->S[i][k] = datal; in Blowfish_expand0state() 466 u_int32_t datal; in Blowfish_expandstate() local 477 datal = 0x00000000; in Blowfish_expandstate() 482 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate() 484 c->P[i] = datal; in Blowfish_expandstate() [all …]
|
| /freebsd-14.2/crypto/openssl/include/internal/ |
| H A D | bio.h | 37 int bwrite_conv(BIO *bio, const char *data, size_t datal, size_t *written); 38 int bread_conv(BIO *bio, char *data, size_t datal, size_t *read);
|
| /freebsd-14.2/crypto/openssl/crypto/evp/ |
| H A D | evp_key.c | 80 int datal, int count, unsigned char *key, in EVP_BytesToKey() argument 105 if (!EVP_DigestUpdate(c, data, datal)) in EVP_BytesToKey()
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | EVP_BytesToKey.pod | 13 const unsigned char *data, int datal, int count, 22 B<datal> bytes which is used to derive the keying data. B<count> is the
|
| H A D | PEM_read_bio_PrivateKey.pod | 423 password is passed to EVP_BytesToKey() using the I<data> and I<datal>
|
| /freebsd-14.2/crypto/openssl/include/openssl/ |
| H A D | evp.h | 744 const unsigned char *data, int datal, int count,
|