Home
last modified time | relevance | path

Searched refs:blocksize (Results 1 – 9 of 9) sorted by relevance

/plugin/webdav/vendor/sabre/http/lib/Auth/
DAWS.php222 $blocksize = 64;
223 if (strlen($key) > $blocksize) {
226 $key = str_pad($key, $blocksize, chr(0x00));
227 $ipad = str_repeat(chr(0x36), $blocksize);
228 $opad = str_repeat(chr(0x5c), $blocksize);
/plugin/davcal/vendor/sabre/http/lib/Auth/
H A DAWS.php222 $blocksize = 64;
223 if (strlen($key) > $blocksize) {
226 $key = str_pad($key, $blocksize, chr(0x00));
227 $ipad = str_repeat(chr(0x36), $blocksize);
228 $opad = str_repeat(chr(0x5c), $blocksize);
/plugin/davcal/vendor/sabre/http/tests/HTTP/Auth/
H A DAWSTest.php226 $blocksize = 64;
227 if (strlen($key) > $blocksize)
229 $key = str_pad($key, $blocksize, chr(0x00));
230 $ipad = str_repeat(chr(0x36), $blocksize);
231 $opad = str_repeat(chr(0x5c), $blocksize);
/plugin/photogallery/phpThumb/
Dphpthumb.class.php3831 $blocksize = 8192;
3832 $blockreads = ceil($filesize / $blocksize);
3834 $rawimagedata .= fread($fp, $blocksize);
/plugin/codemirror/dist/modes/
Dsas.min.js.map1 …awsdef awsmenu awsmenumerge awstitle backward band base betainv between blocksize blshift bnot bor…
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
Dfabric.js18347 this.blocksize = options.blocksize || 4;
18362 for (i = 0; i < iLen; i += this.blocksize) {
18363 for (j = 0; j < jLen; j += this.blocksize) {
18382 for (var _i = i, _ilen = i + this.blocksize; _i < _ilen; _i++) {
18383 for (var _j = j, _jlen = j + this.blocksize; _j < _jlen; _j++) {
18403 blocksize: this.blocksize property
Dfabric.min.js11blocksize=options.blocksize||4},applyTo:function(canvasEl){var context=canvasEl.getContext("2d"),i… property
/plugin/diagramsnet/lib/WEB-INF/lib/
Dcommons-codec-1.10.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/plugin/xlsx2dw/packages/exceljs/
Dexceljs.js43804 var blocksize = alg === 'sha512' || alg === 'sha384' ? 128 : 64;
43808 if (key.length > blocksize) {
43811 } else if (key.length < blocksize) {
43812 key = Buffer.concat([key, ZEROS], blocksize);
43815 var ipad = this._ipad = Buffer.allocUnsafe(blocksize);
43816 var opad = this._opad = Buffer.allocUnsafe(blocksize);
43818 for (var i = 0; i < blocksize; i++) {
43865 var blocksize = 64;
43877 if (key.length > blocksize) {
43879 } else if (key.length < blocksize) {
[all …]