Welcome to mirror list, hosted at ThFree Co, Russian Federation.

aesgcm-common.c « crypto - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e20c87b22abf6e69e3cce1f4c0ba8b7b011688a (plain)
1
2
3
4
5
6
7
8
#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);
}