diff options
author | Ravishankar N <ravishankar@redhat.com> | 2018-02-11 06:54:35 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-02-19 14:57:12 +0000 |
commit | 6daa6535692b2c68b493636a9bbfdcbc475b3d80 (patch) | |
tree | 7df7839a468dd544103b3e0bc752da718db04fa8 /libglusterfs/src/checksum.h | |
parent | e80c10d5e6fb97e132ff7f1c2846629fb5ad915f (diff) |
posix/afr: handle backward compatibility for rchecksum fop
Added a volume option 'fips-mode-rchecksum' tied to op version 4.
If not set, rchecksum fop will use MD5 instead of SHA256.
updates: #230
Change-Id: Id8ea1303777e6450852c0bc25503cda341a6aec2
Signed-off-by: Ravishankar N <ravishankar@redhat.com>
Diffstat (limited to 'libglusterfs/src/checksum.h')
-rw-r--r-- | libglusterfs/src/checksum.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libglusterfs/src/checksum.h b/libglusterfs/src/checksum.h index bf7eeede8fc..677a59aa91e 100644 --- a/libglusterfs/src/checksum.h +++ b/libglusterfs/src/checksum.h @@ -17,4 +17,6 @@ gf_rsync_weak_checksum (unsigned char *buf, size_t len); void gf_rsync_strong_checksum (unsigned char *buf, size_t len, unsigned char *sum); +void +gf_rsync_md5_checksum (unsigned char *data, size_t len, unsigned char *md5); #endif /* __CHECKSUM_H__ */ |