Advertising
advertising
related pastes to tag 'encryption'
- 1483157 - ALL Manual Packing methods I've : encryption crypt manual exe packing xor undetected
-
- ---- ALL Manual Packing methods I've ever found ----
- underlines @ hackhound.org
- Einfache XOR methoden:
- [by: underlines]
- ----------------------
- 991648 - Encryption / Decryption: c source encryption ice_dragon
-
- // Basic Encryption / Decryption
- // By Ice_Dragon
- #include<iostream.h>
- int main()
- {
- int e;
- 948093 - FiSH encryption module for irssi: irssi encryption fish v.099 fish.h
-
- #include "cfgopts.h"
- #include "DH1080.h"
- #include <time.h>
- #include <unistd.h>
- // compile hack for irssi/src/common.h
- #ifndef UOFF_T_INT
- 948090 - FiSH encryption module for irssi: irssi encryption fish v.099 fish.c
-
- // FiSH encryption module for irssi, v0.99
- #include "FiSH.h"
- // encrypt a message and store in bf_dest (using key for target)
- static int FiSH_encrypt(char *msg_ptr, const char *target, char *bf_dest)
- 948082 - Diffie-Hellman 1080bit Key-excha: irc irssi key encryption exchange dh1080 diffie-hellman 1080bit
-
- // New Diffie-Hellman 1080bit Key-exchange
- /* For Diffie-Hellman key-exchange a 1080bit germain prime is used, the
- generator g=2 renders a field Fp from 1 to p-1. Therefore breaking it
- means to solve a discrete logarithm problem with no less than 1080bit.
- Base64 format is used to send the public keys over IRC.
- 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
- }
- 686830 - Encryption Algorithm: encryption algorithm
-
- import java.io.*;
- public class bitwiseTests {
- try {