wp-includes/sodium_compat/src/Core32/Int32.php:417OR this 32-bit integer with another.
$bParagonIE_Sodium_Core32_Int32ParagonIE_Sodium_Core32_Int32 public function orInt32(ParagonIE_Sodium_Core32_Int32 $b) { $return = new ParagonIE_Sodium_Core32_Int32(); $return->unsignedInt = $this->unsignedInt; $return->limbs = array( (int) ($this->limbs[0] | $b->limbs[0]), (int) ($this->limbs[1] | $b->limbs[1]) ); /** @var int overflow */ $return->overflow = $this->overflow | $b->overflow; return $return; }Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/sodium_compat/src/Core32/Int32.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.