Results 1 to 16 of 16

Thread:

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Banned Sniper's Avatar
    Join Date: Jun:2004
    Location: haskovo
    Posts: 5,128

    , .

  2. #2
    Registered User singularity's Avatar
    Join Date: Apr:2003
    Location:
    Posts: 3,382
    . OS- - Windows NTFS, CryptoFS
    , , . - PasSword, ISA .

    Edit: Windows - TrueCrypt
    ignore list:Java,velio,jaredharet,gochev.george,Nit rogenium
    Quis custodiet ipsos custodes?

  3. #3
    ' ... goblin's Avatar
    Join Date: Apr:2005
    Location: Bg
    Posts: 1,402
    ,
    , , ,
    .
    , .

    .. , - .
    - , , - . , , , .
    Last edited by goblin; 26th October 2006 at 16:44.

  4. #4
    Registered User SAGE's Avatar
    Join Date: Sep:2005
    Location: Sofia
    Posts: 171
    Last edited by Valeri; 27th October 2006 at 03:16.

  5. #5
    Registered User stoimena's Avatar
    Join Date: Mar:2004
    Location: Varna
    Posts: 24
    .
    80GB USB2
    , .
    , .
    OS WindowsXPSP2
    XP- ... (40GB)

  6. #6
    Registered User singularity's Avatar
    Join Date: Apr:2003
    Location:
    Posts: 3,382
    TrueCrypt .
    ignore list:Java,velio,jaredharet,gochev.george,Nit rogenium
    Quis custodiet ipsos custodes?

  7. #7
    Registered User
    Join Date: Apr:2005
    Location: Sofia
    Posts: 75
    , zip- 16 , . ,

  8. #8
    Banned
    Join Date: Oct:2001
    Location: , -5
    Posts: 2,637
    , .

    . , , , . , , , , , , . ( .. ).

    , , , , , , , . AES, , , , , .

  9. #9
    Banned
    Join Date: Oct:2001
    Location: , -5
    Posts: 2,637
    : http://rss.slashdot.org/~r/Slashdot/...172/article.pl

    , , -, -:
    Code:
    #include <stdio.h>
    #include <stdlib.h>
    void usage()
    {
     printf("Stro0ng 1024 bit encryption program. Usage k00lcrypt infile outfile password. Shreds the input file. Run on encrypted file to decrypt, automatically detect");
    }
    
    int main(int argc, char *argv[])
    {
    
     const char magic[] = { '\x10', 'd', '\x11', 'u', '\x52', 'm', '\x13', 'b', '\x14', 'u', '\x15', 's', '\x4c', 'e', '\x17', 'r' };
     char dna = 0;
     int rna = 0;
    
     /* "1024 bit encryption key", yeah */
     char key[128] = {0, };
    
     size_t i;
     const char *ptr;
    
     FILE *in,*out;
     off_t size, j;
    
     if(argc < 4) {
       usage();
       return 1;
     }
    
     /* Calculating the encryption key. It's 1024 bit, so nobody will ever guess it */
     for (ptr = argv[3]; *ptr; ptr++)
      dna ^= (*ptr ^ (ptr - argv[3]));
     for (i = 0; i < sizeof(key); i++)
      key[i] = dna ^ magic[i % sizeof(magic)] ^ (char)i;
    
     in = fopen(argv[1], "rb");
     out = fopen(argv[2], "wb");
    
     printf("Now encryptiong... ");
     /* Very secure algorithm. It'll take us up to 256 iterations to get your real file */
     for (size = 0; (rna = fgetc(in)) != EOF; size++)
       fputc(rna ^ key[size % sizeof(key)], out);
     printf("done\n");
    
     fclose(in);
     fclose(out);
    
     printf("now Perfoming shredding ultra secure 10 passes... ");
     unlink(argv[1]);
    
     in = fopen(argv[1], "wb");
     for (i = 0; i < 10; i++) {
       srand((int)(i ^ dna ^ size));
       fseek(in, 0, SEEK_SET);
       for (j = 0; j < size; j++)
        fputc((char)rand(), in);
    
     }
     fclose(in);
     printf("done\n");
    
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Copyright © 1999-2011 . .
iskamPC.com | mobility.BG | Bloody's Techblog | | 3D Vision Blog |