Home
last modified time | relevance | path

Searched refs:INPUT_WHITEN (Results 1 – 19 of 19) sorted by last modified time

/dports/security/p5-Crypt-Twofish2/Crypt-Twofish2-1.03/
H A Dtwofish.c843 #define LoadBlockE(N) x[N]=Bswap(((DWORD *)input)[N]) ^ sk[INPUT_WHITEN+N] ^ IV[N] in blockEncrypt()
1044 #define StoreBlockD(N) ((DWORD *)outBuffer)[N] = x[N] ^ sk[INPUT_WHITEN+N] in blockDecrypt()
1046 #define StoreBlockD(N) { t0=x[N]^sk[INPUT_WHITEN+N]; ((DWORD *)outBuffer)[N] = Bswap(t0); } in blockDecrypt()
1054 #define StoreBlockD(N) x[N] ^= sk[INPUT_WHITEN+N] ^ IV[N]; \ in blockDecrypt()
H A Daes.h68 #define INPUT_WHITEN 0 /* subkey array indices */ macro
69 #define OUTPUT_WHITEN ( INPUT_WHITEN + BLOCK_SIZE/32)
/dports/java/bouncycastle15/crypto-169/core/src/main/java/org/bouncycastle/crypto/engines/
H A DTwofishEngine.java197 private static final int INPUT_WHITEN=0; field in TwofishEngine
198 private static final int OUTPUT_WHITEN=INPUT_WHITEN+BLOCK_SIZE/4; // 4
451 int x0 = BytesTo32Bits(src, srcIndex) ^ gSubKeys[INPUT_WHITEN]; in encryptBlock()
452 int x1 = BytesTo32Bits(src, srcIndex + 4) ^ gSubKeys[INPUT_WHITEN + 1]; in encryptBlock()
453 int x2 = BytesTo32Bits(src, srcIndex + 8) ^ gSubKeys[INPUT_WHITEN + 2]; in encryptBlock()
454 int x3 = BytesTo32Bits(src, srcIndex + 12) ^ gSubKeys[INPUT_WHITEN + 3]; in encryptBlock()
512 Bits32ToBytes(x0 ^ gSubKeys[INPUT_WHITEN], dst, dstIndex); in decryptBlock()
513 Bits32ToBytes(x1 ^ gSubKeys[INPUT_WHITEN + 1], dst, dstIndex + 4); in decryptBlock()
514 Bits32ToBytes(x2 ^ gSubKeys[INPUT_WHITEN + 2], dst, dstIndex + 8); in decryptBlock()
515 Bits32ToBytes(x3 ^ gSubKeys[INPUT_WHITEN + 3], dst, dstIndex + 12); in decryptBlock()
/dports/security/ncrypt/ncrypt-0.8.1/
H A Dtwofish.c526 x[i]=Bswap(((DWORD *)input)[i]) ^ key->subKeys[INPUT_WHITEN+i]; in blockEncryptT()
679 x[i] ^= key->subKeys[INPUT_WHITEN+i]; in blockDecryptT()
H A Dncrypt.h59 #define INPUT_WHITEN 0 /* subkey array indices */ macro
60 #define OUTPUT_WHITEN ( INPUT_WHITEN + BLOCK_SIZE/32)
H A Ddebug.h66 (2*i == INPUT_WHITEN) ? " Input whiten" : in _DumpKey()
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/gnu/javax/crypto/cipher/
H A DTwofish.java79 private static final int INPUT_WHITEN = 0; field in Twofish
80 private static final int OUTPUT_WHITEN = INPUT_WHITEN + DEFAULT_BLOCK_SIZE / 4;
587 x0 ^= sKey[INPUT_WHITEN]; in encrypt()
588 x1 ^= sKey[INPUT_WHITEN + 1]; in encrypt()
589 x2 ^= sKey[INPUT_WHITEN + 2]; in encrypt()
590 x3 ^= sKey[INPUT_WHITEN + 3]; in encrypt()
700 x0 ^= sKey[INPUT_WHITEN]; in decrypt()
701 x1 ^= sKey[INPUT_WHITEN + 1]; in decrypt()
702 x2 ^= sKey[INPUT_WHITEN + 2]; in decrypt()
703 x3 ^= sKey[INPUT_WHITEN + 3]; in decrypt()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/gnu/javax/crypto/cipher/
H A DTwofish.java79 private static final int INPUT_WHITEN = 0; field in Twofish
80 private static final int OUTPUT_WHITEN = INPUT_WHITEN + DEFAULT_BLOCK_SIZE / 4;
587 x0 ^= sKey[INPUT_WHITEN]; in encrypt()
588 x1 ^= sKey[INPUT_WHITEN + 1]; in encrypt()
589 x2 ^= sKey[INPUT_WHITEN + 2]; in encrypt()
590 x3 ^= sKey[INPUT_WHITEN + 3]; in encrypt()
700 x0 ^= sKey[INPUT_WHITEN]; in decrypt()
701 x1 ^= sKey[INPUT_WHITEN + 1]; in decrypt()
702 x2 ^= sKey[INPUT_WHITEN + 2]; in decrypt()
703 x3 ^= sKey[INPUT_WHITEN + 3]; in decrypt()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/gnu/javax/crypto/cipher/
H A DTwofish.java79 private static final int INPUT_WHITEN = 0; field in Twofish
80 private static final int OUTPUT_WHITEN = INPUT_WHITEN + DEFAULT_BLOCK_SIZE / 4;
587 x0 ^= sKey[INPUT_WHITEN]; in encrypt()
588 x1 ^= sKey[INPUT_WHITEN + 1]; in encrypt()
589 x2 ^= sKey[INPUT_WHITEN + 2]; in encrypt()
590 x3 ^= sKey[INPUT_WHITEN + 3]; in encrypt()
700 x0 ^= sKey[INPUT_WHITEN]; in decrypt()
701 x1 ^= sKey[INPUT_WHITEN + 1]; in decrypt()
702 x2 ^= sKey[INPUT_WHITEN + 2]; in decrypt()
703 x3 ^= sKey[INPUT_WHITEN + 3]; in decrypt()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/javax/crypto/cipher/
H A DTwofish.java79 private static final int INPUT_WHITEN = 0; field in Twofish
80 private static final int OUTPUT_WHITEN = INPUT_WHITEN + DEFAULT_BLOCK_SIZE / 4;
587 x0 ^= sKey[INPUT_WHITEN]; in encrypt()
588 x1 ^= sKey[INPUT_WHITEN + 1]; in encrypt()
589 x2 ^= sKey[INPUT_WHITEN + 2]; in encrypt()
590 x3 ^= sKey[INPUT_WHITEN + 3]; in encrypt()
700 x0 ^= sKey[INPUT_WHITEN]; in decrypt()
701 x1 ^= sKey[INPUT_WHITEN + 1]; in decrypt()
702 x2 ^= sKey[INPUT_WHITEN + 2]; in decrypt()
703 x3 ^= sKey[INPUT_WHITEN + 3]; in decrypt()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/gnu/javax/crypto/cipher/
H A DTwofish.java79 private static final int INPUT_WHITEN = 0; field in Twofish
80 private static final int OUTPUT_WHITEN = INPUT_WHITEN + DEFAULT_BLOCK_SIZE / 4;
587 x0 ^= sKey[INPUT_WHITEN]; in encrypt()
588 x1 ^= sKey[INPUT_WHITEN + 1]; in encrypt()
589 x2 ^= sKey[INPUT_WHITEN + 2]; in encrypt()
590 x3 ^= sKey[INPUT_WHITEN + 3]; in encrypt()
700 x0 ^= sKey[INPUT_WHITEN]; in decrypt()
701 x1 ^= sKey[INPUT_WHITEN + 1]; in decrypt()
702 x2 ^= sKey[INPUT_WHITEN + 2]; in decrypt()
703 x3 ^= sKey[INPUT_WHITEN + 3]; in decrypt()
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/gnu/javax/crypto/cipher/
H A DTwofish.h62 static const jint INPUT_WHITEN = 0; variable
/dports/lang/gcc48/gcc-4.8.5/libjava/gnu/javax/crypto/cipher/
H A DTwofish.h62 static const jint INPUT_WHITEN = 0; variable
/dports/lang/gnat_util/gcc-6-20180516/libjava/gnu/javax/crypto/cipher/
H A DTwofish.h62 static const jint INPUT_WHITEN = 0; variable
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/gnu/javax/crypto/cipher/
H A DTwofish.h62 static const jint INPUT_WHITEN = 0; variable
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/gnu/javax/crypto/cipher/
H A DTwofish.h62 static const jint INPUT_WHITEN = 0; variable
/dports/security/aescrypt/aescrypt-0.7/
H A Daes.h69 #define INPUT_WHITEN 0 /* subkey array indices */ macro
70 #define OUTPUT_WHITEN ( INPUT_WHITEN + BLOCK_SIZE/32)
H A Daescrypt.Linux.i686.src66 (2*i == INPUT_WHITEN) ? " Input whiten" :
H A Ddebug.h66 (2*i == INPUT_WHITEN) ? " Input whiten" : in _DumpKey()