Example #1
0
 public unsafe void closeKey()
 {
     if (ppkey != (byte *)IntPtr.Zero)
     {
         IPriv.closeKey(this);
         handle.Free();
         ppkey = (byte *)IntPtr.Zero;
     }
 }
Example #2
0
 public string verifyText(string src)
 {
     return(IPriv.verifyText(src, this));
 }
Example #3
0
 public string signText(string src)
 {
     return(IPriv.signText(src, this));
 }