summaryrefslogtreecommitdiffstats
path: root/vendor/web-token/jwt-util-ecc/ModularArithmetic.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/web-token/jwt-util-ecc/ModularArithmetic.php70
1 files changed, 35 insertions, 35 deletions
diff --git a/vendor/web-token/jwt-util-ecc/ModularArithmetic.php b/vendor/web-token/jwt-util-ecc/ModularArithmetic.php
index 29be145..f4b0e0e 100644
--- a/vendor/web-token/jwt-util-ecc/ModularArithmetic.php
+++ b/vendor/web-token/jwt-util-ecc/ModularArithmetic.php
@@ -1,35 +1,35 @@
-<?php
-
-declare(strict_types=1);
-
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2014-2018 Spomky-Labs
- *
- * This software may be modified and distributed under the terms
- * of the MIT license. See the LICENSE file for details.
- */
-
-namespace Jose\Component\Core\Util\Ecc;
-
-/**
- * @internal
- */
-class ModularArithmetic
-{
- public static function sub(\GMP $minuend, \GMP $subtrahend, \GMP $modulus): \GMP
- {
- return Math::mod(Math::sub($minuend, $subtrahend), $modulus);
- }
-
- public static function mul(\GMP $multiplier, \GMP $muliplicand, \GMP $modulus): \GMP
- {
- return Math::mod(Math::mul($multiplier, $muliplicand), $modulus);
- }
-
- public static function div(\GMP $dividend, \GMP $divisor, \GMP $modulus): \GMP
- {
- return self::mul($dividend, Math::inverseMod($divisor, $modulus), $modulus);
- }
-}
+<?php
+
+declare(strict_types=1);
+
+/*
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2014-2018 Spomky-Labs
+ *
+ * This software may be modified and distributed under the terms
+ * of the MIT license. See the LICENSE file for details.
+ */
+
+namespace Jose\Component\Core\Util\Ecc;
+
+/**
+ * @internal
+ */
+class ModularArithmetic
+{
+ public static function sub(\GMP $minuend, \GMP $subtrahend, \GMP $modulus): \GMP
+ {
+ return Math::mod(Math::sub($minuend, $subtrahend), $modulus);
+ }
+
+ public static function mul(\GMP $multiplier, \GMP $muliplicand, \GMP $modulus): \GMP
+ {
+ return Math::mod(Math::mul($multiplier, $muliplicand), $modulus);
+ }
+
+ public static function div(\GMP $dividend, \GMP $divisor, \GMP $modulus): \GMP
+ {
+ return self::mul($dividend, Math::inverseMod($divisor, $modulus), $modulus);
+ }
+}