Advertising
advertising
related pastes to tag 'encrypt'
- 1189108 - DataEncrypt Class: data class encrypt space
-
- # Class
- #---------
- class DataEncrypt
- #---------
- # the data
- attr_accessor :data
- attr_accessor :encrypt_key
- #---------
- 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
- }
- 899684 - Fluor: vim macro gpg gnupg encrypt decrypt automatic
-
- " Use GnuPG to open a .gpg file
- augroup asc
- au!
- au BufReadPre,FileReadPre *.asc set viminfo=
- au BufReadPre,FileReadPre *.asc set noswapfile
- au BufReadPost *.asc :%!gpg -q -d
- au BufReadPost *.asc | redraw
- au BufWritePre *.asc :%!gpg --default-recipient-self -q -e -a