Pages

Monday, July 25, 2011

Best reviews for the Paint Zoom Products

Everything in the world would look good if they are colored and the colouring was done perfect. People like more colours in their life. But not everyone can paint. Only few people can paint using the painting brush and roller. Everyone cannot paint very accurately with good finishing. But we can paint now very easily with the painting sprayer. Many brands are available in the market
.
Only few brands will have the good quality. We need to be careful when purchasing any product. With the advanced technology many duplicate brands have come with the same appearance like the original brand. Many people will get fooled by the appearance. Buy the original products. It will long last for years. We will have more features in the branded products than the local or the duplicate brands.

We can easily find the difference between the original product and the duplicate product. For that we need to search about the product in the web world. We can find many reviews about a product. The reviews will tell us about the quality and the originality of the product. We can also find the users comment about the product. The comments will tell you about the products benefit and the faults.

Like other products we can also find the review for the Paint sprayers. You can find the Paint Zoom Review in many blogs and in review websites. With the review from the websites and in blogs we can easily find the features and the usage of the product. We can even find some videos about the product. We can even know better about the product before we purchase the product with the reviews in the websites.

With the reviews, we can save our time and our energy spending in the street shops. When we read the reviews and got satisfied we can purchase the product by ordering in online. We will receive the product to our home. Read the Paint Zoom Review and get to know about the product. Get the product and paint your home walls and the furniture’s by yourself and enjoy the joy of painting. 

Friday, July 22, 2011

Ford is recruiting B.E freshers

As with the growth in many companies, they are recruiting many new people to their organization. Yesterday i posted about the Polaris recruitment. This is for the Ford recruitment.

FORD is recruiting 2010 and 2011 passed out B.E Graduates. People should apply through online in their career page of the ford website.

Please find more details in the Jobs page and apply.

Thursday, July 21, 2011

Polaris Recruiting Freshers and Experienced in all Technology

2008 and 2009 is the worst period for the Software industry. Software industry was developed now and many companies have started recruiting people including freshers. I am working in Polaris Software lab ltd

Polaris is recruiting Freshers and Experienced in all the technologies. You can apply for the jobs in online. More than 1000 vacancies are available in Polaris. Most of the vacancies are in Chennai.

You have to register in the website to apply for the job. You will receive your Login ID and Password to your mail. You need to upload the resume in Online. HR people will review your resume and they will call you, if they are interested in your profile. 

Click here to know more details.

Thursday, July 7, 2011

How to encrypt the password (or) How to encrypt a string

Cryptography plays an important role in the computing world.  All the passwords will be saved in the encrypted format. All the organizations and the websites will store their user’s password in encrypted format. No one will save the password in plain format. Many problems will arise if the passwords were saved in plain format. For example, if the passwords were saved in plain format in the file or in the oracle database, hackers can easily ­­access the file and access their accounts and can transfer all the money to their accounts.

Because of the above said problems, scientists have started the concept of cryptography. The main concept of cryptography is to change the password into some other text and save the changed password in some files or in table. When the user enters the password the password will be encrypted and the password will be compared with the password stored in the password file (if UNIX machine) or in password table.

Many encryption and decryption algorithms are there in the computing technology. Many people had spent their whole life for cryptography. The first encryption program was written for Unix Operating System to maintain the user’s password.

crypt is the common c function used to crypt the string. It is the library function. This function is the one-way encryption method. There is no decryption program or the function is available. The crypt function will have two arguments. First argument is the password and the second argument is the salt. This function will take only the first eight digits and take the first two digits of the salt and create the encrypted password.

The encrypted password is of eight digits. The first two digit of the encrypted password contains the salt key used. The resulting 6 digits is the encrypted password. Crypt function uses the AES like algorithm.

Syntax for crypt function:

crypt( char *key, char *salt);

Sample program to encrypt the string:
#include<stdio.h>
#include<unistd.h>

main()
{
          char    passwd[10];
          char    salt[3];
          char    *encpasswd;
         
          printf("Enter the passwd:");
          scanf("%s",passwd);
          printf("Enter the Salt Key:");
          scanf("%s",salt);
         
          encpasswd =  crypt(passwd, salt);
         
          printf("The crypted passwd is: [%s]\n",encpasswd);
          exit(0);
}

The above program will encrypt the passwd and return the encrypted password to the encpasswd. This program works fine in the unix environment.