Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'encryption'

1483157 - ALL Manual Packing methods I've : encryption crypt manual exe packing xor undetected
  1. ---- ALL Manual Packing methods I've ever found ----
  2. underlines @ hackhound.org
  3.  
  4.  
  5. Einfache XOR methoden:
  6. [by: underlines]
  7. ----------------------
  8.  
  9.  
991648 - Encryption / Decryption: c source encryption ice_dragon
  1. // Basic Encryption / Decryption
  2. // By Ice_Dragon
  3.  
  4. #include<iostream.h>
  5.  
  6.   int main()
  7.   {
  8.    int e;
  9.  
948093 - FiSH encryption module for irssi: irssi encryption fish v.099 fish.h
  1. #include "cfgopts.h"
  2. #include "DH1080.h"
  3.  
  4. #include <time.h>
  5. #include <unistd.h>
  6.  
  7. // compile hack for irssi/src/common.h
  8. #ifndef UOFF_T_INT
  9.  
948090 - FiSH encryption module for irssi: irssi encryption fish v.099 fish.c
  1. // FiSH encryption module for irssi, v0.99
  2.  
  3. #include "FiSH.h"
  4.  
  5.  
  6.  
  7. // encrypt a message and store in bf_dest (using key for target)
  8. static int FiSH_encrypt(char *msg_ptr, const char *target, char *bf_dest)
  9.  
948082 - Diffie-Hellman 1080bit Key-excha: irc irssi key encryption exchange dh1080 diffie-hellman 1080bit
  1. // New Diffie-Hellman 1080bit Key-exchange
  2.  
  3. /* For Diffie-Hellman key-exchange a 1080bit germain prime is used, the
  4. generator g=2 renders a field Fp from 1 to p-1. Therefore breaking it
  5. means to solve a discrete logarithm problem with no less than 1080bit.
  6.  
  7. Base64 format is used to send the public keys over IRC.
  8.  
  9.  
  10.  
948071 - Blowfish Encryption C++: c encryption encrypt decrypt blowfish
  1. #include "blowfish.h"
  2.  
  3. /* #define S(x,i) (bf_S[i][x.w.byte##i]) */
  4. #define S0(x) (bf_S[0][x.w.byte0])
  5. #define S1(x) (bf_S[1][x.w.byte1])
  6. #define S2(x) (bf_S[2][x.w.byte2])
  7. #define S3(x) (bf_S[3][x.w.byte3])
  8. #define bf_F(x) (((S0(x) + S1(x)) ^ S2(x)) + S3(x))
  9.  
948061 - Blowfish Encryption for mIRC: mirc messages encryption encrypt decrypt addon blowfish
  1. on *:input:#3nvisi0n:{ var %win_t = $window($active).type
  2.   if (%win_t == chat) {
  3.     if ($chat($nick).status != active) goto encbeep
  4.   }
  5.   elseif ((%win_t == channel) || (%win_t == query)) {
  6.  
  7.     if (!$server) bf.halt /enc: Not connected to server
  8.   }
  9.  
686830 - Encryption Algorithm: encryption algorithm
  1. import java.io.*;
  2.  
  3. public class bitwiseTests {
  4.        
  5.         public static void main(String[] args) {
  6.                 try {
  7.                         ByteArrayOutputStream ba = new ByteArrayOutputStream();
  8.                         File fiel = new File(args[0]);
  9.  
worth-right