473,387 Members | 1,530 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Encryption for a log and Unicode Characters...? Yikes!

Hello everyone... This may sound really stupid, but it is something I have
been working on all day and haven't found a solution yet.

If you go into Notepad and try the keystroke ALT+4, you get a nice little
diamond. Infact, you can do this all the way up to 127 showing different
characters including those similar with the ASCII table for letters and
numbers.

"Oh," I thought, "this could be the simple way for very simple encoding of
our log files." We are looking for an efficient way of encoding log files in
real time. Doing simple subtractions and additions on the character value to
offset them would be confusing for most novices to figure out upon
inspections of the log file (we are not looking for anything ultra secure
here).

But when I run my program and it starts logging the file, I get nice little
boxes instead of the images. Even in debug mode those characters (var =
"☺";) will turn to boxes as well before even going out to the file.

I tried using the System.Text.Encoding stuff, but I get confused while
working with it.... perhaps this is not the correct thing to use.

Does anyone know how I can preserve those characters and put them to a log
file? Or is there a simpler way to encode my log file in real time? (
Rijndael and
TripleDES algs make our log files way to large).

Thank you all for reading this.
Dec 14 '05 #1
10 1377
If you just want something simple, it is easy to typecast characters to
integers and visa versa. You could use an algorithm like ROT13
(http://www.wikipedia.org/wiki/ROT13). If you want to use an algorithm
like that, character '0' is decimal 48, and 'z' is 122.

Loop through each character and get the integer, then add a value to
it, and convert back to a character.

int dec = (int)currentChar;
dec += 15;
if (dec > 122) dec -= 75;
newString += (char)dec;

That should confuse the "novices."

Dec 14 '05 #2
Hello KH,

Thank you for replying.

We are looking for a simple way to "encrypt" text to a log file in real time
that has very low overhead for the processor, yet still keeping the log files
the same size.

We decided that a simple distortion of the ASCII values would suffice
according to an offset, like in the code below:

buildString += (char)(charString[i] - (31 - (key2)));

// ex, could be: buildString += (char)(charString[i] - 25);
// so a lower case g (103 on ASCII table) would print as a capital N (78 on
ASCII Table)

This is located in a while loop performing this on every character. I
though that I could shift as low as 31 downwards nd still be safe since
notepad shows symbols for ALT+1 and so on.

This is sort of like a kids decoder ring saying that an A really is a L and
so forth, except key2 is randomized each time so it is harder for the person
reading the log line-by-line to translate and read.

This would cause our log files to be the same size since it is just a 1-to-1
character substitution.

Not very secure, but it will deture the bulk of the people from reading our
logs like they have in the past.

However, I did find this article from The Code Project in light of you
suggested. ...

http://www.codeproject.com/csharp/Base64EncDec.asp

It almost appears this method will cause our logs to grow by about 30%...so
I will have to check on that. I don't know how much overhead this is for the
processor either so I will have to bench mark it.

Thanks,

Rob K

"KH" wrote:
What exactly are you trying to do? I think you're confusing encoding and
encrypting.

Assuming you're writing text to your log file, it is already encoded in one
of many many many text encodings (like us-ascii, Windows-1252, UTF-32,
iso-8859-13, big5, ...)

As a guess you may want to look up Base 64 encoding - it may accomplish what
you want.
"RobKinney1" wrote:
Hello everyone... This may sound really stupid, but it is something I have
been working on all day and haven't found a solution yet.

If you go into Notepad and try the keystroke ALT+4, you get a nice little
diamond. Infact, you can do this all the way up to 127 showing different
characters including those similar with the ASCII table for letters and
numbers.

"Oh," I thought, "this could be the simple way for very simple encoding of
our log files." We are looking for an efficient way of encoding log files in
real time. Doing simple subtractions and additions on the character value to
offset them would be confusing for most novices to figure out upon
inspections of the log file (we are not looking for anything ultra secure
here).

But when I run my program and it starts logging the file, I get nice little
boxes instead of the images. Even in debug mode those characters (var =
"☺";) will turn to boxes as well before even going out to the file.

I tried using the System.Text.Encoding stuff, but I get confused while
working with it.... perhaps this is not the correct thing to use.

Does anyone know how I can preserve those characters and put them to a log
file? Or is there a simpler way to encode my log file in real time? (
Rijndael and
TripleDES algs make our log files way to large).

Thank you all for reading this.

Dec 14 '05 #3
RobKinney1 wrote:
Hello everyone... This may sound really stupid, but it is something I have
been working on all day and haven't found a solution yet.

If you go into Notepad and try the keystroke ALT+4, you get a nice little
diamond. Infact, you can do this all the way up to 127 showing different
characters including those similar with the ASCII table for letters and
numbers.

"Oh," I thought, "this could be the simple way for very simple encoding of
our log files." We are looking for an efficient way of encoding log files in
real time. Doing simple subtractions and additions on the character value to
offset them would be confusing for most novices to figure out upon
inspections of the log file (we are not looking for anything ultra secure
here).

