Ive been doin alot of research on encryption, so here it is.
QUOTE
Encryption is the translation of data into a secret code. Encryption is the most effective way to achieve data security. To read an encrypted file, you must have access to a secret key or password that enables you to decrypt it. Unencrypted data is called plain text ; encrypted data is referred to as cipher text.
So like for passwords on sites, it is encrypted so when hackers get into the site, they can't get the passes.
Hmm... isn't encryption a little more complicated than that? I dont really know about encryption because I can use readymade certificates from VeriSign etc., but how does encryption work?
Let's take two computer for example (Computer X and Computer Y). Now, I want to send a 'secret' message from X to Y. So, I'll use a 'secret key' to encrypt the file that I'm sending. So I send an encrypted message that Y can't understand without the key. Now, how will I send the key to Y without exposing the secret key to hackers who can then take both pieces of information (secret key and encrypted message) and put it together to reveal the secret? Because, If I send the key via the internet, it is exposed to the same danger as the encrypted message is!
Hope you understand what I'm asking !
NOTE that it would be considered plagiarism to post material from other sites directly onto these forums without placing them in quotes!
Please place the definition of encryption in quotes like these:
QUOTE
Encryption is the translation of data into a secret code. Encryption is the most effective way to achieve data security. To read an encrypted file, you must have access to a secret key or password that enables you to decrypt it. Unencrypted data is called plain text ; encrypted data is referred to as cipher text.
Doing this ensures that you are sticking to forum rules!
Encryption usually involves an encryption "key" that you use to decode the encrypted string. Although it's not encryption, look up MD5 for a good example.
Encryption can be as basic as replacing every 'a' in the plain text by a 'b', every 'b' by 'c' or, easier for computer users, by hitting the key right or left to the original key (I'll give an example for a german notebook keyboard):
(plain) TRAP17 IS GREAT (a->b) USBQ28 JT HSFBU (right) ZTSÜ28 OD HTRSZ --the fourth letter in the last example is a german Umlaut, a special character. It might not be displayed correctly in other regions--
Well, that's encryption for you. It is, however, not secure since the pattern will repeat and thereby it will become easy to crack. Some smart people invented a secure (well, as secure as encryption can be. If you lose the secret key, it's not secure anymore but hey, that's the human factor) encryption method working with a pair of keys, one of them public and one private. Unlike other encryption methods, public key-encryption works better the wider you can spread your public key.
Whoever wants to send you an encrypted message uses your public key to encrypt it - but this message can not be decrypted using your public key. Your private key on the other hand enables you to decrypt it. Using this method, a text (or file) can even be "signed" by you - use your private key to encrypt the text or create the text's signature and it can be decrypted/validated using your public key...
...this method is used in the proprietary PGP("Pretty Good Privacy")-Software and the compatible, free Open- and G-PG("GNU Privacy Guard")-Software and some other software to encrypt your communication.
If your private key-file falls into the wrong hands, however, you should be quick to spread your revokation certificate (a file PGP/OPG/GPG can generate using your private key) so people know for sure that your private key is not private anymore (well, it might still be secure but everything that prevents someone from using your private key to decrypt your communication is a simple passphrase like you can set for e.g. a web service)...
by the way, "TRAP17 IS GREAT" looks like this when encrypting it using GPG and a 4096bit-key (i.e. the one I'm mostly using):
What is encrypion? That is the question that you are asking us to tell you. Let me explain encryption in the easiest way that I can. Dictionary.com explains encryption in a scientific, yet simple way to get the point across. It says simply this:
QUOTE
en·crypt Audio pronunciation of "encryption" ( P ) Pronunciation Key (n-krpt) tr.v. en·crypt·ed, en·crypt·ing, en·crypts
1. To put into code or cipher. 2. Computer Science. To alter (a file, for example) using a secret code so as to be unintelligible to unauthorized parties.
It should be noted that there is a difference between two-way encryption(reversable) and one-way encryption (hashing).
For most password checking and such where the original message is unimportant but you need a way to check that the person has the correct data. you could use such one-way hashing such as md5 which outputs a string of hex digits(I think 40 characters?). the original message cannot be reconstituted from the hash but everytime you has a certain string it will begit the same hash. you can therefore match the hashes to check a password but if someone is able to break into your database or storage depot they won't be able to get the code even with the hash firmly in hand.
two-way encryption is best divided into two parts. single key encryption is used for such things as your windows password or basic encryption for file transfers. This isn't as secure as other forms because there is a single key that must be transferred from one place to another. typically the key is formed by taking one huge prime number and multiplying it by another huge prime number (aka: double prime encryption). this makes it very hard to guess the key because the number has only two factors and "normal" methods of cracking a code rely on factoring the key based on the output of the decryption attempt but with only two it's very difficult for the program to guess.
the other form of two-way encryption is private/public key encryption. (this stuff is all around you). this has a publicly available key that enables anyone to encrypt data. but to unencrypt the data there is a separate key that is kept private and is often encrypted using the first method of two-way encryption. this makes the data an order of magnitude more secure because instead of guessing one key(which can be very very difficult) they have to guess one key then try and decrypt another something that is also encrypted to see if the key was done correctly. this adds another step which will bog down even the fastest machines because of the millions of iterations necisary to guess the first key. the private key can also be sent using another bit of data used when generating the public key that will force the generation of the correct private key. this is typically done using parallel programming. both the sender and the reciever have a program that generates private keys and using a token of data will generate the proper key to decrypt the data.
A new form of encryption that is still in the development state is called "quantum encryption". before you turn off your eyes, it really does exist. it involves a hand shake of sorts (like how your computer negotiates a connection to a host). the sending computer sends bits of lets say electrons. the recieving computer chooses a filter and sees if the electron makes it or not. only the data of whether or not the electron made it are important to the home computer. after several iterations of this a key is generated on the sending computer and the data is then sent to the reciever by this method (after being encrypted). the data appears at the other end correctly. if someone trys to sniff the data it will be very evident because the data will appear garbled on the other end because the sniffing alters the qantum state of the electron(thing of it spinning counterclockwise or clockwise for different states.) and unless the intruder has guess the proper filter the data will also appear garbled to him/her. and this can be done on the fly indefinitely without any possible leaks.
The a-->b is just a example, but "real" encryptions is done with more math.. There are many-many type of encryption techniques, some of them gets the length of the string and then chr(can only get the digit of a character) it, and then chr each alphabet and add the digits together. How they add them together IS (11+24+90=112490) and NOT (11+24+90=125). But stronger encryptions use custom passwords, and they have to make sure the password is strong enough to prevent hackers guessing it. I don't exactly know how to make one, but i know it was made by math, the converting technique(a--->b c--->d) is a old type of encryption way.
The coding of a clear text message by a transmitting unit so as to prevent unauthorized eavesdropping along the transmission line; the receiving unit uses the same algorithm as the transmitting unit to decode the incoming message.
There are many softwares to encrypt files and folders .
Yeah encryption is everywhere on the computer if we didnt have encryption there would be alot of hacking going on and it would be easy for them to do it. I see encryption as something made of that really represents something that has a real value. Just like binary code or your registry on your computer. All those numbers and letters mean something if you can put them together.
A good example is your computer registry. If you download a free trial of a program that has 15 days to use it, you can change the date so that you have unlimited time in the registry. I am not saying to try this or that its right to do im just saying its possible. You can change the different numbered codes into something that has value. If you find the code that represents the date value then that code can be changed and then so will the value. Thats just my thought on encryption.
Can PDA encryption be trustworthy? Or those softwares that claim to store and encrypt your password. I'm looking around for one, so that I can change my password very often.
I know with Google, people these days can just snoop around and find your password or credit card number very easily. Though I doubt most of us will be prone to major attacks, we may be the unfortunate target of a few pranksters.
quakesand: thanks for trying, but...: When I try to run encrypter.exe from within WinRAR, I get this error message:
"The Dynamic Link Library d3d8.dll was not found in the Path." [with Path being the environment variable ]. Maybe you need to ship this [and any other DLL used] with the program?
QUOTE(the_aggie10 @ Oct 26 2006, 03:51 AM)
can someone give me an example of a key? and is there any program that can take an encrypted code and decrypt it on its own? i wouldnt be suprised...
What kind of key would you like to see? The key to use depends on the method you're going to use...
anyways, I'll just get my laptop back up and running again, then I'll generate a key pair for public key-encryption to publish here (well, I could just post one of my public keys but that would've been to easy; plus the Windoze-Notepad is unable to cope with them as of today...)
techclace: biometrics is basically a nice idea for encryption but I'd rather not use it for important stuff - as of today, face scanning machines don't recognize someone with a bruise in his face when he's been scanned without it...
To generate an application for free web hosting please click here: Free Web Hosting
Request Form I would like to request free web hosting from Trap17. Please find my application
below. Your Registered Domain Name or Desired Trap17 Subdomain Name: Encryption.trap17.com
Account Username: encrypto Introduction: I\'m Jake. I like
bikes/cars , and heading to town on the weekend. I started getting into IT at about 12 , and have
learned html Email Address: callummunst@gmail.com Age: 14 ....
Cryptainer is a 448-bit encryption system to encrypt your data on hard disk to militaty grade
encryption. Simply install Cryptainer in your machine set an access password and activate the
program. The Cryptainer creates a Vitrual Drive which can be accessed from My Computer. When you
open the drive, a window very similar to Windows Explorer opens and lets your drag the data to be
encrypted into it from the Explorere and those files are encrypted automatically. Once you close
the application the Virtual drive disappears from the My Computer. So only the person who has t....
Hello people! im on the hunt for source code for a file encrytion program. i need it to study
the code and to create on of my own. i want it to be able to encrypt and store a file with a stub,
then decrypt and run the program on runtime. help is always appreciated Xp10r3r_3X....
I once encrypted a folder in my windows xp system so that the other Users cannot access it. Now
I've reinstalled XP and when I try to decrypt or open the file I'm not able to access the
file. Please help me to recover the file.....
According to a recently passed german law and a EU guideline, phone companies have to store all
connection data (who called who and how long did the call take), ISPs are supposed to store who had
which IP and browsed which sites for 2 years, short messages and eMails have to be stored for 6
months. At this time, only law enforcement agencies are supposed to be able to access these data
sets in severe cases like when they suspect someone to be a terrorist, whatever that means these
days. well, this is going to be a huge data pool and huge amounts of data attract people w....
Hi, About a week ago, one of our laptops has started having problems connecting with the router.
The laptop is an inspiron 5100, xp home sp2, and the router is a netgear. The router's a couple
years old and doesn't have wpa. The laptop will connect without encryption, but when wep is
turned on, it will detect the network but can't connect. No software changes recently, and the
router settings haven't been touched since it's been working. The only thing I can think of
that might have changed the wireless software is an automatic update. I....
Just for fun, I made my own encryption system. I was wondering if people had any suggestions or
could write code to break it. Code for encryption system, use amfrencrypt() to encrypt and
amfrdecrypt() to decrypt PHP Code: CODE function amfrencrypt($string,
$password) { $password = md5($password); $encnum = 0;
for($k = 0; $k < strlen($password); $k++) {
if(is_string($password{$k})) { $encnum +=
ord($pass....
Got little probelm, here two adress on my site: http://www.cc.luckyclover.trap17.com/advertise
http://www.cc.luckyclover.trap17.com/advertise/ advertise is subdirectory. First not work second
work. WHat i must change in console to add "/" in adress end as default if explorer don't find
target file ? -------------------- Practice is when evrything is work but no one know why. Theory
is when work nothing but evry one know why. Programmers join Practice with Theory - nothing work and
no one know why /cool.gif' border='0' style='vertical-align:middle' alt='coo....
Cryptainer LE - Free 128bit Encryption QUOTE Creates an encrypted container (vault) to store
any type of data. 128 bit strong encryption Simple drag and drop operation Easy to use,
Impossible to break. Works on all versions of Windows. Works on all Media including
removable (USB Drives, etc) Send Secure E-mails The best part - It is FREE - Never Expires,
No Nag screens. Download: http://www.cypherix.com/cryptainer_le_download_center.htm
Read this, if you're interested: CRYPTAINER LE ENCRYPTION SOFTWARE Secure y....
I love md5 encryption CODE <? /* A simple MD5 password encryption tool Created By:
gikid */ //Creates a varible holding the password $password = "The_Password";
//Encryptes the password into an "irreversible" MD5 form $encpass =
md5($password); //Prints out the encrypted password print($encpass);
?> you should try it out....
Hey Guys, Searched for posts re: webpage security (keeping slimeB*lls from "borrowing" your content)
on the forums & came up blank. So thought I'd start a string here. OK, so does anyone have any
info to contribute? Has anyone used html encryption programs? Does this create problems with
browsers "reading" the page content or other functionality problems? What about webpage/html
modifications/"updates" after the page has been encrypted? How good is the encryption OR how easy is
it to hack/crack etc. ??? Anybody? Cheers! PS-Any strings/links in the forums I've....
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE
forum, Create your own topics, Ask Questions, track topics, setup
subscriptions & notifications and Get a Free Website w/ Email and FTP.