0

WePad

wepad
Neofonie, a German company in strategic partnership with Siemens have developed the WePad.I am sure there would be a few tablets better than iPad, a few would be competitive and some wannabe`s.The WePad showoff some decent features including Android OS, 11.6” touch screen, 1366*768 pixel display, a1.66GHz Intel Atom N450 processor,GMA 3150 graphics,Webcam,2 USB ports, a 3 in 1 card reader and a UMTS modem.
 
0

HOW TO CRACK VISTA LOGON ACCOUNT PASSWORD

1. Reboot the windows vista and boot up with windows vista installation DVD.


vista-install-01
    2. While the windows vista installation interface pops up,click the Repair you computer link at the bottom-left corner.


    3. Next, the System recovery option dialog box appears.There are few options that related to repairing Windows Vista, looks like Recovery console in Windows XP.
    •     System Restore to restore Windows Vista setting to an earlier point in time.
    •    Windows Complete PC Restore to restore Windows Vista from a full system backup.
    •     Windows Memory Diagnostic Tool could be the first Microsoft memory tester that    bundle with windows setup media.
    0

    Windows Hidden Applications

    There are so many Applications that are present in windows.Some of them may be we know and some of them we don't know.So let us see some of the Hidden applications in windows .

    To run any of these apps go to Start -> Run and type the executable name (ie charmap).
    The following applications contains the extension ".exe". It is not necessary to give ".exe" in the Run prompt. For example to open the Disk cleanup application just type "cleanmgr" in Run prompt.The Disk cleanup wizard will be opened.
    These applications will be opened in windows xp, vista and in windows 7.

    WINDOWS  HIDDEN APPS:

    1) Character Map = charmap.exe (very useful for finding unusual characters)

    2) Disk Cleanup = cleanmgr.exe

    0

    RSA Algorithm using C

    RSA Algorithm using C Language

    You can also Download the Program code and corresponding output....
    To Download the program in correct format
    CLICK HERE 



    #include
    #include

    int phi,m,n,e,d,c,flag;
    int check()
    {
    int i;
    for(i=3;e%i==0&φ%i==0;i+2)
    {
    flag=1;
    return;
    }
    flag=0;
    }


    int encrypt()
    {
       int i;
      c=1;
       for(i=0;i
       c=c*m%n;
         c=c%n;
       printf("\n\t Encrypted keyword is %d",c);
       return c;
    }

    void decrypt()
    {

       int i;
       m=1;
       for(i=0;i
        m=m*c%n;
       m=m%n;
       printf("\n\t decrypted keyword is %d",m);
    }
    void main()
    {
       int p,q,s;
       clrscr();
       printf("enter two relatively prime numbers");
    scanf("%d%d",&p,&q);
       n=p*q;
      phi=(p-1)*(q-1);
      printf("\n\t f(n)\t=%d",phi);
       do
       {
       printf("\n\n Enter e\t");
         scanf("%d",&e);
         check();
      }while(flag==1);
       d=1;
      do
       {
       s=(d*e)%phi;
         d++;
       }while(s!=1);
       d=d-1;
      printf("\n\t Public key{ %d,%d}",e,n);
    printf("\n\t Private key{%d,%d}",d,n);
      printf("\n\n Enter the plain text\t");
      scanf("%d",&m);
      encrypt();
      decrypt(c);
       getch();
    }

    0

    Shutdown Windows XP in Different ways

    There are so many different ways to turn off your Windows XP computer, let's look at some of them:

    1)The standard approach - click the Start Button with your mouse, then select the Turn Off menu and finally click the Turn Off icon on the Turn Off computer dialog. blink.gif

    2)Press Ctrl+Esc key or the Win key and press u two times - the fastest approach.