help… implements algorithm VEA

salmandia

New Member
i want to encrypt and decrypt video streaming using algorithm VEA in JSP.here is algorithm VEA to encrypt and decrypt :\[code\]Algoritma VEA( int m,/*key length*/ bit key[m], /*secret key*/ char *flv_video, /*input file*/ char *vea_flv_video) /*output file*/ int n; /*buffer size*/ bit video[n]; /*input buffer*/ file in; /*for input*/ file out; /*for output*/ int k,l,i = 0; in = open(flv_video,
 
Back
Top