mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
9 lines
215 B
C
9 lines
215 B
C
|
#include "ssh.h"
|
||
|
#include "aesgcm.h"
|
||
|
|
||
|
void aesgcm_set_prefix_lengths(ssh2_mac *mac, size_t skip, size_t aad)
|
||
|
{
|
||
|
const struct aesgcm_extra *extra = mac->vt->extra;
|
||
|
extra->set_prefix_lengths(mac, skip, aad);
|
||
|
}
|