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

  /external/openssh/
cipher.h 62 typedef struct CipherContext CipherContext;
65 struct CipherContext {
77 void cipher_init(CipherContext *, Cipher *, const u_char *, u_int,
79 void cipher_crypt(CipherContext *, u_char *, const u_char *, u_int);
80 void cipher_cleanup(CipherContext *);
81 void cipher_set_key_string(CipherContext *, Cipher *, const char *, int);
87 void cipher_get_keyiv(CipherContext *, u_char *, u_int);
88 void cipher_set_keyiv(CipherContext *, u_char *);
89 int cipher_get_keyiv_len(const CipherContext *);
    [all...]
cipher.c 206 cipher_init(CipherContext *cc, Cipher *cipher,
279 cipher_crypt(CipherContext *cc, u_char *dest, const u_char *src, u_int len)
288 cipher_cleanup(CipherContext *cc)
300 cipher_set_key_string(CipherContext *cc, Cipher *cipher,
317 * Exports an IV from the CipherContext required to export the key
323 cipher_get_keyiv_len(const CipherContext *cc)
336 cipher_get_keyiv(CipherContext *cc, u_char *iv, u_int len)
370 cipher_set_keyiv(CipherContext *cc, u_char *iv)
409 cipher_get_keycontext(const CipherContext *cc, u_char *dat)
424 cipher_set_keycontext(CipherContext *cc, u_char *dat
    [all...]
authfile.c 91 CipherContext ciphercontext; local
150 cipher_set_key_string(&ciphercontext, cipher, passphrase,
152 cipher_crypt(&ciphercontext, cp,
154 cipher_cleanup(&ciphercontext);
155 memset(&ciphercontext, 0, sizeof(ciphercontext));
423 CipherContext ciphercontext; local
474 cipher_set_key_string(&ciphercontext, cipher, passphrase
    [all...]
packet.c 117 CipherContext receive_context;
120 CipherContext send_context;
317 * Exports an IV from the CipherContext required to export the key
325 CipherContext *cc;
338 CipherContext *cc;
351 CipherContext *cc;
364 CipherContext *cc;
377 CipherContext *cc;
738 CipherContext *cc;
    [all...]

Completed in 134 milliseconds