Daniel Marschall

Results 47 issues of Daniel Marschall

The following method does not work: ``` procedure TFormMain.Button2Click(Sender: TObject); var Cipher: TDECCipher; s: RawByteString; begin Cipher := TCipher_Null.Create; Cipher.Init('', '', $FF); Cipher.Mode := cmECBx; s := Cipher.EncodeRawByteString('Hello'); memo1.Lines.Add(s); Cipher.Done;...

(as previously mentioned in https://github.com/MHumm/DelphiEncryptionCompendium/issues/62 ) I am using Delphi 11, have compiled DEC60.exe to compile the DCU files and then immediately compiled and ran DECUnitTestSuite.exe There are the following...

bug

There can be ciphers which do not allow a key and are not NULL ciphers. For example, "ROT13". Therefore, the Exception sNoKeyMaterialGiven must not be thrown if Context.KeySize = 0....

This PR contains 2 fixes: 1. It fixes a bug that was cause because an uninitialized variable `LastByteLen` instead of the argument `LastByteLength` was used. 2. I have reverted to...

TinyMCE contains the following JavaScript: ``` ... const hasImage = dataTransfer => exists(dataTransfer.files, file => /^image\//.test(file.type)); const needsCustomInternalDrop = (dom, schema, target, dropContent) => { ... ``` `//.test(file.type));` seems to...

PHP 8.4 has deprecated implicitly nullable types. This PR fixes the issue. Tested with PHP 8.4 alpha 4. https://wiki.php.net/rfc/deprecate-implicitly-nullable-types

I was using the WidescreenPack for GTA2 with ddraw.dll version 31.12.2018 . It worked fine. Now I have updated to ddraw.dll version 16.05.2020 , and the game crashes (the ASI...

I noticed that I can't build sha256.c and sha256.h in Windows, because `WORD` is redefined with different data types. There is no 32-bit `WORD`. A `WORD` is always 16-bit, and...