Mercurial > pidgin
view libpurple/protocols/zephyr/ZCmpUIDP.c @ 16997:34d9037a228c
RC4 support to libpurple's cipher.c.
applied changes from 16cddf101af9bec7aa7546f67d791389bb82a8c5
through eb65d87cbe206ce460c3647f24e6cc06bb1e83fe
Patch from Nathan Peterson to add RC4 support.
applied changes from eb65d87cbe206ce460c3647f24e6cc06bb1e83fe
through c27d5698b3cb75df5ec296031e29e46440ac2303
Add rc4_get_key_size.
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Thu, 10 May 2007 02:58:35 +0000 |
parents | 5fe8042783c1 |
children | a8cc50c2279f |
line wrap: on
line source
/* This file is part of the Project Athena Zephyr Notification System. * It contains source for the ZCompareUIDPred function. * * Created by: Robert French * * Copyright (c) 1987 by the Massachusetts Institute of Technology. * For copying and distribution information, see the file * "mit-copyright.h". */ #include "internal.h" int ZCompareUIDPred(notice, uid) ZNotice_t *notice; void *uid; { return (ZCompareUID(¬ice->z_uid, (ZUnique_Id_t *) uid)); } int ZCompareMultiUIDPred(notice, uid) ZNotice_t *notice; void *uid; { return (ZCompareUID(¬ice->z_multiuid, (ZUnique_Id_t *) uid)); }