But when I run my program and it starts logging the file, I get nice little
boxes instead of the images. Even in debug mode those characters (var =
"☺";) will turn to boxes as well before even going out to the file.

I tried using the System.Text.Encoding stuff, but I get confused while
working with it.... perhaps this is not the correct thing to use.

Does anyone know how I can preserve those characters and put them to a log
file? Or is there a simpler way to encode my log file in real time? (
Rijndael and
TripleDES algs make our log files way to large).

Thank you all for reading this.


I don't think shifting the ascii value is a good approach. If you are
looking for something fairly simple, I would just Base64 encode. Its
fairly easy to use and will preserve the value of the bytes.

System.Convert.ToBase64String
System.Convert.FromBase64String
--
Rob Schieber
Dec 14 '05 #4
KH
What exactly are you trying to do? I think you're confusing encoding and
encrypting.

Assuming you're writing text to your log file, it is already encoded in one
of many many many text encodings (like us-ascii, Windows-1252, UTF-32,
iso-8859-13, big5, ...)

As a guess you may want to look up Base 64 encoding - it may accomplish what
you want.
"RobKinney1" wrote:
Hello everyone... This may sound really stupid, but it is something I have
been working on all day and haven't found a solution yet.

If you go into Notepad and try the keystroke ALT+4, you get a nice little
diamond. Infact, you can do this all the way up to 127 showing different
characters including those similar with the ASCII table for letters and
numbers.

"Oh," I thought, "this could be the simple way for very simple encoding of
our log files." We are looking for an efficient way of encoding log files in
real time. Doing simple subtractions and additions on the character value to
offset them would be confusing for most novices to figure out upon
inspections of the log file (we are not looking for anything ultra secure
here).

But when I run my program and it starts logging the file, I get nice little
boxes instead of the images. Even in debug mode those characters (var =
"☺";) will turn to boxes as well before even going out to the file.

I tried using the System.Text.Encoding stuff, but I get confused while
working with it.... perhaps this is not the correct thing to use.

Does anyone know how I can preserve those characters and put them to a log
file? Or is there a simpler way to encode my log file in real time? (
Rijndael and
TripleDES algs make our log files way to large).

Thank you all for reading this.

Dec 14 '05 #5
RobKinney1 <Ro********@discussions.microsoft.com> wrote:
Thank you for replying.

We are looking for a simple way to "encrypt" text to a log file in real time
that has very low overhead for the processor, yet still keeping the log files
the same size.


There are various ways you can do that, but frankly it becomes easier
if you treat the data as binary - encode it (eg using Encoding.UTF8 or
Encoding.Unicode) and then do whatever simple "encryption" you want.
However, that way you will *not* get logs which are viewable in
notepad. Is that really an issue for you? I would have thought you only
wanted log files which, if sent to you, you can decode.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Dec 14 '05 #6
KH
Correct, base 64 will increase your files by about a third from whatever
encoding you're converting from, since it uses 4 bytes to encode 3 bytes.
Here's a good article on how it works:

http://email.about.com/cs/standards/...4_encoding.htm

Also while I'm sure that code example works, there's already base 64
encoding classes in .NET - see Convert.ToBase64String and
Convert.FromBase64String.

You still need to know what text encoding you're going to and from to use it
properly.

"RobKinney1" wrote:
Hello KH,

Thank you for replying.

We are looking for a simple way to "encrypt" text to a log file in real time
that has very low overhead for the processor, yet still keeping the log files
the same size.

We decided that a simple distortion of the ASCII values would suffice
according to an offset, like in the code below:

buildString += (char)(charString[i] - (31 - (key2)));

// ex, could be: buildString += (char)(charString[i] - 25);
// so a lower case g (103 on ASCII table) would print as a capital N (78 on
ASCII Table)

This is located in a while loop performing this on every character. I
though that I could shift as low as 31 downwards nd still be safe since
notepad shows symbols for ALT+1 and so on.

This is sort of like a kids decoder ring saying that an A really is a L and
so forth, except key2 is randomized each time so it is harder for the person
reading the log line-by-line to translate and read.

This would cause our log files to be the same size since it is just a 1-to-1
character substitution.

Not very secure, but it will deture the bulk of the people from reading our
logs like they have in the past.

However, I did find this article from The Code Project in light of you
suggested. ...

http://www.codeproject.com/csharp/Base64EncDec.asp

It almost appears this method will cause our logs to grow by about 30%...so
I will have to check on that. I don't know how much overhead this is for the
processor either so I will have to bench mark it.

Thanks,

Rob K

"KH" wrote:
What exactly are you trying to do? I think you're confusing encoding and
encrypting.

Assuming you're writing text to your log file, it is already encoded in one
of many many many text encodings (like us-ascii, Windows-1252, UTF-32,
iso-8859-13, big5, ...)

As a guess you may want to look up Base 64 encoding - it may accomplish what
you want.
"RobKinney1" wrote:
Hello everyone... This may sound really stupid, but it is something I have
been working on all day and haven't found a solution yet.

