diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-30 07:17:29 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-11-30 07:17:29 +0100 |
commit | 9dacff2507a1e69cecc0ec888d49d296bd9c91b0 (patch) | |
tree | 8e654755f996ea378c9ef5224a986fc2e3888528 /src/methods/common.h | |
parent | 4e42aeadec8cea8ba0020a6ce1e69d0732514f86 (diff) | |
download | fastd-9dacff2507a1e69cecc0ec888d49d296bd9c91b0.tar fastd-9dacff2507a1e69cecc0ec888d49d296bd9c91b0.zip |
generic-poly1305: add helper functions to handle the common header
Diffstat (limited to 'src/methods/common.h')
-rw-r--r-- | src/methods/common.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/methods/common.h b/src/methods/common.h index d3218ae..b5f7272 100644 --- a/src/methods/common.h +++ b/src/methods/common.h @@ -94,4 +94,29 @@ static inline void fastd_method_increment_nonce(fastd_method_common_t *session) } } +static inline void fastd_method_put_common_header(fastd_context_t *ctx, fastd_buffer_t *buffer, const uint8_t nonce[COMMON_NONCEBYTES], uint8_t flags) { + fastd_buffer_pull_head_from(ctx, buffer, &flags, 1); + fastd_buffer_pull_head_from(ctx, buffer, nonce, COMMON_NONCEBYTES); +} + +static inline void fastd_method_take_common_header(fastd_context_t *ctx, fastd_buffer_t *buffer, uint8_t nonce[COMMON_NONCEBYTES], uint8_t *flags) { + fastd_buffer_push_head_to(ctx, buffer, nonce, COMMON_NONCEBYTES); + fastd_buffer_push_head_to(ctx, buffer, flags, 1); +} + +static inline bool fastd_method_handle_common_header(fastd_context_t *ctx, const fastd_method_common_t *session, fastd_buffer_t *buffer, uint8_t nonce[COMMON_NONCEBYTES], uint8_t *flags, int64_t *age) { + fastd_method_take_common_header(ctx, buffer, nonce, flags); + return fastd_method_is_nonce_valid(ctx, session, nonce, age); +} + + +static inline void fastd_method_expand_nonce(uint8_t *buf, const uint8_t nonce[COMMON_NONCEBYTES], size_t len) { + if (!len) + return; + + memset(buf, 0, len); + memcpy(buf, nonce, min_size_t(len, COMMON_NONCEBYTES)); + buf[len-1] = 1; +} + #endif /* _FASTD_METHODS_COMMON_H_ */ |