Home
last modified time | relevance | path

Searched refs:curve (Results 1 – 25 of 65) sorted by path

123

/plugin/achart/assets/
H A Dapexcharts.min.js6curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0},tooltip:{enabled:!0,enabledOnSeri…
/plugin/advrack/
H A Draphael.js2357 if (!path2 && pth.curve) {
2358 return pathClone(pth.curve);
2462 pth.curve = pathClone(p);
4903 var curve = easyeasy;
4905 return CubicBezierAtTime(t, +curve[1], +curve[2], +curve[3], +curve[4], ms);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DEC.php80 protected $curve; variable in phpseclib3\\Crypt\\EC
137 * @param string $curve
140 public static function createKey($curve) argument
148 $curve = strtolower($curve);
163 $curveName = $curve;
171 if (!class_exists($curve)) {
180 $curve = new $curve();
188 $privatekey->QA = $curve->multiplyPoint($curve->getBasePoint(), $dA);
190 $privatekey->curve = $curve;
228 $new->curve = $components['curve'];
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php195 self::$implicitCurve = $curve;
212 if (!class_exists($curve)) {
215 return new $curve();
229 $curve->setCoefficients(
236 return $curve;
256 $curve->setCoefficients(
263 return $curve;
432 $order = $curve->getOrder();
439 $point = $curve->getBasePoint();
443 if ($curve instanceof PrimeCurve) {
[all …]
H A DMontgomeryPrivate.php59 $curve = new Curve25519();
62 $curve = new Curve448();
68 $components = ['curve' => $curve];
70 $curve->rangeCheck($components['dA']);
85 public static function savePublicKey(MontgomeryCurve $curve, array $publicKey) argument
100 …public static function savePrivateKey(BigInteger $privateKey, MontgomeryCurve $curve, array $publi… argument
H A DMontgomeryPublic.php51 $curve = new Curve25519();
54 $curve = new Curve448();
60 $components = ['curve' => $curve];
74 public static function savePublicKey(MontgomeryCurve $curve, array $publicKey) argument
H A DOpenSSH.php76 $curve->rangeCheck($privateKey);
78 'curve' => $curve,
90 $curve = new Ed25519();
95 $curve = new $curveName();
101 'curve' => $curve,
112 private static function getAlias(BaseCurve $curve) argument
116 $reflect = new \ReflectionClass($curve);
152 if ($curve instanceof Ed25519) {
163 $alias = self::getAlias($curve);
190 if ($curve instanceof Ed25519) {
[all …]
H A DPKCS1.php154 public static function saveParameters(BaseCurve $curve, array $options = []) argument
158 if ($curve instanceof TwistedEdwardsCurve || $curve instanceof MontgomeryCurve) {
162 $key = self::encodeParameters($curve, false, $options);
180 …public static function savePrivateKey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, … argument
184 if ($curve instanceof TwistedEdwardsCurve || $curve instanceof MontgomeryCurve) {
193 'parameters' => new ASN1\Element(self::encodeParameters($curve)),
H A DPKCS8.php181 public static function savePublicKey(BaseCurve $curve, array $publicKey, array $options = []) argument
185 if ($curve instanceof MontgomeryCurve) {
189 if ($curve instanceof TwistedEdwardsCurve) {
191 $curve->encodePoint($publicKey),
193 $curve instanceof Ed25519 ? 'id-Ed25519' : 'id-Ed448'
197 $params = new ASN1\Element(self::encodeParameters($curve, false, $options));
215 …public static function savePrivateKey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, … argument
219 if ($curve instanceof MontgomeryCurve) {
223 if ($curve instanceof TwistedEdwardsCurve) {
229 $curve instanceof Ed25519 ? 'id-Ed25519' : 'id-Ed448'
[all …]
H A DPuTTY.php101 …public static function savePrivateKey(BigInteger $privateKey, BaseCurve $curve, array $publicKey, … argument
105 $public = explode(' ', OpenSSH::savePublicKey($curve, $publicKey));
113 if (!$curve instanceof TwistedEdwardsCurve) {
120 $private = $curve instanceof TwistedEdwardsCurve ?
135 public static function savePublicKey(BaseCurve $curve, array $publicKey) argument
137 $public = explode(' ', OpenSSH::savePublicKey($curve, $publicKey));
H A DXML.php222 if (!class_exists($curve)) {
225 return new $curve();
265 $curve = new PrimeCurve();
267 $curve->setCoefficients(
274 return $curve;
324 $curve->setCoefficients(
331 $curve->setBasePoint(
338 return $curve;
384 if ($curve instanceof TwistedEdwardsCurve || $curve instanceof MontgomeryCurve) {
441 $a = $curve->getA();
[all …]
H A Dlibsodium.php73 $curve = new Ed25519();
74 $components = ['curve' => $curve];
76 $components['dA'] = $curve->extractSecret($private);
79 self::extractPoint($public, $curve) :
80 $curve->multiplyPoint($curve->getBasePoint(), $components['dA']);
93 public static function savePublicKey(Ed25519 $curve, array $publicKey) argument
95 return $curve->encodePoint($publicKey);
108 …public static function savePrivateKey(BigInteger $privateKey, Ed25519 $curve, array $publicKey, $p… argument
119 return $privateKey->secret . $curve->encodePoint($publicKey);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/
H A DSSH2.php77 * @param string $curve
80 public static function save(BigInteger $r, BigInteger $s, $curve) argument
82 switch ($curve) {
84 $curve = 'nistp256';
87 $curve = 'nistp384';
90 $curve = 'nistp521';
98 return Strings::packSSH2('ss', 'ecdsa-sha2-' . $curve, $blob);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DParameters.php38 return $type::saveParameters($this->curve, $options);
H A DPrivateKey.php61 if ($this->curve instanceof MontgomeryCurve) {
76 return $this->curve->encodePoint($point);
94 if ($this->curve instanceof MontgomeryCurve) {
99 $order = $this->curve->getOrder();
116 $A = $this->curve->encodePoint($this->QA);
117 $curve = $this->curve;
118 $hash = new Hash($curve::HASH);
122 if ($curve instanceof Ed25519) {
134 $R = $curve->multiplyPoint($curve->getBasePoint(), $r);
135 $R = $curve->encodePoint($R);
[all …]
H A DPublicKey.php60 $order = $this->curve->getOrder();
71 $curve = $this->curve;
77 $S = substr($signature, $curve::SIZE);
93 $A = $curve->encodePoint($this->QA);
95 if ($curve instanceof Ed25519) {
103 $hash = new Hash($curve::HASH);
111 $lhs = $curve->multiplyPoint($curve->getBasePoint(), $S);
113 $rhs = $curve->addPoint($rhs, $R);
114 $rhs = $curve->convertToAffine($rhs);
150 $u1 = $this->curve->convertInteger($u1);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1766 $curve = strpos($this->kex_algorithm, 'curve25519-sha256') === 0 ?
1769 $ourPrivate = EC::createKey($curve);
/plugin/bpmnio/vendor/bpmn-js/dist/
H A Dbpmn-modeler.production.min.js7curve)return Ut(t.curve);for(var n=tn(e),i={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},r=function(…
/plugin/bpmnio/vendor/dmn-js/dist/
H A Ddmn-modeler.production.min.js7curve)return wr(t.curve);for(var n=Rr(e),i={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},r=function(…
/plugin/bpmnioeditor/vendor/bpmnio-js/
H A Dbpmn-modeler.development.js3974 if (pth.curve) {
3975 return pathClone(pth.curve);
4103 pth.curve = pathClone(curvedPath);
H A Dbpmn-modeler.production.min.js7curve)return Ft(t.curve);for(var n=Yt(e),i={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},r=function(…
/plugin/c3chart/assets/
H A Dc3.min.js2curve(c.getInterpolate(t))(e)):(e[0]&&(r=i(e[0].x),a=n(e[0].value)),d.axis_rotated?"M "+a+" "+r:"M…
H A Dd3.min.js2 …return n._curve=t,n}function ou(t){var n=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete… function
/plugin/callflow/
H A Draphael.js2357 if (!path2 && pth.curve) {
2358 return pathClone(pth.curve);
2462 pth.curve = pathClone(p);
4903 var curve = easyeasy;
4905 return CubicBezierAtTime(t, +curve[1], +curve[2], +curve[3], +curve[4], ms);
/plugin/chordsheets/js/
H A Draphael.js1curve)return mt(r.curve);for(var i=_t(t),n=e&&_t(e),a={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},…

123