Advertising
advertising
related pastes to tag 'blowfish'
- 948071 - Blowfish Encryption C++: c encryption encrypt decrypt blowfish
-
- #include "blowfish.h"
- /* #define S(x,i) (bf_S[i][x.w.byte##i]) */
- #define S0(x) (bf_S[0][x.w.byte0])
- #define S1(x) (bf_S[1][x.w.byte1])
- #define S2(x) (bf_S[2][x.w.byte2])
- #define S3(x) (bf_S[3][x.w.byte3])
- #define bf_F(x) (((S0(x) + S1(x)) ^ S2(x)) + S3(x))
- 948061 - Blowfish Encryption for mIRC: mirc messages encryption encrypt decrypt addon blowfish
-
- on *:input:#3nvisi0n:{ var %win_t = $window($active).type
- if (%win_t == chat) {
- if ($chat($nick).status != active) goto encbeep
- }
- elseif ((%win_t == channel) || (%win_t == query)) {
- if (!$server) bf.halt /enc: Not connected to server
- }