OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FieldElement
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/crypto/
ghash.h
55
struct
FieldElement
{
60
static
FieldElement
Add(const
FieldElement
& x, const
FieldElement
& y);
62
static
FieldElement
Double(const
FieldElement
& x);
65
static void MulAfterPrecomputation(const
FieldElement
* table,
66
FieldElement
* x);
68
static void Mul16(
FieldElement
* x);
77
FieldElement
y_
[
all
...]
p224.h
22
typedef uint32
FieldElement
[8];
35
FieldElement
x, y, z;
ghash.cc
57
FieldElement
x = {Get64(key), Get64(key+8)};
134
GaloisHash::
FieldElement
GaloisHash::Add(
135
const
FieldElement
& x,
136
const
FieldElement
& y) {
138
FieldElement
z = {x.low^y.low, x.hi^y.hi};
143
GaloisHash::
FieldElement
GaloisHash::Double(const
FieldElement
& x) {
146
FieldElement
xx;
164
void GaloisHash::MulAfterPrecomputation(const
FieldElement
* table,
165
FieldElement
* x)
[
all
...]
p224.cc
25
// Field elements are represented by a
FieldElement
, which is a typedef to an
26
// array of 8 uint32's. The value of a
FieldElement
, a, is:
33
using crypto::p224::
FieldElement
;
36
const
FieldElement
kP = {
41
void Contract(
FieldElement
* inout);
44
uint32 IsZero(const
FieldElement
& a) {
45
FieldElement
minimal;
78
void Add(
FieldElement
* out, const
FieldElement
& a, const
FieldElement
& b)
[
all
...]
Completed in 153 milliseconds