If you go into Notepad and try the keystroke ALT+4, you get a nice little
diamond. Infact, you can do this all the way up to 127 showing different
characters including those similar with the ASCII table for letters and
numbers.

"Oh," I thought, "this could be the simple way for very simple encoding of
our log files." We are looking for an efficient way of encoding log files in
real time. Doing simple subtractions and additions on the character value to
offset them would be confusing for most novices to figure out upon
inspections of the log file (we are not looking for anything ultra secure
here).

But when I run my program and it starts logging the file, I get nice little
boxes instead of the images. Even in debug mode those characters (var =
"☺";) will turn to boxes as well before even going out to the file.

I tried using the System.Text.Encoding stuff, but I get confused while
working with it.... perhaps this is not the correct thing to use.

Does anyone know how I can preserve those characters and put them to a log
file? Or is there a simpler way to encode my log file in real time? (
Rijndael and
TripleDES algs make our log files way to large).

Thank you all for reading this.

Dec 15 '05 #7
Do you think that the 64bit encoding is fairly fast with low overhead... I
may consider that....

Thanks,

Rob K

"Rob Schieber" wrote:


I don't think shifting the ascii value is a good approach. If you are
looking for something fairly simple, I would just Base64 encode. Its
fairly easy to use and will preserve the value of the bytes.

System.Convert.ToBase64String
System.Convert.FromBase64String
--
Rob Schieber

Dec 15 '05 #8
Thank you all for your help. I have since found out through peoples
comments, like Jon Skeet's, that notepad does not correctly display some of
the characters
although their ASCII value is really kept.

I think that in the future I may use the 64 bit encryption as suggested by
Rob Schieber.

I think everything is working at the moment, so thank you all for your
input. :-)

Rob K
Dec 15 '05 #9
Hey, nice web page Jon. I think I may book mark it.

Your comment with notepad made me realize that the characters were actually
preserved, just that notepad itself coudn't display them.

Everything seems to be working.

Thanks again for your help.

Rob K

"Jon Skeet [C# MVP]" wrote:
RobKinney1 <Ro********@discussions.microsoft.com> wrote:
Thank you for replying.

We are looking for a simple way to "encrypt" text to a log file in real time
that has very low overhead for the processor, yet still keeping the log files
the same size.


There are various ways you can do that, but frankly it becomes easier
if you treat the data as binary - encode it (eg using Encoding.UTF8 or
Encoding.Unicode) and then do whatever simple "encryption" you want.
However, that way you will *not* get logs which are viewable in
notepad. Is that really an issue for you? I would have thought you only
wanted log files which, if sent to you, you can decode.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Dec 15 '05 #10
RobKinney1 <Ro********@discussions.microsoft.com> wrote:
Thank you all for your help. I have since found out through peoples
comments, like Jon Skeet's, that notepad does not correctly display some of
the characters
although their ASCII value is really kept.

I think that in the future I may use the 64 bit encryption as suggested by
Rob Schieber.

I think everything is working at the moment, so thank you all for your
input. :-)


Just to make it clearer if you need more help later: Rob Schieber
didn't suggest 64 bit encryption; he suggested base64 encoding. They're
somewhat different things :)

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Dec 16 '05 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

48
by: Zenobia | last post by:
Recently I was editing a document in GoLive 6. I like GoLive because it has some nice features such as: * rewrite source code * check syntax * global search & replace (through several files at...
4
by: Basil | last post by:
Hello. I have compiler BC Builder 6.0. I have an example: #include <strstrea.h> int main () { wchar_t ff = {' s','d ', 'f', 'g', 't'};
7
by: Michael Davis | last post by:
Hi, I've known C/C++ for years, but only ever used ascii strings. I have a client who wants to know how gcc handles unicode. I've found the functions utf8_mbtowc, utf8_mbstowcs, utf8_wctomb and...
7
by: c duden | last post by:
I am attempting to encrypt some text and be able to decrypt it at a later time. I have two methods to do this: public static Byte EncryptText(string textToEncrypt, string encryptionHash) {...
11
by: Beeeeeeeeeeeeves | last post by:
Hi I'm looking for some .net example code on encryption: I don't want anything fancy, no complex third party components with sophisticated algorithms, explanations of principle, or "public/private...
14
by: Xarky | last post by:
Hi, I would like to enrypt and decrypt a simple line of text, with a private(symmetric) key. I have tried searching in the System.Cryptography class, but I can't find a simple way of doing this...
3
by: Shahid | last post by:
Hi, I am trying to display the encrypted value on the console. When I use the following UnicodeEncoding encoding = new UnicodeEncoding( ); string constructedString =...
18
by: Ger | last post by:
I have not been able to find a simple, straight forward Unicode to ASCII string conversion function in VB.Net. Is that because such a function does not exists or do I overlook it? I found...
14
by: abhi147 | last post by:
Hi , I want to convert an array of bytes like : {79,104,-37,-66,24,123,30,-26,-99,-8,80,-38,19,14,-127,-3} into Unicode character with ISO-8859-1 standard. Can anyone help me .. how should...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.