diff options
Diffstat (limited to 'crypto/tcrypt.h')
| -rw-r--r-- | crypto/tcrypt.h | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/tcrypt.h b/crypto/tcrypt.h index ecdeeb1a7b0..6c7e21a09f7 100644 --- a/crypto/tcrypt.h +++ b/crypto/tcrypt.h @@ -22,6 +22,11 @@ struct cipher_speed_template {  	unsigned int klen;  }; +struct aead_speed_template { +	const char *key; +	unsigned int klen; +}; +  struct hash_speed {  	unsigned int blen;	/* buffer length */  	unsigned int plen;	/* per-update length */ @@ -58,6 +63,11 @@ static u8 speed_template_32_48_64[] = {32, 48, 64, 0};  static u8 speed_template_32_64[] = {32, 64, 0};  /* + * AEAD speed tests + */ +static u8 aead_speed_template_20[] = {20, 0}; + +/*   * Digest speed tests   */  static struct hash_speed generic_hash_speed_template[] = {  | 
