Lines Matching refs:GCM_ESP_SALT_SIZE
1332 aead_parms.ret_iv_off = GCM_ESP_SALT_SIZE; in handle_aead_req()
2907 if (keylen < GCM_ESP_SALT_SIZE) in aead_gcm_esp_setkey()
2910 ctx->salt_len = GCM_ESP_SALT_SIZE; in aead_gcm_esp_setkey()
2912 memcpy(ctx->salt, key + keylen - GCM_ESP_SALT_SIZE, GCM_ESP_SALT_SIZE); in aead_gcm_esp_setkey()
2913 keylen -= GCM_ESP_SALT_SIZE; in aead_gcm_esp_setkey()
2916 flow_dump("salt: ", ctx->salt, GCM_ESP_SALT_SIZE); in aead_gcm_esp_setkey()
2939 if (keylen < GCM_ESP_SALT_SIZE) in rfc4543_gcm_esp_setkey()
2942 ctx->salt_len = GCM_ESP_SALT_SIZE; in rfc4543_gcm_esp_setkey()
2944 memcpy(ctx->salt, key + keylen - GCM_ESP_SALT_SIZE, GCM_ESP_SALT_SIZE); in rfc4543_gcm_esp_setkey()
2945 keylen -= GCM_ESP_SALT_SIZE; in rfc4543_gcm_esp_setkey()
2949 flow_dump("salt: ", ctx->salt, GCM_ESP_SALT_SIZE); in rfc4543_gcm_esp_setkey()