Revision 23095,
686 bytes
checked in by ghudson, 16 years ago
(diff) |
Import the moira package from SIPB Debathena.
|
Line | |
---|
1 | /* RSA.H - header file for RSA.C |
---|
2 | */ |
---|
3 | |
---|
4 | /* Copyright (C) RSA Laboratories, a division of RSA Data Security, |
---|
5 | Inc., created 1991. All rights reserved. |
---|
6 | */ |
---|
7 | |
---|
8 | int RSAPublicEncrypt PROTO_LIST |
---|
9 | ((unsigned char *, unsigned int *, unsigned char *, unsigned int, |
---|
10 | R_RSA_PUBLIC_KEY *, R_RANDOM_STRUCT *)); |
---|
11 | int RSAPrivateEncrypt PROTO_LIST |
---|
12 | ((unsigned char *, unsigned int *, unsigned char *, unsigned int, |
---|
13 | R_RSA_PRIVATE_KEY *)); |
---|
14 | int RSAPublicDecrypt PROTO_LIST |
---|
15 | ((unsigned char *, unsigned int *, unsigned char *, unsigned int, |
---|
16 | R_RSA_PUBLIC_KEY *)); |
---|
17 | int RSAPrivateDecrypt PROTO_LIST |
---|
18 | ((unsigned char *, unsigned int *, unsigned char *, unsigned int, |
---|
19 | R_RSA_PRIVATE_KEY *)); |
---|
Note: See
TracBrowser
for help on using the repository browser.