Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1404911 - make AEAD destructor virtual, r=mt
Differential Revision: https://phabricator.services.mozilla.com/D90

--HG--
extra : rebase_source : 80371a5adcab7c4585095161f80d1ed0b1f6c21f
extra : amend_source : eff4bc2d3943696b5773fb4c0c739a33bcb9d8fc
  • Loading branch information
franziskuskiefer committed Oct 2, 2017
1 parent 9f29abe commit 84bdbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtests/ssl_gtest/tls_protect.h
Expand Up @@ -20,7 +20,7 @@ class TlsRecordHeader;
class AeadCipher {
public:
AeadCipher(CK_MECHANISM_TYPE mech) : mech_(mech), key_(nullptr) {}
~AeadCipher();
virtual ~AeadCipher();

bool Init(PK11SymKey *key, const uint8_t *iv);
virtual bool Aead(bool decrypt, uint64_t seq, const uint8_t *in, size_t inlen,
Expand Down

0 comments on commit 84bdbbe

Please sign in to comment.