You are here

public static function ParagonIE_Sodium_Core_Curve25519::fe_0 in Automatic Updates 7

Same name and namespace in other branches
  1. 8 vendor/paragonie/sodium_compat/src/Core/Curve25519.php \ParagonIE_Sodium_Core_Curve25519::fe_0()

Get a field element of size 10 with a value of 0

@internal You should not use this directly from another application

Return value

ParagonIE_Sodium_Core_Curve25519_Fe

6 calls to ParagonIE_Sodium_Core_Curve25519::fe_0()
ParagonIE_Sodium_Core_Curve25519::ge_double_scalarmult_vartime in vendor/paragonie/sodium_compat/src/Core/Curve25519.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core_Curve25519::ge_frombytes_negate_vartime in vendor/paragonie/sodium_compat/src/Core/Curve25519.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core_Curve25519::ge_p2_0 in vendor/paragonie/sodium_compat/src/Core/Curve25519.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core_Curve25519::ge_p3_0 in vendor/paragonie/sodium_compat/src/Core/Curve25519.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core_Curve25519::ge_precomp_0 in vendor/paragonie/sodium_compat/src/Core/Curve25519.php

... See full list

File

vendor/paragonie/sodium_compat/src/Core/Curve25519.php, line 25

Class

ParagonIE_Sodium_Core_Curve25519
Class ParagonIE_Sodium_Core_Curve25519

Code

public static function fe_0() {
  return ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(array(
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
  ));
}