Home
last modified time | relevance | path

Searched refs:sig (Results 1 – 25 of 47) sorted by last modified time

12

/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js38338 return enc ? sig.toString(enc) : sig;
38367 if (typeof sig === 'string') sig = Buffer.from(sig, enc);
38605 sig = new BN(sig).toRed(red);
38607 sig = Buffer.from(sig.fromRed().toArray());
48120 sig = this.makeSignature(sig);
48147 if (sig instanceof Signature) return sig;
48299 if (_typeof(sig) !== 'object') sig = parseBytes(sig);
48309 if (eddsa.isPoint(sig.R)) this._R = sig.R;
48310 if (sig.S instanceof BN) this._S = sig.S;
48311 this._Rencoded = Array.isArray(sig.R) ? sig.R : sig.Rencoded;
[all …]
/plugin/xlsx2dw/packages/jszip/
H A Djszip.js1758 var sig0 = sig.charCodeAt(0),
1759 sig1 = sig.charCodeAt(1),
1760 sig2 = sig.charCodeAt(2),
1761 sig3 = sig.charCodeAt(3);
1774 var sig0 = sig.charCodeAt(0),
1775 sig1 = sig.charCodeAt(1),
1776 sig2 = sig.charCodeAt(2),
1777 sig3 = sig.charCodeAt(3),
1953 return this.data.lastIndexOf(sig) - this.zero;
1960 return sig === data;
[all …]
/plugin/openid/Auth/OpenID/
H A DAssociation.php321 $sig = $this->getMessageSignature($signed_message);
322 $signed_message->setArg(Auth_OpenID_OPENID_NS, 'sig', $sig);
380 $sig = $message->getArg(Auth_OpenID_OPENID_NS,
383 if (!$sig || Auth_OpenID::isFailure($sig)) {
388 return Auth_OpenID_CryptUtil::constEq($calculated_sig, $sig);
H A DServer.php398 private $sig = ''; variable in Auth_OpenID_CheckAuthRequest
429 $sig = $message->getArg(Auth_OpenID_OPENID_NS, 'sig');
438 $result->sig = $sig;
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/da/
H A Dda.txt23 da medlemsstaterne har forpligtet sig til i samarbejde med De forenede Nationer at arbejde for fremme af almindelig respekt fur og overholdelse af menneskerettigheder og fundamentale frihedsrettigheder,
31 derfor nu denne VERDENSERKLÆRING OM MENNESKERETTIGHEDERNE som et fælles mål for alle folk og alle nationer med det formål, at ethvert menneske og ethvert samfundsorgan stedse med denne erklæring for øje skal stræbe efter gennem undervisning og opdragelse at fremme respekt for disse rettigheder og friheder og gennem fremadskridende nationale og internationale foranstaltninger at sikre, at de anerkendes og overholdes overalt og effektivt, både blandt befolkningerne i medlemsstaterne og blandt befolkningerne i de områder, der befinder sig under deres styre.
74 1. Enhver har ret til at bevæge sig frit og til frit at vælge opholdssted indenfor hver stats grænser.
76 2. Enhver har ret til at forlade et hvilket som helst land, herunder sig eget, og til at vende tilbage til sit eget land.
89 1. Uden begrænsninger af racemæssige, nationalitetsmæssige eller religiøse grunde har mænd og kvinder, der har nået myndighedsalderen, ret til at gifte sig og stifte familie. De har krav på lige rettigheder med hensyn til indgåelse af ægteskab, under ægteskabet og ved dettes opløsning.
161 Intet i denne erklæring må fortolkes som givende nogen stat, gruppe eller enkeltperson hjemmel til at indlade sig på nogen virksomhed eller foretage nogen handling, der tilsigter at nedbryde nogen af de heri opre (…)
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/sv/
H A Dsv.txt23 enär medlemsstaterna åtagit sig att i samverkan med Förenta Nationerna säkerställa allmän och effektiv respekt för de mänskliga rättigheterna och de grundläggande friheterna,
39 Ingen åtskillnad må vidare göras på grund av den politiska, juridiska eller internationella ställning, som intages av det land eller område, till vilket en person hör, vare sig detta land eller område är oberoende, står under förvaltarskap, är icke-självstyrande eller är underkastat någon annan begränsning av sin suveränitet.
74 1. Envar har rätt att inom varje stats gränser fritt förflytta sig och välja sin vistelseort.
128 4. Envar har rätt att bilda och ansluta sig till fackföreningar till skydd för sina intressen.
136 2. Mödrar och barn äro berättigade till särskild omvårdnad och hjälp. Alla barn, vare sig födda inom eller utom äktenskap, skola åtnjuta samma sociala skydd.
161 Intet i denna förklaring må tolkas såsom innebärande rättighet för någon stat, grupp eller person att ägna sig åt verksamhet eller utföra handling, som syftar till att omintetgöra någon av häri uttalade fri- o (…)
/plugin/ckgedit/ckeditor/plugins/signature/
H A Dplugin.js.unc54 icon: this.path + 'images/sig.png'
/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DAWSTest.php187 $sig = base64_encode($this->hmacsha1($secretKey,
194 'Authorization' => "AWS $accessKey:$sig",
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/
H A DASN1.php38 * @param string $sig
41 public static function load($sig) argument
43 if (!is_string($sig)) {
47 $decoded = Encoder::decodeBER($sig);
H A DSSH2.php36 * @param string $sig
39 public static function load($sig) argument
41 if (!is_string($sig)) {
45 $result = Strings::unpackSSH2('ss', $sig);
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWT.php121 $sig = static::urlsafeB64Decode($cryptob64);
138 $sig = self::signatureToDER($sig);
140 if (!self::verify("$headb64.$bodyb64", $sig, $key->getKeyMaterial(), $header->alg)) {
510 * @param string $sig The ECDSA signature to convert
513 private static function signatureToDER(string $sig): string argument
516 $length = max(1, (int) (\strlen($sig) / 2));
517 list($r, $s) = \str_split($sig, $length > 0 ? $length : 1);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPublicKey.php51 $sig = $format != 'ASN1' ? ASN1Signature::save($r, $s) : $signature;
53 … $result = openssl_verify($message, $sig, $this->toString('PKCS8'), $this->hash->getHash());
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/
H A DEnvelopeSignature.php29 public $sig; variable in Google\\Service\\OnDemandScanning\\EnvelopeSignature
48 public function setSig($sig) argument
50 $this->sig = $sig;
57 return $this->sig;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DGrafeasV1beta1IntotoSignature.php23 public $sig; variable in Google\\Service\\ContainerAnalysis\\GrafeasV1beta1IntotoSignature
33 public function setSig($sig) argument
35 $this->sig = $sig;
39 return $this->sig;
H A DEnvelopeSignature.php29 public $sig; variable in Google\\Service\\ContainerAnalysis\\EnvelopeSignature
48 public function setSig($sig) argument
50 $this->sig = $sig;
57 return $this->sig;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Signature/
H A DRaw.php35 * @param array $sig
38 public static function load($sig) argument
41 case !is_array($sig):
42 case !isset($sig['r']) || !isset($sig['s']):
43 case !$sig['r'] instanceof BigInteger:
44 case !$sig['s'] instanceof BigInteger:
49 'r' => $sig['r'],
50 's' => $sig['s']
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/
H A DASN1.php38 * @param string $sig
41 public static function load($sig) argument
43 if (!is_string($sig)) {
47 $decoded = Encoder::decodeBER($sig);
H A DSSH2.php36 * @param string $sig
39 public static function load($sig) argument
41 if (!is_string($sig)) {
45 $result = Strings::unpackSSH2('ss', $sig);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/
H A DPublicKey.php126 $sig = $format != 'ASN1' ? ASN1Signature::save($r, $s) : $signature;
128 …$result = openssl_verify($message, $sig, $this->toString('PKCS8', ['namedCurve' => false]), $this-…
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dhttpclient-4.5.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/diagramsnet/lib/resources/
H A Ddia_sv.txt869 confSrvTakeTooLong=Servern {1} tar för lång tid på sig att svara
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D12.12.js.map1 …n 'merge',\n 'merge-with',\n 'meta',\n 'method-sig',\n 'methods…
H A D19.19.js.map1 …eturn',\n 'static',\n 'sealed',\n 'struct',\n 'sig',\n 'then',\…
/plugin/abc2/
H A Dall.css46 .keyWhite{stroke:gray;fill:#EEE}.keyBlack{stroke:gray;fill:black}.keySelected{stroke:gray;fill:#507fff}.keySelected.sensible{stroke:gray;fill:red}.keySelected.fourth{stroke:gray;fill:orange}.keySelected.highlight{stroke:gray;fill:green}.keySelected.optional{stroke:gray;fill:lightgray}.harmonic-sequence{display:none}br.chord-sequence{clear:both;height:0;font-size:0;line-height:0;margin:0;padding:0}.chord-sequence{margin:5px;display:inline-block;vertical-align:top}.mn-exp{font-size:70%;vertical-align:text-top}.mn-sub{font-size:60%;vertical-align:middle;line-height:1em}.mn-sus{font-size:60%;vertical-align:text-bottom;line-height:80%}.mn-add{font-size:60%;vertical-align:text-top;line-height:1em}span.xl{font-size:.6em}.mn-over{position:relative}.mn-over span{position:absolute;top:-0.5em;left:1px;font-size:.8em}.inversion-sup{position:absolute;font-size:60%;vertical-align:text-top;line-height:1em}.inversion-sub{position:absolute;font-size:60%;vertical-align:text-bottom;line-height:2.6em}ol.hs-item{display:table;float:left;border-collapse:collapse;border:1px solid black;list-style-type:none;margin:0}.hs-item li{display:table-cell;min-width:60px;text-align:center;font-weight:bold;color:white}.hs-item li.hs-chord,.hs-item li.hs-signature{display:table-header-group;color:black;border-bottom:1px dashed gray}.hs-item li.hs-degree{display:table-header-group;color:black}.hs-item li.sus-add{font-size:60%;vertical-align:text-top;position:relative;left:-24px}.hs-item ul.ul-sus-add{display:inline-table;list-style-type:none;vertical-align:top;margin-left:3px}.hs-item li.li-sus-add{display:table-header-group;font-size:60%;color:black;line-height:90%}.hs-item li.hs-function.T{background-color:#3f3f3f}.hs-item li.hs-function.Ts{background-color:#3f3f3f;color:red}.hs-item li.hs-function.t{background-color:#bfbfbf}.hs-item li.hs-function.ts{background-color:#bfbfbf;color:red}.hs-item li.hs-function.D{background-color:#f00}.hs-item li.hs-function.Dst{background-color:#f00;color:black}.hs-item li.hs-function.d{background-color:brown}.hs-item li.hs-function.dst{background-color:brown;color:black}.hs-item li.hs-function.D2{background-color:#92d050}.hs-item li.hs-function.D2st{background-color:#92d050;color:black}.hs-item li.hs-function.SD{background-color:#0070c0}.hs-item li.hs-function.SD2{background-color:#3fa4f0}.hs-item li.hs-function.UNK{background-color:orange}.hs-item li.hs-function.T:before,.hs-item li.hs-function.Ts:before,.hs-item li.hs-function.t:before,.hs-item li.hs-function.ts:before{content:"T"}.hs-item li.hs-function.d:before,.hs-item li.hs-function.dst:before,.hs-item li.hs-function.D:before,.hs-item li.hs-function.Dst:before{content:"D"}.hs-item li.hs-function.D2:before,.hs-item li.hs-function.D2st:before{content:"D²"}.hs-item li.hs-function.SD:before{content:"SD"}.hs-item li.hs-function.SD2:before{content:"SD²"}.hs-item li.hs-function.UNK:before{content:"?"}.hs-function div{min-width:60px;color:white;font-weight:bold;text-align:center}.hs-function div.T{background-color:#3f3f3f}.hs-function div.Ts{background-color:#3f3f3f;color:red}.hs-function div.t{background-color:#bfbfbf}.hs-function div.ts{background-color:#bfbfbf;color:red}.hs-function div.D{background-color:#f00}.hs-function div.Dst{background-color:#f00;color:black}.hs-function div.d{background-color:brown}.hs-function div.dst{background-color:brown;color:black}.hs-function div.D2{background-color:#92d050}.hs-function div.D2st{background-color:#92d050;color:black}.hs-function div.SD{background-color:#0070c0}.hs-function div.SD2{background-color:#3fa4f0}.hs-function div.UNK{background-color:yellow}.hs-function div.T:before,.hs-function div.Ts:before,.hs-function div.t:before,.hs-function div.ts:before{content:"T"}.hs-function div.d:before,.hs-function div.dst:before,.hs-function div.D:before,.hs-function div.Dst:before{content:"D"}.hs-function div.D2:before,.hs-function div.D2st:before{content:"D²"}.hs-function div.SD:before{content:"SD"}.hs-function div.SD2:before{content:"SD²"}.hs-function div.UNK:before{content:"?"}.sig-major{background-color:#dfd;font-weight:bold}.sig-major6{background-color:#afa;font-weight:bold}.sig-majorM7{background-color:#008040;font-weight:bold}.sig-major7{background-color:#f2dede;font-weight:bold}.sig-augmented{background-color:#8c8;font-weight:bold}.sig-augmentedM7{background-color:#aca;font-weight:bold}.sig-minor{background-color:#ffb;font-weight:bold}.sig-minor6{background-color:#ff9;font-weight:bold}.sig-minor7{background-color:#ffd;font-weight:bold}.sig
[all...]
/plugin/abc2/abc-libraries/abc-ui/
H A Dmusic.min.css7 .keyWhite{stroke:gray;fill:#EEE}.keyBlack{stroke:gray;fill:black}.keySelected{stroke:gray;fill:#507fff}.keySelected.sensible{stroke:gray;fill:red}.keySelected.fourth{stroke:gray;fill:orange}.keySelected.highlight{stroke:gray;fill:green}.keySelected.optional{stroke:gray;fill:lightgray}.harmonic-sequence{display:none}br.chord-sequence{clear:both;height:0;font-size:0;line-height:0;margin:0;padding:0}.chord-sequence{margin:5px;display:inline-block;vertical-align:top}.mn-exp{font-size:70%;vertical-align:text-top}.mn-sub{font-size:60%;vertical-align:middle;line-height:1em}.mn-sus{font-size:60%;vertical-align:text-bottom;line-height:80%}.mn-add{font-size:60%;vertical-align:text-top;line-height:1em}span.xl{font-size:.6em}.mn-over{position:relative}.mn-over span{position:absolute;top:-0.5em;left:1px;font-size:.8em}.inversion-sup{position:absolute;font-size:60%;vertical-align:text-top;line-height:1em}.inversion-sub{position:absolute;font-size:60%;vertical-align:text-bottom;line-height:2.6em}ol.hs-item{display:table;float:left;border-collapse:collapse;border:1px solid black;list-style-type:none;margin:0}.hs-item li{display:table-cell;min-width:60px;text-align:center;font-weight:bold;color:white}.hs-item li.hs-chord,.hs-item li.hs-signature{display:table-header-group;color:black;border-bottom:1px dashed gray}.hs-item li.hs-degree{display:table-header-group;color:black}.hs-item li.sus-add{font-size:60%;vertical-align:text-top;position:relative;left:-24px}.hs-item ul.ul-sus-add{display:inline-table;list-style-type:none;vertical-align:top;margin-left:3px}.hs-item li.li-sus-add{display:table-header-group;font-size:60%;color:black;line-height:90%}.hs-item li.hs-function.T{background-color:#3f3f3f}.hs-item li.hs-function.Ts{background-color:#3f3f3f;color:red}.hs-item li.hs-function.t{background-color:#bfbfbf}.hs-item li.hs-function.ts{background-color:#bfbfbf;color:red}.hs-item li.hs-function.D{background-color:#f00}.hs-item li.hs-function.Dst{background-color:#f00;color:black}.hs-item li.hs-function.d{background-color:brown}.hs-item li.hs-function.dst{background-color:brown;color:black}.hs-item li.hs-function.D2{background-color:#92d050}.hs-item li.hs-function.D2st{background-color:#92d050;color:black}.hs-item li.hs-function.SD{background-color:#0070c0}.hs-item li.hs-function.SD2{background-color:#3fa4f0}.hs-item li.hs-function.UNK{background-color:orange}.hs-item li.hs-function.T:before,.hs-item li.hs-function.Ts:before,.hs-item li.hs-function.t:before,.hs-item li.hs-function.ts:before{content:"T"}.hs-item li.hs-function.d:before,.hs-item li.hs-function.dst:before,.hs-item li.hs-function.D:before,.hs-item li.hs-function.Dst:before{content:"D"}.hs-item li.hs-function.D2:before,.hs-item li.hs-function.D2st:before{content:"D²"}.hs-item li.hs-function.SD:before{content:"SD"}.hs-item li.hs-function.SD2:before{content:"SD²"}.hs-item li.hs-function.UNK:before{content:"?"}.hs-function div{min-width:60px;color:white;font-weight:bold;text-align:center}.hs-function div.T{background-color:#3f3f3f}.hs-function div.Ts{background-color:#3f3f3f;color:red}.hs-function div.t{background-color:#bfbfbf}.hs-function div.ts{background-color:#bfbfbf;color:red}.hs-function div.D{background-color:#f00}.hs-function div.Dst{background-color:#f00;color:black}.hs-function div.d{background-color:brown}.hs-function div.dst{background-color:brown;color:black}.hs-function div.D2{background-color:#92d050}.hs-function div.D2st{background-color:#92d050;color:black}.hs-function div.SD{background-color:#0070c0}.hs-function div.SD2{background-color:#3fa4f0}.hs-function div.UNK{background-color:yellow}.hs-function div.T:before,.hs-function div.Ts:before,.hs-function div.t:before,.hs-function div.ts:before{content:"T"}.hs-function div.d:before,.hs-function div.dst:before,.hs-function div.D:before,.hs-function div.Dst:before{content:"D"}.hs-function div.D2:before,.hs-function div.D2st:before{content:"D²"}.hs-function div.SD:before{content:"SD"}.hs-function div.SD2:before{content:"SD²"}.hs-function div.UNK:before{content:"?"}.sig-major{background-color:#dfd;font-weight:bold}.sig-major6{background-color:#afa;font-weight:bold}.sig-majorM7{background-color:#008040;font-weight:bold}.sig-major7{background-color:#f2dede;font-weight:bold}.sig-augmented{background-color:#8c8;font-weight:bold}.sig-augmentedM7{background-color:#aca;font-weight:bold}.sig-minor{background-color:#ffb;font-weight:bold}.sig-minor6{background-color:#ff9;font-weight:bold}.sig-minor7{background-color:#ffd;font-weight:bold}.sig
[all...]

12