[test/aes] Test aes_decrypt_text with 256 bit
This commit is contained in:
		
							parent
							
								
									336d19044c
								
							
						
					
					
						commit
						f9544f6e8f
					
				
					 2 changed files with 15 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -32,5 +32,11 @@ print(repr(r))
 | 
			
		|||
password = key
 | 
			
		||||
new_key = aes_encrypt(password, key_expansion(password))
 | 
			
		||||
r = openssl_encode('aes-128-ctr', new_key, iv)
 | 
			
		||||
print('aes_decrypt_text')
 | 
			
		||||
print('aes_decrypt_text 16')
 | 
			
		||||
print(repr(r))
 | 
			
		||||
 | 
			
		||||
password = key + 16 * [0]
 | 
			
		||||
new_key = aes_encrypt(password, key_expansion(password)) * (32 // 16)
 | 
			
		||||
r = openssl_encode('aes-256-ctr', new_key, iv)
 | 
			
		||||
print('aes_decrypt_text 32')
 | 
			
		||||
print(repr(r))
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue