mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
common: New module to compute openpgp fingerprints
* common/openpgp-fpr.c: New. * common/Makefile.am (common_sources): Add it. -- This function is targeted to handle keys on smartcards. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
283ccbc824
commit
2f2bdd9c08
3 changed files with 304 additions and 0 deletions
|
@ -213,6 +213,26 @@ compress_algo_t;
|
|||
/*-- openpgp-s2k.c --*/
|
||||
unsigned char encode_s2k_iterations (int iterations);
|
||||
|
||||
/*-- openpgp-fpr.c --*/
|
||||
gpg_error_t compute_openpgp_fpr (int keyversion, int pgpalgo,
|
||||
unsigned long timestamp,
|
||||
gcry_buffer_t *iov, int iovcnt,
|
||||
unsigned char *result,
|
||||
unsigned int *r_resultlen);
|
||||
gpg_error_t compute_openpgp_fpr_rsa (int keyversion,
|
||||
unsigned long timestamp,
|
||||
const unsigned char *m, unsigned int mlen,
|
||||
const unsigned char *e, unsigned int elen,
|
||||
unsigned char *result,
|
||||
unsigned int *r_resultlen);
|
||||
gpg_error_t compute_openpgp_fpr_ecc (int keyversion,
|
||||
unsigned long timestamp,
|
||||
const char *curvename, int for_encryption,
|
||||
const unsigned char *q, unsigned int qlen,
|
||||
const unsigned char *kdf,
|
||||
unsigned int kdflen,
|
||||
unsigned char *result,
|
||||
unsigned int *r_resultlen);
|
||||
|
||||
/*-- openpgp-oid.c --*/
|
||||
pubkey_algo_t map_gcry_pk_to_openpgp (enum gcry_pk_algos algo);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue