Home
last modified time | relevance | path

Searched refs:key_len (Results 1 – 5 of 5) sorted by relevance

/busybox-1.35.0/libbb/
Dpw_encrypt_sha.c47 unsigned key_len; in sha_crypt() local
91 key_len = strlen(key_data); in sha_crypt()
106 sha_hash(&ctx, key_data, key_len); in sha_crypt()
112 sha_hash(&alt_ctx, key_data, key_len); in sha_crypt()
114 sha_hash(&alt_ctx, key_data, key_len); in sha_crypt()
119 for (cnt = key_len; cnt > _32or64; cnt -= _32or64) in sha_crypt()
125 for (cnt = key_len; cnt != 0; cnt >>= 1) in sha_crypt()
129 sha_hash(&ctx, key_data, key_len); in sha_crypt()
137 for (cnt = 0; cnt < key_len; ++cnt) in sha_crypt()
138 sha_hash(&alt_ctx, key_data, key_len); in sha_crypt()
[all …]
Dcompare_string_array.c37 size_t key_len = strlen(key); in is_suffixed_with() local
38 ssize_t len_diff = strlen(string) - key_len; in is_suffixed_with()
/busybox-1.35.0/networking/
Dtls_aes.h9 void aes_setkey(struct tls_aes *aes, const void *key, unsigned key_len) FAST_FUNC;
Dtls_aes.c128 static int KeyExpansion(uint32_t *RoundKey, const void *key, unsigned key_len) in KeyExpansion() argument
144 words_key = key_len / 4; in KeyExpansion()
145 rounds = 6 + (key_len / 4); in KeyExpansion()
146 words_RoundKey = 28 + key_len; in KeyExpansion()
346 void FAST_FUNC aes_setkey(struct tls_aes *aes, const void *key, unsigned key_len) in aes_setkey() argument
348 aes->rounds = KeyExpansion(aes->key, key, key_len); in aes_setkey()
/busybox-1.35.0/util-linux/volume_id/
Dhfs.c88 uint16_t key_len; member