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 'encrypt'

1189108 - DataEncrypt Class: data class encrypt space
  1. # Class
  2. #---------
  3. class DataEncrypt
  4.   #---------
  5.   # the data
  6.   attr_accessor :data
  7.   attr_accessor :encrypt_key
  8.   #---------
  9.  
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.  
899684 - Fluor: vim macro gpg gnupg encrypt decrypt automatic
  1. " Use GnuPG to open a .gpg file
  2. augroup asc
  3. au!
  4. au BufReadPre,FileReadPre *.asc set viminfo=
  5. au BufReadPre,FileReadPre *.asc set noswapfile
  6. au BufReadPost *.asc :%!gpg -q -d
  7. au BufReadPost *.asc | redraw
  8. au BufWritePre *.asc :%!gpg --default-recipient-self -q -e -a
  9.  
fantasy-obligation
fantasy-obligation
fantasy-obligation