Home
last modified time | relevance | path

Searched refs:algo (Results 1 – 20 of 20) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPKCS8.php100 * @param string $algo
111 * @param string $algo
133 * @param string $algo
145 * @param string $algo
149 $algo = preg_match('#^pbeWith(?:MD2|MD5|SHA1|SHA)And(.*?)-CBC$#', $algo, $matches) ?
153 switch ($algo) {
195 * @param string $algo
211 * @param string $algo
215 switch ($algo) {
233 * @param string $algo
[all …]
H A DPKCS1.php49 * @param string $algo
51 public static function setEncryptionAlgorithm($algo) argument
53 self::$defaultEncryptionAlgorithm = $algo;
81 * @param string $algo
85 private static function getEncryptionObject($algo) argument
89 case preg_match("#^AES-(128|192|256)-$modes$#", $algo, $matches):
93 case preg_match("#^DES-EDE3-$modes$#", $algo, $matches):
95 case preg_match("#^DES-$modes$#", $algo, $matches):
98 throw new UnsupportedAlgorithmException($algo . ' is not a supported algorithm');
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DUtils.php125 * @param string $algo Hash algorithm (e.g. md5, crc32, etc)
133 $algo, argument
142 $ctx = hash_init($algo);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php106 private $algo; variable in phpseclib3\\Crypt\\Hash
281 $this->computedKey = is_array($this->algo) ?
282 call_user_func($this->algo, $this->key) :
283 hash($this->algo, $this->key, true);
315 $this->algo = 'umac';
456 $this->algo = $hash;
802 $algo = $this->algo;
803 if ($algo == 'umac') {
855 if (is_array($algo)) {
874 hash_hmac($algo, $text, $this->computedKey, true) :
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A Dfunctions.php227 * @param string $algo Hash algorithm (e.g. md5, crc32, etc)
236 function hash(StreamInterface $stream, $algo, $rawOutput = false) argument
238 return Utils::hash($stream, $algo, $rawOutput);
H A DUtils.php120 * @param string $algo Hash algorithm (e.g. md5, crc32, etc)
127 public static function hash(StreamInterface $stream, $algo, $rawOutput = false) argument
135 $ctx = hash_init($algo);
/plugin/userhomepage/lang/es/
H A Duserhomepage_public.default10 Ahora, ¡escriba algo! :-D
H A Duserhomepage_private.default10 Ahora, ¡escriba algo! :-D
H A Duserhomepage_publicspace.default12 Ahora, ¡escriba algo! :-D
/plugin/authdrupal8/
H A Dpassword.inc130 * @param $algo
142 function _password_crypt($algo, $password, $setting) {
173 $hash = hash($algo, $salt . $password, TRUE);
175 $hash = hash($algo, $hash . $password, TRUE);
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php364 $algo = OPENSSL_ALGO_SHA1;
366 $algo = $this->cryptParams['digest'];
368 if (! openssl_sign ($data, $signature, $this->key, $algo)) {
369 throw new Exception('Failure Signing Data: ' . openssl_error_string() . ' - ' . $algo);
375 $algo = OPENSSL_ALGO_SHA1;
377 $algo = $this->cryptParams['digest'];
379 return openssl_verify ($data, $signature, $this->key, $algo);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DMSBLOB.php126 switch ($algo) {
/plugin/issuelinks/services/
H A DGitHub.service.php332 list($algo, $signature_github) = explode('=', $INPUT->server->str('HTTP_X_HUB_SIGNATURE'));
337 $signature_local = hash_hmac($algo, $body, $secret['secret']);
/plugin/diagramsnet/lib/js/cryptojs/
H A Daes.min.js13 e)).finalize(b)}}});var n=d.algo={};return d}(Math);
16 …(b<<j|b>>>32-j)+n}for(var t=CryptoJS,r=t.lib,w=r.WordArray,v=r.Hasher,r=t.algo,b=[],x=0;64>x;x++)b…
22 (function(){var u=CryptoJS,p=u.lib,d=p.Base,l=p.WordArray,p=u.algo,s=p.EvpKDF=d.extend({cfg:d.exten…
24 ….lib,l=d.Base,s=d.WordArray,t=d.BufferedBlockAlgorithm,r=p.enc.Base64,w=p.algo.EvpKDF,v=d.Cipher=t…
32 (function(){for(var u=CryptoJS,p=u.lib.BlockCipher,d=u.algo,l=[],s=[],t=[],r=[],w=[],v=[],b=[],x=[]…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2668 $algo = self::array_intersect_first($algos, $this->server_host_key_algorithms);
2669 switch ($algo) {
4804 foreach ($algos as $algo) {
4805 $obj = self::encryption_algorithm_to_crypt_instance($algo);
4807 $obj->setKeyLength(preg_replace('#[^\d]#', '', $algo));
4809 switch ($algo) {
4825 $algos = array_diff($algos, [$algo]);
4826 $ciphers[] = $algo;
/plugin/jmol2/jmol/
H A DLEAME.txt68 cargar� algo m�s lentamente que las versiones subdivididas, puesto
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md440 `public static function hash(StreamInterface $stream, string $algo, bool $rawOutput = false): strin…
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js38450 function dsaSign(hash, priv, algo) {
38459 var kv = getKey(x, q, hash, algo);
38462 k = makeKey(q, kv, algo);
38487 function getKey(x, q, hash, algo) {
38530 function makeKey(q, kv, algo) {
70220 var algo = aesid[data.algorithm.decrypt.cipher.algo.join('.')];
70267 function checkNative(algo) {
70276 if (checks[algo] !== undefined) {
70277 return checks[algo];
70286 checks[algo] = prom;
[all …]
/plugin/datatables/assets/pdfmake/build/
H A Dpdfmake.min.js
/plugin/diagramsnet/lib/js/
H A Dapp.min.js110 e)).finalize(b)}}});var n=d.algo={};return d}(Math);
113 …(b<<j|b>>>32-j)+n}for(var t=CryptoJS,r=t.lib,w=r.WordArray,v=r.Hasher,r=t.algo,b=[],x=0;64>x;x++)b…
119 (function(){var u=CryptoJS,p=u.lib,d=p.Base,l=p.WordArray,p=u.algo,s=p.EvpKDF=d.extend({cfg:d.exten…
121 ….lib,l=d.Base,s=d.WordArray,t=d.BufferedBlockAlgorithm,r=p.enc.Base64,w=p.algo.EvpKDF,v=d.Cipher=t…
129 (function(){for(var u=CryptoJS,p=u.lib.BlockCipher,d=u.algo,l=[],s=[],t=[],r=[],w=[],v=[],b=[],x=[]…