HomeSort by: relevance | last modified time | path
    Searched refs:AES_GMAC_CTX (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/opencrypto/
gmac.h 47 } AES_GMAC_CTX;
52 void AES_GMAC_Init(AES_GMAC_CTX *);
53 void AES_GMAC_Setkey(AES_GMAC_CTX *, const uint8_t *, uint16_t);
54 void AES_GMAC_Reinit(AES_GMAC_CTX *, const uint8_t *, uint16_t);
55 int AES_GMAC_Update(AES_GMAC_CTX *, const uint8_t *, uint16_t);
56 void AES_GMAC_Final(uint8_t [GMAC_DIGEST_LEN], AES_GMAC_CTX *);
gmac.c 107 AES_GMAC_Init(AES_GMAC_CTX *ctx)
110 memset(ctx, 0, sizeof(AES_GMAC_CTX));
114 AES_GMAC_Setkey(AES_GMAC_CTX *ctx, const uint8_t *key, uint16_t klen)
147 AES_GMAC_Reinit(AES_GMAC_CTX *ctx, const uint8_t *iv, uint16_t ivlen)
154 AES_GMAC_Update(AES_GMAC_CTX *ctx, const uint8_t *data, uint16_t len)
172 AES_GMAC_Final(uint8_t digest[GMAC_DIGEST_LEN], AES_GMAC_CTX *ctx)
cryptosoft_xform.c 341 &auth_hash_gmac_aes_128, sizeof(AES_GMAC_CTX),
350 &auth_hash_gmac_aes_192, sizeof(AES_GMAC_CTX),
359 &auth_hash_gmac_aes_256, sizeof(AES_GMAC_CTX),
814 struct aes_gmac_ctx { struct
823 struct aes_gmac_ctx *ctx;
838 struct aes_gmac_ctx *ctx = (void *)*sched;
847 struct aes_gmac_ctx *ctx = key;
cryptosoft.c 59 AES_GMAC_CTX aesgmacctx;

Completed in 14 milliseconds