I found an editor, Notepad + +, which has the ability to encrypt the
content of the file you are working. Can you tell me if you feel
reliable as the encryption system?
Open source...pear review...C++...Green Mission...
RECOMMENDED...
THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong. https://groups.google.com/group/alt....6f94c317a526bd https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.
On Jan 21, 9:07*am, DasFox <das...@hushmail.com> wrote:
> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
> > I found an editor, Notepad + +, which has the ability to encrypt the
> > content of the file you are working. Can you tell me if you feel
> > reliable as the encryption system?
>
> >http://notepad-plus-plus.org/
>
> >http://sourceforge.net/projects/npp-...ePad/SecurePad...
>
> Deduce it using Tech as your guide...
>
> Open source...pear review...C++...Green Mission...
>
> RECOMMENDED...
Question: Do you dictate your USENET posts over shortwave?
DasFox wrote:
> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>
>> I found an editor, Notepad + +, which has the ability to encrypt the
>> content of the file you are working. Can you tell me if you feel
>> reliable as the encryption system?
>>
>> http://notepad-plus-plus.org/
>>
>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip
>
> Deduce it using Tech as your guide...
>
> Open source...pear review...C++...Green Mission...
>
> RECOMMENDED...
You didn't really look at the code, did you?
I just went for a quick look to see if the code at least made sure the
memory used to hold the key was erased after encryption, but what I
found was much, much worse.
The "encryption" function consists of:
> // TODO: Make this more advanced/secure
> void strcrypt2(char *str, char *pwd)
> {
> long strl = (long)strlen(str);
> long pwdl = (long)strlen(pwd);
>
> for(long i = 0; i < strl; i++)
> {
> char c = str[i] ^ pwd[i % pwdl];
>
> if(c != 0)
> str[i] = c;
> }
> }
i.e., it is the worst N-time pad I've ever seen.
The password can probably be recovered "by hand" by just looking at the
pattern to figure the password length and then looking at the
"unconverted" characters that are the same as the password at that
position. Breaking this with a computer is not even funny.
>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...
>
> You didn't really look at the code, did you?
>
> I just went for a quick look to see if the code at least made sure the
> memory used to hold the key was erased after encryption, but what I
> found was much, much worse.
>
Thanks
know an open source editor for Windows that
has the ability to encrypt text and files?
On Fri, 21 Jan 2011 06:30:27 -0800 (PST), Tom St Denis wrote:
> On Jan 21, 9:07*am, DasFox <das...@hushmail.com> wrote:
>> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>>> I found an editor, Notepad + +, which has the ability to encrypt the
>>> content of the file you are working. Can you tell me if you feel
>>> reliable as the encryption system?
>>
>>>http://notepad-plus-plus.org/
>>
>>>http://sourceforge.net/projects/npp-...ePad/SecurePad...
>>
>> Deduce it using Tech as your guide...
>>
>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...
>
> Question: Do you dictate your USENET posts over shortwave?
>
> Tom
NO...but I am playing with DragonSlayer...
THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong. https://groups.google.com/group/alt....6f94c317a526bd https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.
On Fri, 21 Jan 2011 14:45:13 +0000, Paulo Marques wrote:
> DasFox wrote:
>> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>>
>>> I found an editor, Notepad + +, which has the ability to encrypt the
>>> content of the file you are working. Can you tell me if you feel
>>> reliable as the encryption system?
>>>
>>> http://notepad-plus-plus.org/
>>>
>>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip
>>
>> Deduce it using Tech as your guide...
>>
>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...
>
> You didn't really look at the code, did you?
>
> I just went for a quick look to see if the code at least made sure the
> memory used to hold the key was erased after encryption, but what I
> found was much, much worse.
>
> The "encryption" function consists of:
>
>> // TODO: Make this more advanced/secure
>> void strcrypt2(char *str, char *pwd)
>> {
>> long strl = (long)strlen(str);
>> long pwdl = (long)strlen(pwd);
>>
>> for(long i = 0; i < strl; i++)
>> {
>> char c = str[i] ^ pwd[i % pwdl];
>>
>> if(c != 0)
>> str[i] = c;
>> }
>> }
>
> i.e., it is the worst N-time pad I've ever seen.
>
> The password can probably be recovered "by hand" by just looking at the
> pattern to figure the password length and then looking at the
> "unconverted" characters that are the same as the password at that
> position. Breaking this with a computer is not even funny.
OK...THIS is the reason I RECOMMENDED...read my post again..
Open Source which can be pear reviewed...
You reviewed it...now we know...
THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong. https://groups.google.com/group/alt....6f94c317a526bd https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.
> know an open source editor for Windows that has the ability to encrypt
> text and files?
Might be overkill, but it's a fine, time tested editor with strong native
encryption (blowfish), and there's both graphical and console versions
available for various operating systems even though it's more of a geeky
unix editor...
There's also a more "windowish" feeling (non-modal) version of Vim called
Cream. It handles encryption using several methods, including calling
GnuPG to do the dirty work. :)
On Fri, 21 Jan 2011 18:04:44 +0000 (UTC), Greg Rose wrote:
> In article <ihc3v3$lmk$1@news.mixmin.net>, DasFox <dasfox@hushmail.com> wrote:
>>[snip]...pear review...[snip]
>
> I like Bartlett pears myself.
>
> Greg.
That's the fruit...NOT equals reviewing equals...
THANKS
--
These are dark times, there is no denying. Our Tech world has perhaps
faced no greater threat than it does today. But I say this to my
citizenry: I, ever your servant, will continue to defend your liberty
and repel the forces that seek to take it from you! I remain, strong. https://groups.google.com/group/alt....6f94c317a526bd https://www.icmag.com/ic/showpost.ph...9&postcount=25
Anybody with an internet connection, 5 grand, an iq above room
temperature and basic literacy can grow outstanding cannabis.
On 01/21/2011 03:45 PM, Paulo Marques wrote:
> DasFox wrote:
>> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>>
>>> I found an editor, Notepad + +, which has the ability to encrypt the
>>> content of the file you are working. Can you tell me if you feel
>>> reliable as the encryption system?
>>>
>>> http://notepad-plus-plus.org/
>>>
>>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip
>>
>> Deduce it using Tech as your guide...
>>
>> Open source...pear review...C++...Green Mission...
>>
>> RECOMMENDED...
>
> You didn't really look at the code, did you?
>
> I just went for a quick look to see if the code at least made sure the
> memory used to hold the key was erased after encryption, but what I
> found was much, much worse.
>
> The "encryption" function consists of:
>
>> // TODO: Make this more advanced/secure
>> void strcrypt2(char *str, char *pwd)
>> {
>> long strl = (long)strlen(str);
>> long pwdl = (long)strlen(pwd);
>>
>> for(long i = 0; i < strl; i++)
>> {
>> char c = str[i] ^ pwd[i % pwdl];
>>
>> if(c != 0)
>> str[i] = c;
>> }
>> }
>
> i.e., it is the worst N-time pad I've ever seen.
>
> The password can probably be recovered "by hand" by just looking at the
> pattern to figure the password length and then looking at the
> "unconverted" characters that are the same as the password at that
> position. Breaking this with a computer is not even funny.
Hm, Ok.
I didn't review the editor nor the source code.
If I could make something easy using instant GPG encryption/decryption,
would there be any interest? (since there are so many alternatives)
Just someone who's interested.
--
GPG_Decrypt:
Write('Password: '); ReadLn(USERINPUT);
if (USERINPUT=empty) then goto CleanUp;
Tmp := Format('--no-options --no-default-keyring --dry-run
--passphrase "%s" "%s"', [USERINPUT, FullFilePath(5)]);
ShellExecute(MainWnd, 'open', PChar(FullFilePath(4)), PChar(Tmp), nil,
SW_HIDE);
Sleep(1000);
if not FileExists(FullFilePath(6)) then goto GPG_Decrypt;
On 22/01/2011 12:07 AM, DasFox wrote:
> On Fri, 21 Jan 2011 14:52:31 +0100, pahm wrote:
>
>> I found an editor, Notepad + +, which has the ability to encrypt the
>> content of the file you are working. Can you tell me if you feel
>> reliable as the encryption system?
>>
>> http://notepad-plus-plus.org/
>>
>> http://sourceforge.net/projects/npp-...d.v1.0.bin.zip
>
> Deduce it using Tech as your guide...
>
> Open source...pear review...C++...Green Mission...
>
> RECOMMENDED...
>
> THANKS
since virtually no one from sci.crypt is interested in these posts can
you drop them (sci.crypt) from your "send to" list