RSA.PAS
Upload User: master
Upload Date: 2007-01-06
Package Size: 17k
Code Size: 4k
Development Platform:

Pascal

  1. {License, info, etc
  2.  ------------------
  3. This implementation is made by Walied Othman, to contact me
  4. mail to Walied.Othman@Student.KULeuven.ac.be or
  5. Triade@ace.Ulyssis.Student.KULeuven.ac.be, or ICQ me on 20388046.
  6. If you 're going to use these implementations, at least mention my
  7. name or something and notify me so I may even put a link on my page.
  8. This implementation is freeware and according to the coderpunks'
  9. manifesto it should remain so, so don 't use these implementations
  10. in commercial applications.  Encryption, as a tool to ensure privacy
  11. should be free and accessible for anyone.  If you plan to use these
  12. implementations in a commercial application, contact me before
  13. doing so.  If any algorithm is patented in your country, you should
  14. acquire a license before using this software.  Modified versions of this
  15. software must remain in the public domain and must contain an
  16. acknowledgement of the original author (=me).
  17. This implementaion is available at
  18. http://ace.ulyssis.student.kuleuven.ac.be/~triade/GInt/index.htm
  19. copyright 1999, Walied Othman
  20. This header may not be removed.}
  21. Unit RSA;
  22. Interface
  23. Uses Windows, SysUtils, Controls, GInt;
  24. Procedure RSAEncrypt(P : String; exp, modb : TGInt; Var E : String);
  25. Procedure RSADecrypt(E : String; exp, modb : TGInt; Var D : String);
  26. Implementation
  27. {$H+}
  28. // Encrypt a string with the RSA algorithm, P^exp mod modb = E
  29. Procedure RSAEncrypt(P : String; exp, modb : TGInt; Var E : String);
  30. Var
  31.    i, j, modbits : longint;
  32.    PGInt, temp : TGInt;
  33.    tempstr1, tempstr2, tempstr3 : String;
  34. Begin
  35.    GInttobinstr(modb, tempstr1);
  36.    modbits := length(tempstr1);
  37.    convert8to1bit(P, tempstr1);
  38.    tempstr1 := '111' + tempstr1;
  39.    j := modbits - 1;
  40.    While (length(tempstr1) Mod j) <> 0 Do tempstr1 := '0' + tempstr1;
  41.    j := length(tempstr1) Div (modbits - 1);
  42.    tempstr2 := '';
  43.    For i := 1 To j Do
  44.    Begin
  45.       tempstr3 := copy(tempstr1, 1, modbits - 1);
  46.       While copy(tempstr3, 1, 1) = '0' Do delete(tempstr3, 1, 1);
  47.       binstrtoGInt(tempstr3, PGInt);
  48.       delete(tempstr1, 1, modbits - 1);
  49.       GIntModExp(PGInt, exp, modb, temp);
  50.       GIntDestroy(PGInt);
  51.       tempstr3 := '';
  52.       GInttobinstr(temp, tempstr3);
  53.       While (length(tempstr3) Mod modbits) <> 0 Do tempstr3 := '0' + tempstr3;
  54.       tempstr2 := tempstr2 + tempstr3;
  55.       GIntdestroy(temp);
  56.    End;
  57.    While Not (tempstr2[1] = '1') Do delete(tempstr2, 1, 1);
  58.    Convert1to8bit(tempstr2, E);
  59. End;
  60. // Decrypt a string with the RSA algorithm, E^exp mod modb = D
  61. Procedure RSADecrypt(E : String; exp, modb : TGInt; Var D : String);
  62. Var
  63.    i, j, modbits : longint;
  64.    EGInt, temp : TGInt;
  65.    tempstr1, tempstr2, tempstr3 : String;
  66. Begin
  67.    GInttobinstr(modb, tempstr1);
  68.    modbits := length(tempstr1);
  69.    convert8to1bit(E, tempstr1);
  70.    While copy(tempstr1, 1, 1) = '0' Do delete(tempstr1, 1, 1);
  71.    While (length(tempstr1) Mod modbits) <> 0 Do tempstr1 := '0' + tempstr1;
  72.    j := length(tempstr1) Div modbits;
  73.    tempstr2 := '';
  74.    For i := 1 To j Do
  75.    Begin
  76.       tempstr3 := copy(tempstr1, 1, modbits);
  77.       While copy(tempstr3, 1, 1) = '0' Do delete(tempstr3, 1, 1);
  78.       binstrtoGInt(tempstr3, EGInt);
  79.       delete(tempstr1, 1, modbits);
  80.       GIntModExp(EGInt, exp, modb, temp);
  81.       GIntDestroy(EGInt);
  82.       tempstr3 := '';
  83.       GInttobinstr(temp, tempstr3);
  84.       While (length(tempstr3) Mod (modbits - 1)) <> 0 Do tempstr3 := '0' + tempstr3;
  85.       tempstr2 := tempstr2 + tempstr3;
  86.       GIntdestroy(temp);
  87.    End;
  88.    While Not (copy(tempstr2, 1, 3) = '111') Do delete(tempstr2, 1, 1);
  89.    delete(tempstr2, 1, 3);
  90.    Convert1to8bit(tempstr2, D);
  91. End;
  92. End.