mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Fix naming in cmac.h to comply with check-names.sh
This commit is contained in:
		
							parent
							
								
									7ca3109614
								
							
						
					
					
						commit
						8308a445d8
					
				@ -37,9 +37,10 @@ extern "C" {
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * \brief          CMAC context structure
 | 
					 * CMAC context structure - Contains internal state information only
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
typedef struct mbedtls_cmac_context_t {
 | 
					struct mbedtls_cmac_context_t
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /** Internal state of the CMAC algorithm  */
 | 
					    /** Internal state of the CMAC algorithm  */
 | 
				
			||||||
    unsigned char       state[MBEDTLS_CIPHER_BLKSIZE_MAX_SIZE];
 | 
					    unsigned char       state[MBEDTLS_CIPHER_BLKSIZE_MAX_SIZE];
 | 
				
			||||||
@ -53,8 +54,7 @@ typedef struct mbedtls_cmac_context_t {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    /** Flag to indicate if the last block needs padding */
 | 
					    /** Flag to indicate if the last block needs padding */
 | 
				
			||||||
    int                 padding_flag;
 | 
					    int                 padding_flag;
 | 
				
			||||||
}
 | 
					};
 | 
				
			||||||
mbedtls_cmac_context_t;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * \brief               Set the CMAC key and prepare to authenticate the input
 | 
					 * \brief               Set the CMAC key and prepare to authenticate the input
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user