HomeSort by relevance Sort by last modified time
    Searched refs:GaloisHash (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/crypto/
ghash.cc 12 // GaloisHash is a polynomial authenticator that works in GF(2^128).
49 GaloisHash::GaloisHash(const uint8 key[16]) {
68 void GaloisHash::Reset() {
77 void GaloisHash::UpdateAdditional(const uint8* data, size_t length) {
83 void GaloisHash::UpdateCiphertext(const uint8* data, size_t length) {
100 void GaloisHash::Finish(void* output, size_t len) {
134 GaloisHash::FieldElement GaloisHash::Add(
143 GaloisHash::FieldElement GaloisHash::Double(const FieldElement& x)
    [all...]
ghash.h 10 // GaloisHash implements the polynomial authenticator part of GCM as specified
28 class CRYPTO_EXPORT_PRIVATE GaloisHash {
30 explicit GaloisHash(const uint8 key[16]);
ghash_unittest.cc 104 TEST(GaloisHash, TestCases) {
110 GaloisHash hash(test.key);
120 TEST(GaloisHash, VaryLengths) {
127 GaloisHash hash(test.key);
  /external/chromium_org/net/quic/crypto/
aes_128_gcm_12_decrypter_nss.cc 112 // CKM_AES_CTR and the GaloisHash class.
233 crypto::GaloisHash ghash(ghash_key);
aes_128_gcm_12_encrypter_nss.cc 112 // CKM_AES_CTR and the GaloisHash class.
239 crypto::GaloisHash ghash(ghash_key);

Completed in 2066 milliseconds