Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
c7fe14a9
Commit
c7fe14a9
authored
Oct 21, 1998
by
Kurt Zeilenga
Browse files
Have code use <sys/types.h> BYTE_ORDER as before.
parent
23f5d115
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblutil/sha1.c
View file @
c7fe14a9
...
...
@@ -35,12 +35,12 @@
* blk0() and blk() perform the initial expand.
* I got the idea of expanding during the round function from SSLeay
*/
#if WORDS_BIGENDIAN
# define blk0(i) block->l[i]
#else
#if BYTE_ORDER = LITTLE_ENDIAN
# define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
|(rol(block->l[i],8)&0x00FF00FF))
#endif
#else
# define blk0(i) block->l[i]
#define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
^block->l[(i+2)&15]^block->l[i&15],1))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment