about summary refs log tree commit diff stats
path: root/fork.mu
Commit message (Expand)AuthorAgeFilesLines
* 1345Kartik K. Agaram2015-05-111-0/+2
* 1341Kartik K. Agaram2015-05-111-8/+2
* 1298 - better ingredient/product handlingKartik K. Agaram2015-05-071-2/+4
* 1277Kartik K. Agaram2015-05-051-0/+18
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-18/+0
* 578 - switch to non-polymorphic 'print' functionsKartik K. Agaram2015-01-171-2/+2
* 571 - screen primitives take an explicit terminalKartik K. Agaram2015-01-151-2/+2
* 497 - strengthen the concept of 'space'Kartik K. Agaram2015-01-021-2/+2
* 428 - cleanup odds and endsKartik K. Agaram2014-12-141-7/+7
* 403 - 'function' is more clear than 'def'Kartik K. Agaram2014-12-121-2/+2
* 399 - fix mu examplesKartik K. Agaram2014-12-081-2/+2
* 314 - better syntax for functionsKartik K. Agaram2014-11-241-4/+4
* 213 - bring back the fork exampleKartik K. Agaram2014-11-011-0/+18
* 145 - delete random programsKartik K. Agaram2014-10-141-12/+0
* 94 - old multiprocessing experimentKartik K. Agaram2014-10-041-0/+12
#dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#include <glib.h>

#include "pgp/gpg.h"

void p_gpg_init(void) {}
void p_gpg_close(void) {}

GSList* p_gpg_list_keys(void)
{
    return NULL;
}

GHashTable*
p_gpg_fingerprints(void)
{
    return NULL;
}

const char* p_gpg_libver(void)
{
    return NULL;
}

void p_gpg_free_key(ProfPGPKey *key) {}

void p_gpg_verify(const char * const barejid, const char *const sign) {}

char* p_gpg_sign(const char * const str, const char * const fp)
{
    return NULL;
}