OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kScalarBytes
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/crypto/
curve25519.h
23
//
kScalarBytes
is the number of bytes in an element of the scalar field:
25
static const size_t
kScalarBytes
= 32;
30
// basepoint. |private_key| should be of length |
kScalarBytes
| and
40
// |
kScalarBytes
|. See "Computing public keys" section of
p224.h
38
//
kScalarBytes
is the number of bytes needed to represent an element of the
40
static const size_t
kScalarBytes
= 28;
/external/chromium_org/net/quic/crypto/
curve25519_key_exchange.cc
29
sizeof(ka->private_key_) == crypto::curve25519::
kScalarBytes
,
34
if (private_key.size() != crypto::curve25519::
kScalarBytes
) {
40
crypto::curve25519::
kScalarBytes
);
47
uint8 private_key[crypto::curve25519::
kScalarBytes
];
Completed in 104 milliseconds