May 2013
S M T W T F S
« Apr «-»  
 1234
567891011
12131415161718
19202122232425
262728293031  

Recent Posts

DiceLockIVDigested512XNoOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and stream ciphers with Sha 512-224 and Sha 512-256

DiceLockIVDigested512XNoOMCheck is a C++ program to verify that DiceLockIVDigested class implementing one of DiceLock different architectures is working as expected with recently added secure hash algorithms Sha 224 and Sha 256 based on Sha 512 as stated on FIPS 180-4 of March 2012.

New implemented hash algorithms Sha-512/224 and Sha-512/256 are going to be added to DiceLock cipher architecture. Before DiceLock cipher is released as a unit for first time we add these hash algorithms as they already have been developed. These series of new tests addresses such new incorporations.

DiceLockIVDigested class is the class that implements DiceLock architecture with the following characteristics:
– base encryption cipher/decipher is any symmetric cipher (stream cipher or block cipher operation mode) working with symmetric key, and initialization vector (IV) are needed,
– any hash digest algorithm is used to generate message hash digest from plaintext to be encrypted,
ciphertext plus ciphered hash digest of plaintext is checked for random number test properties,
– any function that is able to change original symmetric key with new values,
bit random number tests that can verify that encrypted ciphertext is at random.

Current algorithm classes that can be used with DiceLockIVDigested architecture are:

– as base encryption cipher/decipher:

  • stream ciphers with initialization vector as:
      HC 128,
      HC 256,
      Rabbit,
      Salsa 20/20 128,
      Salsa 20/20 256,
      Sosemanuk 128,
      Sosemanuk 256,
  • block cipher operatin modes as:
      CBC (cipher block chaining),
      CFB (cipher feedback),
      OFB (output feedback),
  • with any of following block ciphers:
      AES (Advanced Encryption Standard) with 128, 192 or 256 key bits,
      Camellia with 128, 192 or 256 key bits,
      Serpent with 128, 192 or 256 key bits,
      Twofish with 128, 192 or 256 key bits, or
      TDEA (Triple Data Encryption Algorithm) with 192 key bits,
  • – hash digest algorithms: Sha 1, Sha 224, Sha 256, Sha 384, Sha 512, Sha-512/224, Sha-512/256, Ripemd 128, Ripemd 160, Ripemd 256, Ripemd 320, Md 2, Md 4 and Md5,
    – symmetric key changers: IncreaseKeyModifier_6_0_0_1 and DecreaseKeyModifier_6_0_0_1,
    – random number tests: Frequency, Block Frequency, Cumulative Sum Forward, Cumulative Sum Reverse, Runs, Longest Run Of Ones, Rank, Universal, Approximate Entropy, Serial, Discrete Fourier Transform tests and random number test Suite with any or all previous enumerated random number tests.

    Because of so many alternative encryption/decryption engines can be used, we have split DiceLockIVDigested class tests in two main C++ program tests:
    DiceLockIVDigested512XNoOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and stream ciphers with Sha 512-224 and Sha 512-256, and
    DiceLockIVDigested512XOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and Block cipher operation modes with Sha 512-224 and Sha 512-256.

    In this test we verify DiceLockIVDigested512XNoOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and stream ciphers with Sha 512-224 and Sha 512-256 with the configuration shown below.

    Click here if you want to read more on … DiceLockIVDigested512XNoOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and stream ciphers with Sha 512-224 and Sha 512-256

    • Share/Save/Bookmark

    DiceLockIVDigested512XOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and Block cipher operation modes with Sha 512-224 and Sha 512-256

    DiceLockIVDigested512XOMCheck is a C++ program to verify that DiceLockIVDigested class implementing one of DiceLock different architectures is working as expected with recently added secure hash algorithms Sha 224 and Sha 256 based on Sha 512 as stated on FIPS 180-4 of March 2012.

    New implemented hash algorithms Sha-512/224 and Sha-512/256 are going to be added to DiceLock cipher architecture. Before DiceLock cipher is released as a unit for first time we add these hash algorithms as they already have been developed. These series of new tests addresses such new incorporations.

    DiceLockIVDigested class is the class that implements DiceLock architecture with the following characteristics:
    – base encryption cipher/decipher is any symmetric cipher (stream cipher or block cipher operation mode) working with symmetric key, and initialization vector (IV) are needed,
    – any hash digest algorithm is used to generate message hash digest from plaintext to be encrypted,
    ciphertext plus ciphered hash digest of plaintext is checked for random number test properties,
    – any function that is able to change original symmetric key with new values,
    bit random number tests that can verify that encrypted ciphertext is at random.

    Current algorithm classes that can be used with DiceLockIVDigested architecture are:

    – as base encryption cipher/decipher:

  • stream ciphers with initialization vector as:
      HC 128,
      HC 256,
      Rabbit,
      Salsa 20/20 128,
      Salsa 20/20 256,
      Sosemanuk 128,
      Sosemanuk 256,
  • block cipher operatin modes as:
      CBC (cipher block chaining),
      CFB (cipher feedback),
      OFB (output feedback),
  • with any of following block ciphers:
      AES (Advanced Encryption Standard) with 128, 192 or 256 key bits,
      Camellia with 128, 192 or 256 key bits,
      Serpent with 128, 192 or 256 key bits,
      Twofish with 128, 192 or 256 key bits, or
      TDEA (Triple Data Encryption Algorithm) with 192 key bits,
  • – hash digest algorithms: Sha 1, Sha 224, Sha 256, Sha 384, Sha 512, Sha-512/224, Sha-512/256, Ripemd 128, Ripemd 160, Ripemd 256, Ripemd 320, Md 2, Md 4 and Md5,
    – symmetric key changers: IncreaseKeyModifier_6_0_0_1 and DecreaseKeyModifier_6_0_0_1,
    – random number tests: Frequency, Block Frequency, Cumulative Sum Forward, Cumulative Sum Reverse, Runs, Longest Run Of Ones, Rank, Universal, Approximate Entropy, Serial, Discrete Fourier Transform tests and random number test Suite with any or all previous enumerated random number tests.

    Because of so many alternative encryption/decryption engines can be used, we have split DiceLockIVDigested class tests in two main C++ program tests:
    DiceLockIVDigested512XNoOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and stream ciphers with Sha 512-224 and Sha 512-256, and
    DiceLockIVDigested512XOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and Block cipher operation modes with Sha 512-224 and Sha 512-256.

    In this test we verify DiceLockIVDigested512XOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and Block cipher operation modes with Sha 512-224 and Sha 512-256 with the configuration shown below.

    Click here if you want to read more on … DiceLockIVDigested512XOMCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockIVDigested class and Block cipher operation modes with Sha 512-224 and Sha 512-256

    • Share/Save/Bookmark

    DiceLockDigested512XCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockDigested class and Sha 512-224 and Sha 512-256

    DiceLockDigested512XCheck is a C++ program to verify that DiceLockDigested class implementing one of DiceLock different architectures is working as expected with recenctly added secure hash algorithms Sha 224 and Sha 256 based on Sha 512 as stated on FIPS 180-4 of March 2012.

    New implemented hash algorithms Sha-512/224 and Sha-512/256 are going to be added to DiceLock cipher architecture. Before DiceLock cipher is released as a unit for first time we add these hash algorithms as they already have been developed. These series of new tests addresses such new incorporations.

    DiceLockDigested class is the class that implements DiceLock architecture with the following characteristics:
    – base encryption cipher/decipher is any symmetric cipher (stream cipher or block cipher operation mode) working with just symmetric key, no initialization vector (IV) is used,
    – any hash digest algorithm is used to generate message hash digest from plaintext to be encrypted,
    ciphertext plus ciphered hash digest of plaintext is checked for random number test properties,
    – any function that is able to change original symmetric key with new values,
    bit random number tests that can verify that encrypted ciphertext is at random.

    Current algorithm classes that can be used with DiceLockDigested architecture are:

    – stream cipher: ARC4 and ARC4_Discarding (discarding initial bits),
    – hash digest algorithms: Sha 1, Sha 224, Sha 256, Sha 384, Sha 512, Sha-512/224, Sha-512/256, Ripemd 128, Ripemd 160, Ripemd 256, Ripemd 320, Md 2, Md 4 and Md5,
    – symmetric key changers: IncreaseKeyModifier_6_0_0_1 and DecreaseKeyModifier_6_0_0_1,
    - random number tests: Frequency, Block Frequency, Cumulative Sum Forward, Cumulative Sum Reverse, Runs, Longest Run Of Ones, Rank, Universal, Approximate Entropy, Serial, Discrete Fourier Transform tests and random number test Suite with any or all previous enumerated random number tests.

    Click here if you want to read more on … DiceLockDigested512XCheck, C++ program for Windows to verify DiceLock encryption cipher architecture with DiceLockDigested class and Sha 512-224 and Sha 512-256

    • Share/Save/Bookmark

    DiceLock 8.0.0.1 for Windows – Comparing output DiceLockXTSDigested storage sector base cipher architecture selectingTwofish 256 block cipher, Sha 256 hash digest algorithm and Random Test Suite with Frequency, Block Frequency, Cumulative Sum Forward, Longest Run Of Ones and Runs random number tests, using IncreaseKeyModifier_6_0_0_1 key modifier or DecreaseKeyModifier_6_0_0_1 key modifier and DefaultCryptoRandomStream bit data stream or PhysicalCryptoRandomStream bit data stream (17 of 17)

    Last DiceLockXTSDigestedSectorBasedCheck (C++ program) recipher output verification.
    This is the last post where we verify DiceLockXTSDigested class configuration shown in this serie first post regardless of using IncreaseKeyModifier_6_0_0_1 key modifier or DecreaseKeyModifier_6_0_0_1 key modifier with DefaultCryptoRandomStream bit data stream or PhysicalCryptoRandomStream bit data stream.

    Post where you can find DiceLockXTSDigestedSectorBasedCheck C++ Source Code program, program that has been executed where you can see how DiceLockXTSDigested class can work with all different options.
    Click here if you want to read more on … DiceLock 8.0.0.1 for Windows – Comparing output DiceLockXTSDigested storage sector base cipher architecture selectingTwofish 256 block cipher, Sha 256 hash digest algorithm and Random Test Suite with Frequency, Block Frequency, Cumulative Sum Forward, Longest Run Of Ones and Runs random number tests, using IncreaseKeyModifier_6_0_0_1 key modifier or DecreaseKeyModifier_6_0_0_1 key modifier and DefaultCryptoRandomStream bit data stream or PhysicalCryptoRandomStream bit data stream (17 of 17)

    • Share/Save/Bookmark