X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=decodekey.h;h=ba3027b07fbc58dccb6f773a2332189b0f3954c4;hb=010b333715b8385c78c4bacaf9031e9faed42cfd;hp=f7df5eff7086abc07def2f756a8967f6322aebf8;hpb=5913c95f2c7abf4c3cb06e27d384d80fb4c83547;p=onak.git diff --git a/decodekey.h b/decodekey.h index f7df5ef..ba3027b 100644 --- a/decodekey.h +++ b/decodekey.h @@ -4,6 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: decodekey.h,v 1.2 2003/06/04 20:57:07 noodles Exp $ */ #ifndef __DECODEKEY_H__ @@ -42,4 +44,13 @@ uint64_t sig_keyid(struct openpgp_packet *packet); */ char **keyuids(struct openpgp_publickey *key, char **primary); +/** + * keysubkeys - Takes a key and returns an array of its subkey keyids. + * @key: The key to get the subkeys of. + * + * keysubkeys takes a public key structure and returns an array of the + * subkey keyids for that key. + */ +uint64_t *keysubkeys(struct openpgp_publickey *key); + #endif