/prebuilts/go/darwin-x86/src/crypto/des/ |
block.go | 11 func cryptBlock(subkeys []uint64, dst, src []byte, decrypt bool) { 19 subkey = subkeys[15-i] 21 subkey = subkeys[i] 31 // Encrypt one block from src into dst, using the subkeys. 32 func encryptBlock(subkeys []uint64, dst, src []byte) { 33 cryptBlock(subkeys, dst, src, false) 36 // Decrypt one block from src into dst, using the subkeys. 37 func decryptBlock(subkeys []uint64, dst, src []byte) { 38 cryptBlock(subkeys, dst, src, true) 206 // creates 16 56-bit subkeys from the original ke [all...] |
cipher.go | 23 subkeys [16]uint64 39 func (c *desCipher) Encrypt(dst, src []byte) { encryptBlock(c.subkeys[:], dst, src) } 41 func (c *desCipher) Decrypt(dst, src []byte) { decryptBlock(c.subkeys[:], dst, src) }
|
des_test.go | [all...] |
/prebuilts/go/linux-x86/src/crypto/des/ |
block.go | 11 func cryptBlock(subkeys []uint64, dst, src []byte, decrypt bool) { 19 subkey = subkeys[15-i] 21 subkey = subkeys[i] 31 // Encrypt one block from src into dst, using the subkeys. 32 func encryptBlock(subkeys []uint64, dst, src []byte) { 33 cryptBlock(subkeys, dst, src, false) 36 // Decrypt one block from src into dst, using the subkeys. 37 func decryptBlock(subkeys []uint64, dst, src []byte) { 38 cryptBlock(subkeys, dst, src, true) 206 // creates 16 56-bit subkeys from the original ke [all...] |
cipher.go | 23 subkeys [16]uint64 39 func (c *desCipher) Encrypt(dst, src []byte) { encryptBlock(c.subkeys[:], dst, src) } 41 func (c *desCipher) Decrypt(dst, src []byte) { decryptBlock(c.subkeys[:], dst, src) }
|
des_test.go | [all...] |
/external/boringssl/src/crypto/fipsmodule/des/ |
internal.h | 198 (u) = (R) ^ (ks)->subkeys[S][0]; \ 199 (t) = (R) ^ (ks)->subkeys[S][1]; \
|
des.c | 345 schedule->subkeys[i][0] = ROTATE(t2, 30) & 0xffffffffL; 348 schedule->subkeys[i][1] = ROTATE(t2, 26) & 0xffffffffL;
|
/external/boringssl/src/include/openssl/ |
des.h | 75 uint32_t subkeys[16][2]; member in struct:DES_ks
|
/prebuilts/go/darwin-x86/src/internal/syscall/windows/registry/ |
key.go | 92 // ReadSubKeyNames returns the names of subkeys of key k.
|
/prebuilts/go/linux-x86/src/internal/syscall/windows/registry/ |
key.go | 92 // ReadSubKeyNames returns the names of subkeys of key k.
|