HomeSort by relevance Sort by last modified time
    Searched refs:rsa_public_encrypt (Results 1 - 4 of 4) sorted by null

  /external/openssh/
rsa.h 22 void rsa_public_encrypt(BIGNUM *, BIGNUM *, RSA *);
rsa.c 75 rsa_public_encrypt(BIGNUM *out, BIGNUM *in, RSA *key) function
81 fatal("rsa_public_encrypt() exponent too small or not odd");
90 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
92 fatal("rsa_public_encrypt() failed");
95 fatal("rsa_public_encrypt: BN_bin2bn failed");
sshconnect1.c 596 rsa_public_encrypt(key, key, server_key->rsa);
597 rsa_public_encrypt(key, key, host_key->rsa);
608 rsa_public_encrypt(key, key, host_key->rsa);
609 rsa_public_encrypt(key, key, server_key->rsa);
auth-rsa.c 143 rsa_public_encrypt(encrypted_challenge, challenge, key->rsa);

Completed in 1257 milliseconds