Codebase list libcryptx-perl / 50ad0dd
fixing broken camellia Karel Miko 10 years ago
1 changed file(s) with 4 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
618618 L ^= F(R ^ skey->camellia.k[1]);
619619 R ^= F(L ^ skey->camellia.k[0]);
620620
621 L ^= skey->camellia.kw[1];
622 R ^= skey->camellia.kw[0];
623
624 STORE64H(R, pt+0); STORE64H(L, pt+8);
621 R ^= skey->camellia.kw[1];
622 L ^= skey->camellia.kw[0];
623
624 STORE64H(R, pt+8); STORE64H(L, pt+0);
625625
626626 return CRYPT_OK;
627627 }