crypto/weakcrypto/test/tpadding/scripts/tpadSSLv3.ini
author William Roberts <williamr@symbian.org>
Thu, 29 Jul 2010 12:39:03 +0100
branchGCC_SURGE
changeset 88 6a5d0b07585d
parent 71 dd83586b62d6
permissions -rw-r--r--
Resolve IMPORT_C/EXPORT_C mismatch by adding IMPORT_C in header files - Bug 3489

[CipherAES_CBC]
BlockSize=16
TestCaseName=CipherAES_CBC

[CipherDES_CBC]
BlockSize=8
TestCaseName=CipherDES_CBC

[CipherRC2_CBC]
BlockSize=8
TestCaseName=CipherRC2_CBC

[ContentLength]
Length=61  // from example in TLS1.0 spec. section 6.2.3.2. CBC block cipher

//Test for BlockSize 0
[Zero_BlockSize]
BlockSize=0
TextSize=16              
TestCaseName=Zero_BlockSize
ExpectedResult=CorruptBlockSize

//Test for Negative BlockSize
[Negative_BlockSize]
BlockSize=-8
TextSize=16             
TestCaseName=Negative_BlockSize
ExpectedResult=CorruptBlockSize

//Test for BlockSize lesser than the TextSize
[Block_LessThan_Text]               
BlockSize=16
TextSize=32 
TestCaseName=Block_LessThan_Text
ExpectedResult=CorruptBlockSize      

//Test for BlockSize equal to the TextSize
[Block_Equal_Text]                
BlockSize=16
TextSize=16  
TestCaseName=Block_Equal_Text
ExpectedResult=CorruptBlockSize          

//Test for BlockSize greater than TextSize and TextSize is Zero
[Zero_Text]
BlockSize=16
TextSize=0
TestCaseName=Zero_Text
ExpectedResult=CorruptBlockSize