You are here

public static function ParagonIE_Sodium_Core32_BLAKE2b::xor64 in Automatic Updates 7

Same name and namespace in other branches
  1. 8 vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php \ParagonIE_Sodium_Core32_BLAKE2b::xor64()

@internal You should not use this directly from another application

Parameters

ParagonIE_Sodium_Core32_Int64 $x:

ParagonIE_Sodium_Core32_Int64 $y:

Return value

ParagonIE_Sodium_Core32_Int64

Throws

TypeError

3 calls to ParagonIE_Sodium_Core32_BLAKE2b::xor64()
ParagonIE_Sodium_Core32_BLAKE2b::compress in vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core32_BLAKE2b::G in vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core32_BLAKE2b::init in vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php
@internal You should not use this directly from another application

File

vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php, line 110

Class

ParagonIE_Sodium_Core32_BLAKE2b
Class ParagonIE_Sodium_Core_BLAKE2b

Code

public static function xor64(ParagonIE_Sodium_Core32_Int64 $x, ParagonIE_Sodium_Core32_Int64 $y) {
  return $x
    ->xorInt64($y);
}