You are here

public static function ParagonIE_Sodium_Core32_Curve25519::fe_1 in Automatic Updates 8

Same name and namespace in other branches
  1. 7 vendor/paragonie/sodium_compat/src/Core32/Curve25519.php \ParagonIE_Sodium_Core32_Curve25519::fe_1()

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

@internal You should not use this directly from another application

Return value

ParagonIE_Sodium_Core32_Curve25519_Fe

Throws

SodiumException

TypeError

6 calls to ParagonIE_Sodium_Core32_Curve25519::fe_1()
ParagonIE_Sodium_Core32_Curve25519::ge_frombytes_negate_vartime in vendor/paragonie/sodium_compat/src/Core32/Curve25519.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core32_Curve25519::ge_p2_0 in vendor/paragonie/sodium_compat/src/Core32/Curve25519.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core32_Curve25519::ge_p3_0 in vendor/paragonie/sodium_compat/src/Core32/Curve25519.php
@internal You should not use this directly from another application
ParagonIE_Sodium_Core32_Curve25519::ge_precomp_0 in vendor/paragonie/sodium_compat/src/Core32/Curve25519.php
ParagonIE_Sodium_Core32_Ed25519::pk_to_curve25519 in vendor/paragonie/sodium_compat/src/Core32/Ed25519.php

... See full list

File

vendor/paragonie/sodium_compat/src/Core32/Curve25519.php, line 54

Class

ParagonIE_Sodium_Core32_Curve25519
Class ParagonIE_Sodium_Core32_Curve25519

Code

public static function fe_1() {
  return ParagonIE_Sodium_Core32_Curve25519_Fe::fromArray(array(
    ParagonIE_Sodium_Core32_Int32::fromInt(1),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
    new ParagonIE_Sodium_Core32_Int32(),
  ));
}