Merged silc_1_0_branch to trunk.
[silc.git] / lib / silccrypt / rsa.h
index 6244feff6b474cf4af7dca50daa8d99db100eb91..a697fef493a8c6d51bddfc33d221e5964a6c9d11 100644 (file)
@@ -2,15 +2,14 @@
 
   rsa.h
 
-  Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
+  Author: Pekka Riikonen <priikone@silcnet.org>
 
-  Copyright (C) 1997 - 2000 Pekka Riikonen
+  Copyright (C) 1997 - 2003 Pekka Riikonen
 
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
-  the Free Software Foundation; either version 2 of the License, or
-  (at your option) any later version.
-  
+  the Free Software Foundation; version 2 of the License.
+
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #ifndef RSA_H
 #define RSA_H
 
-#include "rsa_internal.h"
-
-/* Data context for RSA */
-typedef struct {
-  SilcInt src;
-  SilcInt dst;
-  SilcInt exp;
-  SilcInt mod;
-} RsaDataContext;
-
-RsaDataContext *silc_rsa_data_context;
-
 /*
  * SILC PKCS API for RSA
  */
@@ -44,12 +31,15 @@ SILC_PKCS_API_GET_PRIVATE_KEY(rsa);
 SILC_PKCS_API_SET_PUBLIC_KEY(rsa);
 SILC_PKCS_API_SET_PRIVATE_KEY(rsa);
 SILC_PKCS_API_CONTEXT_LEN(rsa);
-SILC_PKCS_API_DATA_CONTEXT_LEN(rsa);
-SILC_PKCS_API_SET_ARG(rsa);
 SILC_PKCS_API_ENCRYPT(rsa);
 SILC_PKCS_API_DECRYPT(rsa);
 SILC_PKCS_API_SIGN(rsa);
 SILC_PKCS_API_VERIFY(rsa);
 
+SILC_PKCS_API_ENCRYPT(pkcs1);
+SILC_PKCS_API_DECRYPT(pkcs1);
+SILC_PKCS_API_SIGN(pkcs1);
+SILC_PKCS_API_VERIFY(pkcs1);
+
 
 #endif