diff options
author | lloyd <[email protected]> | 2013-12-10 03:30:24 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-10 03:30:24 +0000 |
commit | 748d7fd4b622ee3c9d95343e02ed945c217507f7 (patch) | |
tree | d2d1d58147b5b723b37f02133735ebca9bebd6ad /src/modes/aead/ccm/ccm.cpp | |
parent | 4874b0727843bba925bcd3b5c0659c5f1cb059d9 (diff) |
s/default_nonce_size/default_nonce_length/
Diffstat (limited to 'src/modes/aead/ccm/ccm.cpp')
-rw-r--r-- | src/modes/aead/ccm/ccm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modes/aead/ccm/ccm.cpp b/src/modes/aead/ccm/ccm.cpp index fb35172cc..50fc38738 100644 --- a/src/modes/aead/ccm/ccm.cpp +++ b/src/modes/aead/ccm/ccm.cpp @@ -47,7 +47,7 @@ bool CCM_Mode::valid_nonce_length(size_t n) const return (n == (15-L())); } -size_t CCM_Mode::default_nonce_size() const +size_t CCM_Mode::default_nonce_length() const { return (15-L()); } |