michael_mic.c (860dbce3d8dd90cb9e909c58fa79808766243651) | michael_mic.c (d6ebf5286f8f94a254a8c90d4b9f2a8b076a8634) |
---|---|
1/* 2 * Cryptographic API 3 * 4 * Michael MIC (IEEE 802.11i/TKIP) keyed digest 5 * 6 * Copyright (c) 2004 Jouni Malinen <j@w1.fi> 7 * 8 * This program is free software; you can redistribute it and/or modify --- 145 unchanged lines hidden (view full) --- 154 .digestsize = 8, 155 .setkey = michael_setkey, 156 .init = michael_init, 157 .update = michael_update, 158 .final = michael_final, 159 .descsize = sizeof(struct michael_mic_desc_ctx), 160 .base = { 161 .cra_name = "michael_mic", | 1/* 2 * Cryptographic API 3 * 4 * Michael MIC (IEEE 802.11i/TKIP) keyed digest 5 * 6 * Copyright (c) 2004 Jouni Malinen <j@w1.fi> 7 * 8 * This program is free software; you can redistribute it and/or modify --- 145 unchanged lines hidden (view full) --- 154 .digestsize = 8, 155 .setkey = michael_setkey, 156 .init = michael_init, 157 .update = michael_update, 158 .final = michael_final, 159 .descsize = sizeof(struct michael_mic_desc_ctx), 160 .base = { 161 .cra_name = "michael_mic", |
162 .cra_driver_name = "michael_mic-generic", |
|
162 .cra_blocksize = 8, 163 .cra_alignmask = 3, 164 .cra_ctxsize = sizeof(struct michael_mic_ctx), 165 .cra_module = THIS_MODULE, 166 } 167}; 168 169static int __init michael_mic_init(void) --- 18 unchanged lines hidden --- | 163 .cra_blocksize = 8, 164 .cra_alignmask = 3, 165 .cra_ctxsize = sizeof(struct michael_mic_ctx), 166 .cra_module = THIS_MODULE, 167 } 168}; 169 170static int __init michael_mic_init(void) --- 18 unchanged lines hidden --- |