MCPcopy Create free account
hub / github.com/F-Stack/f-stack / gf128_add

Function gf128_add

freebsd/opencrypto/gfmult.h:111–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111static inline struct gf128 __pure /* XXX - __pure2 instead */
112gf128_add(struct gf128 a, struct gf128 b)
113{
114 a.v[0] ^= b.v[0];
115 a.v[1] ^= b.v[1];
116
117 return a;
118}
119
120void gf128_genmultable(struct gf128 h, struct gf128table *t);
121void gf128_genmultable4(struct gf128 h, struct gf128table4 *t);

Callers 6

AES_GMAC_UpdateFunction · 0.85
AES_GMAC_FinalFunction · 0.85
gf128_genmultableFunction · 0.85
gfmultwordFunction · 0.85
gfmultword4Function · 0.85
gf128_mul4bFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected