Not yet published.
[ image from ] RSA is an algorithm based on public -key encryption. It was invented by Ron Rivest, Adi Shamir and Len Adleman in 1987. This can be used for public key encryption and digital signatures as well. Resources : http://www.di-mgt.com.au/rsa_alg.html C implementation of RSA Watch RSA video demonstration here or you can download it. Read Full Story
Not yet published.
Download as word document Part A 1. What is a distributed system? 2. Differentiate DS and network system ? 3. Notes on middleware ? 4. Explain about security challenges in DS ? 5. Define transparency and openness in DS ? 6. Explain different types of transparency ? 7. Define spontaneous networking ? 8. Explain event ordering with example ? 9. write notes on tunneling and mobile ip ? 10. Explain different types of failure and various methods to handle failure ? 11. explain network issues of Ds... Read Full Story
Not yet published.
Download as ".c" file http://www.ziddu.com/download/7938911/poly_clipping.zip.html
/* Polygon Clipping*/
#include
#include
int n,p,x,y,i,j;
int xwmin,ywmin,xwmax,ywmax;
int x1,y1,x2,y2,xmax,ymax;
float m;
char flag;
float dy,dx;
main()
{
int gd,gm;
int a[10][10],b[10][10],c[10][10],d[10][10],e[10][10];
detectgraph(&gd,&gm);
initgraph(&gd,&gm,"e:\\tc30\\bgi");
printf("\n\n\tenter the no. of edges of polygon : ");
scanf("%d",&n);
printf("\n\n\tenter the cordinates of... Read Full Story
Not yet published.
Download as ".c" file http://www.ziddu.com/download/7938820/line_clipping.zip.html /*Line clipping #include #include #include typedef unsigned int outcode; enum { TOP=0x1, BOTTOM=0x2, RIGHT=0x4, LEFT=0x8 }; void lineclip(x0,y0,x1,y1,xwmin,ywmin,xwmax,ywmax ) float x0,y0,x1,y1,xwmin,ywmin,xwmax,ywmax; { int gd,gm; outcode code0,code1,codeout; int accept = 0, done=0; code0 = calcode(x0,y0,xwmin,ywmin,xwmax,ywmax); code1 = calcode(x1,y1,xwmin,ywmin,xwmax,ywmax); do{ if(!(code0 | code1)) { accept... Read Full Story
Not yet published.
Download as ".c" file http://www.ziddu.com/download/7938660/fan.zip.html /*Simulation of a fan */ #include #include #include #include #include const int midx=640/2,midy=480/2; void drawfin(int angle) { setcolor(BLUE); if(angle==0) { pieslice(midx,midy,0,30,35); } else { pieslice(midx,midy,(angle+30),(angle+30),35); pieslice(midx,midy,(angle+90),(angle+90+60),35); pieslice(midx,midy,(angle+270-60),(angle+270),35); pieslice(midx,midy,(angle+360-60),(angle+360),35); } } void drawfan(int angle... Read Full Story
Not yet published.
Professor David Pager Department of Information and Computer Sciences, University of Hawai`i at Manoa Website: http://www2.hawaii.edu/~pager/312/ <br><br> Read Full Story
Not yet published.
Prof. Kim Hazelwood Computer Science Department University of Virginia Website: http://www.cs.virginia.edu/kim/courses/cs671/lectures.html <br><br> Read Full Story
Not yet published.
T. K. Prasad Department of Computer Science & Engineering Wright State University Website :http://www.cs.wright.edu/~tkprasad/courses/cs466/cs466.html <br><br> Read Full Story
Not yet published.
Lectures by Petros Drineas Associate Professor Computer Science Department Rensselaer Polytechnic Institute Website : http://www.cs.rpi.edu/~drinep/modcomp <br><br> Read Full Story
Not yet published.
Computer Graphics by Dr. Sukhendu das, Dept. of Computer Science and Engineering, IIT Madras Lecture 1 Download Lecture 2 Download Read Full Story

