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 14 // GaloisHash is a polynomial authenticator that works in GF(2^128).
51 GaloisHash::GaloisHash(const uint8 key[16]) {
70 void GaloisHash::Reset() {
79 void GaloisHash::UpdateAdditional(const uint8* data, size_t length) {
85 void GaloisHash::UpdateCiphertext(const uint8* data, size_t length) {
102 void GaloisHash::Finish(void* output, size_t len) {
136 GaloisHash::FieldElement GaloisHash::Add(
145 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 106 TEST(GaloisHash, TestCases) {
112 GaloisHash hash(test.key);
122 TEST(GaloisHash, VaryLengths) {
129 GaloisHash hash(test.key);
  /external/chromium_org/net/quic/crypto/
aes_128_gcm_12_decrypter_nss.cc 68 // CKM_AES_CTR and the GaloisHash class.
189 crypto::GaloisHash ghash(ghash_key);
aes_128_gcm_12_encrypter_nss.cc 68 // CKM_AES_CTR and the GaloisHash class.
195 crypto::GaloisHash ghash(ghash_key);

Completed in 79 milliseconds