Home | History | Annotate | Download | only in pelican

Lines Matching defs:pel

33    pelican_state *pel;
36 pel = XMALLOC(sizeof(*pel));
37 if (pel == NULL) {
41 if ((err = pelican_init(pel, key, keylen)) != CRYPT_OK) {
42 XFREE(pel);
45 if ((err = pelican_process(pel, in ,inlen)) != CRYPT_OK) {
46 XFREE(pel);
49 err = pelican_done(pel, out);
50 XFREE(pel);