[BACK]Return to rsa.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/rsa.h, Revision 1.4

1.1       provos      1: /*
1.3       deraadt     2:  *
                      3:  * rsa.h
                      4:  *
                      5:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      6:  *
                      7:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      8:  *                    All rights reserved
                      9:  *
                     10:  * Created: Fri Mar  3 22:01:06 1995 ylo
                     11:  *
                     12:  * RSA key generation, encryption and decryption.
                     13:  *
1.1       provos     14: */
                     15:
1.4     ! markus     16: /* RCSID("$Id: rsa.h,v 1.3 1999/11/24 00:26:03 deraadt Exp $"); */
1.1       provos     17:
                     18: #ifndef RSA_H
                     19: #define RSA_H
                     20:
                     21: #include <ssl/bn.h>
                     22: #include <ssl/rsa.h>
                     23:
                     24: /* Calls SSL RSA_generate_key, only copies to prv and pub */
1.3       deraadt    25: void    rsa_generate_key(RSA * prv, RSA * pub, unsigned int bits);
1.1       provos     26:
1.4     ! markus     27: /*
        !            28:  * Indicates whether the rsa module is permitted to show messages on the
        !            29:  * terminal.
        !            30:  */
1.2       deraadt    31: void rsa_set_verbose __P((int verbose));
1.1       provos     32:
1.3       deraadt    33: int rsa_alive __P((void));
1.2       deraadt    34:
1.3       deraadt    35: void rsa_public_encrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv));
                     36: void rsa_private_decrypt __P((BIGNUM * out, BIGNUM * in, RSA * prv));
1.1       provos     37:
1.3       deraadt    38: #endif                         /* RSA_H */