334dab156ea8c97f5ec47cf18c107d4f9c1a31f8
[oweals/gnunet.git] / src / include / gnunet_crypto_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001-2013 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_crypto_lib.h
23  * @brief cryptographic primitives for GNUnet
24  *
25  * @author Christian Grothoff
26  * @author Krista Bennett
27  * @author Gerd Knorr <kraxel@bytesex.org>
28  * @author Ioana Patrascu
29  * @author Tzvetan Horozov
30  *
31  * @defgroup crypto Cryptographic operations
32  * @defgroup hash Hashing and operations on hashes
33  */
34
35 #ifndef GNUNET_CRYPTO_LIB_H
36 #define GNUNET_CRYPTO_LIB_H
37
38 #ifdef __cplusplus
39 extern "C"
40 {
41 #if 0                           /* keep Emacsens' auto-indent happy */
42 }
43 #endif
44 #endif
45
46 /**
47  * @brief A 512-bit hashcode
48  */
49 struct GNUNET_HashCode;
50
51 /**
52  * The identity of the host (wraps the signing key of the peer).
53  */
54 struct GNUNET_PeerIdentity;
55
56 #include "gnunet_common.h"
57 #include "gnunet_scheduler_lib.h"
58 #include <gcrypt.h>
59
60
61 /**
62  * @brief A 512-bit hashcode
63  */
64 struct GNUNET_HashCode
65 {
66   uint32_t bits[512 / 8 / sizeof (uint32_t)];   /* = 16 */
67 };
68
69
70 /**
71  * Maximum length of an ECC signature.
72  * Note: round up to multiple of 8 minus 2 for alignment.
73  */
74 #define GNUNET_CRYPTO_ECC_SIGNATURE_DATA_ENCODING_LENGTH 126
75
76
77 /**
78  * Desired quality level for random numbers.
79  * @ingroup crypto
80  */
81 enum GNUNET_CRYPTO_Quality
82 {
83   /**
84    * No good quality of the operation is needed (i.e.,
85    * random numbers can be pseudo-random).
86    * @ingroup crypto
87    */
88   GNUNET_CRYPTO_QUALITY_WEAK,
89
90   /**
91    * High-quality operations are desired.
92    * @ingroup crypto
93    */
94   GNUNET_CRYPTO_QUALITY_STRONG,
95
96   /**
97    * Randomness for IVs etc. is required.
98    * @ingroup crypto
99    */
100   GNUNET_CRYPTO_QUALITY_NONCE
101 };
102
103
104 /**
105  * @brief length of the sessionkey in bytes (256 BIT sessionkey)
106  */
107 #define GNUNET_CRYPTO_AES_KEY_LENGTH (256/8)
108
109 /**
110  * Length of a hash value
111  */
112 #define GNUNET_CRYPTO_HASH_LENGTH (512/8)
113
114 /**
115  * How many characters (without 0-terminator) are our ASCII-encoded
116  * public keys (ECDSA/EDDSA/ECDHE).
117  */
118 #define GNUNET_CRYPTO_PKEY_ASCII_LENGTH 52
119
120 /**
121  * @brief 0-terminated ASCII encoding of a struct GNUNET_HashCode.
122  */
123 struct GNUNET_CRYPTO_HashAsciiEncoded
124 {
125   unsigned char encoding[104];
126 };
127
128
129 GNUNET_NETWORK_STRUCT_BEGIN
130
131
132 /**
133  * @brief header of what an ECC signature signs
134  *        this must be followed by "size - 8" bytes of
135  *        the actual signed data
136  */
137 struct GNUNET_CRYPTO_EccSignaturePurpose
138 {
139   /**
140    * How many bytes does this signature sign?
141    * (including this purpose header); in network
142    * byte order (!).
143    */
144   uint32_t size GNUNET_PACKED;
145
146   /**
147    * What does this signature vouch for?  This
148    * must contain a GNUNET_SIGNATURE_PURPOSE_XXX
149    * constant (from gnunet_signatures.h).  In
150    * network byte order!
151    */
152   uint32_t purpose GNUNET_PACKED;
153
154 };
155
156
157 /**
158  * @brief an ECC signature using EdDSA.
159  * See https://gnunet.org/ed25519
160  */
161 struct GNUNET_CRYPTO_EddsaSignature
162 {
163
164   /**
165    * R value.
166    */
167   unsigned char r[256 / 8];
168
169   /**
170    * S value.
171    */
172   unsigned char s[256 / 8];
173
174 };
175
176
177
178 /**
179  * @brief an ECC signature using ECDSA
180  */
181 struct GNUNET_CRYPTO_EcdsaSignature
182 {
183
184   /**
185    * R value.
186    */
187   unsigned char r[256 / 8];
188
189   /**
190    * S value.
191    */
192   unsigned char s[256 / 8];
193
194 };
195
196
197 /**
198  * Public ECC key (always for Curve25519) encoded in a format suitable
199  * for network transmission and EdDSA signatures.
200  */
201 struct GNUNET_CRYPTO_EddsaPublicKey
202 {
203   /**
204    * Q consists of an x- and a y-value, each mod p (256 bits), given
205    * here in affine coordinates and Ed25519 standard compact format.
206    */
207   unsigned char q_y[256 / 8];
208
209 };
210
211
212 /**
213  * Public ECC key (always for Curve25519) encoded in a format suitable
214  * for network transmission and ECDSA signatures.
215  */
216 struct GNUNET_CRYPTO_EcdsaPublicKey
217 {
218   /**
219    * Q consists of an x- and a y-value, each mod p (256 bits), given
220    * here in affine coordinates and Ed25519 standard compact format.
221    */
222   unsigned char q_y[256 / 8];
223
224 };
225
226
227 /**
228  * The identity of the host (wraps the signing key of the peer).
229  */
230 struct GNUNET_PeerIdentity
231 {
232   struct GNUNET_CRYPTO_EddsaPublicKey public_key;
233 };
234
235
236 /**
237  * Public ECC key (always for Curve25519) encoded in a format suitable
238  * for network transmission and encryption (ECDH),
239  * See http://cr.yp.to/ecdh.html
240  */
241 struct GNUNET_CRYPTO_EcdhePublicKey
242 {
243   /**
244    * Q consists of an x- and a y-value, each mod p (256 bits), given
245    * here in affine coordinates and Ed25519 standard compact format.
246    */
247   unsigned char q_y[256 / 8];
248 };
249
250
251 /**
252  * Private ECC key encoded for transmission.  To be used only for ECDH
253  * key exchange (ECDHE to be precise).
254  */
255 struct GNUNET_CRYPTO_EcdhePrivateKey
256 {
257   /**
258    * d is a value mod n, where n has at most 256 bits.
259    */
260   unsigned char d[256 / 8];
261
262 };
263
264 /**
265  * Private ECC key encoded for transmission.  To be used only for ECDSA
266  * signatures.
267  */
268 struct GNUNET_CRYPTO_EcdsaPrivateKey
269 {
270   /**
271    * d is a value mod n, where n has at most 256 bits.
272    */
273   unsigned char d[256 / 8];
274
275 };
276
277 /**
278  * Private ECC key encoded for transmission.  To be used only for EdDSA
279  * signatures.
280  */
281 struct GNUNET_CRYPTO_EddsaPrivateKey
282 {
283   /**
284    * d is a value mod n, where n has at most 256 bits.
285    */
286   unsigned char d[256 / 8];
287
288 };
289
290
291 /**
292  * @brief type for session keys
293  */
294 struct GNUNET_CRYPTO_SymmetricSessionKey
295 {
296   /**
297    * Actual key for AES.
298    */
299   unsigned char aes_key[GNUNET_CRYPTO_AES_KEY_LENGTH];
300
301   /**
302    * Actual key for TwoFish.
303    */
304   unsigned char twofish_key[GNUNET_CRYPTO_AES_KEY_LENGTH];
305
306 };
307
308 GNUNET_NETWORK_STRUCT_END
309
310 /**
311  * @brief IV for sym cipher
312  *
313  * NOTE: must be smaller (!) in size than the
314  * `struct GNUNET_HashCode`.
315  */
316 struct GNUNET_CRYPTO_SymmetricInitializationVector
317 {
318   unsigned char aes_iv[GNUNET_CRYPTO_AES_KEY_LENGTH / 2];
319
320   unsigned char twofish_iv[GNUNET_CRYPTO_AES_KEY_LENGTH / 2];
321 };
322
323
324 /**
325  * @brief type for (message) authentication keys
326  */
327 struct GNUNET_CRYPTO_AuthKey
328 {
329   unsigned char key[GNUNET_CRYPTO_HASH_LENGTH];
330 };
331
332
333 /**
334  * Size of paillier plain texts and public keys.
335  * Private keys and ciphertexts are twice this size.
336  */
337 #define GNUNET_CRYPTO_PAILLIER_BITS 2048
338
339
340 /**
341  * Paillier public key.
342  */
343 struct GNUNET_CRYPTO_PaillierPublicKey
344 {
345   /**
346    * N value.
347    */
348   unsigned char n[GNUNET_CRYPTO_PAILLIER_BITS / 8];
349 };
350
351
352 /**
353  * Paillier public key.
354  */
355 struct GNUNET_CRYPTO_PaillierPrivateKey
356 {
357   /**
358    * Lambda-component of the private key.
359    */
360   unsigned char lambda[GNUNET_CRYPTO_PAILLIER_BITS / 8];
361   /**
362    * Mu-component of the private key.
363    */
364   unsigned char mu[GNUNET_CRYPTO_PAILLIER_BITS / 8];
365 };
366
367
368 /**
369  * Paillier ciphertext.
370  */
371 struct GNUNET_CRYPTO_PaillierCiphertext
372 {
373   /**
374    * Guaranteed minimum number of homomorphic operations with this ciphertext,
375    * in network byte order (NBO).
376    */
377   int32_t remaining_ops GNUNET_PACKED;
378
379   /**
380    * The bits of the ciphertext.
381    */
382   unsigned char bits[GNUNET_CRYPTO_PAILLIER_BITS * 2 / 8];
383 };
384
385
386 /* **************** Functions and Macros ************* */
387
388 /**
389  * @ingroup crypto
390  * Seed a weak random generator. Only #GNUNET_CRYPTO_QUALITY_WEAK-mode generator
391  * can be seeded.
392  *
393  * @param seed the seed to use
394  */
395 void
396 GNUNET_CRYPTO_seed_weak_random (int32_t seed);
397
398
399 /**
400  * Perform an incremental step in a CRC16 (for TCP/IP) calculation.
401  *
402  * @param sum current sum, initially 0
403  * @param buf buffer to calculate CRC over (must be 16-bit aligned)
404  * @param len number of bytes in @a buf, must be multiple of 2
405  * @return updated crc sum (must be subjected to #GNUNET_CRYPTO_crc16_finish to get actual crc16)
406  */
407 uint32_t
408 GNUNET_CRYPTO_crc16_step (uint32_t sum, const void *buf, size_t len);
409
410
411 /**
412  * Convert results from GNUNET_CRYPTO_crc16_step to final crc16.
413  *
414  * @param sum cummulative sum
415  * @return crc16 value
416  */
417 uint16_t
418 GNUNET_CRYPTO_crc16_finish (uint32_t sum);
419
420
421 /**
422  * @ingroup hash
423  * Calculate the checksum of a buffer in one step.
424  *
425  * @param buf buffer to calculate CRC over (must be 16-bit aligned)
426  * @param len number of bytes in @a buf, must be multiple of 2
427  * @return crc16 value
428  */
429 uint16_t
430 GNUNET_CRYPTO_crc16_n (const void *buf, size_t len);
431
432
433 /**
434  * @ingroup hash
435  * Compute the CRC32 checksum for the first len
436  * bytes of the buffer.
437  *
438  * @param buf the data over which we're taking the CRC
439  * @param len the length of the buffer @a buf in bytes
440  * @return the resulting CRC32 checksum
441  */
442 int32_t
443 GNUNET_CRYPTO_crc32_n (const void *buf, size_t len);
444
445
446 /**
447  * @ingroup crypto
448  * Fill block with a random values.
449  *
450  * @param mode desired quality of the random number
451  * @param buffer the buffer to fill
452  * @param length buffer length
453  */
454 void
455 GNUNET_CRYPTO_random_block (enum GNUNET_CRYPTO_Quality mode, void *buffer, size_t length);
456
457 /**
458  * @ingroup crypto
459  * Produce a random value.
460  *
461  * @param mode desired quality of the random number
462  * @param i the upper limit (exclusive) for the random number
463  * @return a random value in the interval [0,@a i) (exclusive).
464  */
465 uint32_t
466 GNUNET_CRYPTO_random_u32 (enum GNUNET_CRYPTO_Quality mode, uint32_t i);
467
468
469 /**
470  * @ingroup crypto
471  * Random on unsigned 64-bit values.
472  *
473  * @param mode desired quality of the random number
474  * @param max value returned will be in range [0,@a max) (exclusive)
475  * @return random 64-bit number
476  */
477 uint64_t
478 GNUNET_CRYPTO_random_u64 (enum GNUNET_CRYPTO_Quality mode, uint64_t max);
479
480
481 /**
482  * @ingroup crypto
483  * Get an array with a random permutation of the
484  * numbers 0...n-1.
485  * @param mode #GNUNET_CRYPTO_QUALITY_STRONG if the strong (but expensive) PRNG should be used,
486  *             #GNUNET_CRYPTO_QUALITY_WEAK or #GNUNET_CRYPTO_QUALITY_NONCE otherwise
487  * @param n the size of the array
488  * @return the permutation array (allocated from heap)
489  */
490 unsigned int *
491 GNUNET_CRYPTO_random_permute (enum GNUNET_CRYPTO_Quality mode, unsigned int n);
492
493
494 /**
495  * @ingroup crypto
496  * Create a new random session key.
497  *
498  * @param key key to initialize
499  */
500 void
501 GNUNET_CRYPTO_symmetric_create_session_key (struct GNUNET_CRYPTO_SymmetricSessionKey *key);
502
503
504 /**
505  * @ingroup crypto
506  * Encrypt a block using a symmetric sessionkey.
507  *
508  * @param block the block to encrypt
509  * @param size the size of the @a block
510  * @param sessionkey the key used to encrypt
511  * @param iv the initialization vector to use, use INITVALUE
512  *        for streams.
513  * @return the size of the encrypted block, -1 for errors
514  */
515 ssize_t
516 GNUNET_CRYPTO_symmetric_encrypt (const void *block, size_t size,
517                                  const struct GNUNET_CRYPTO_SymmetricSessionKey *sessionkey,
518                                  const struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
519                                  void *result);
520
521
522 /**
523  * @ingroup crypto
524  * Decrypt a given block using a symmetric sessionkey.
525  *
526  * @param block the data to decrypt, encoded as returned by encrypt
527  * @param size how big is the block?
528  * @param sessionkey the key used to decrypt
529  * @param iv the initialization vector to use
530  * @param result address to store the result at
531  * @return -1 on failure, size of decrypted block on success
532  */
533 ssize_t
534 GNUNET_CRYPTO_symmetric_decrypt (const void *block, size_t size,
535                                  const struct GNUNET_CRYPTO_SymmetricSessionKey *sessionkey,
536                                  const struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
537                                  void *result);
538
539
540 /**
541  * @ingroup crypto
542  * @brief Derive an IV
543  * @param iv initialization vector
544  * @param skey session key
545  * @param salt salt for the derivation
546  * @param salt_len size of the @a salt
547  * @param ... pairs of void * & size_t for context chunks, terminated by NULL
548  */
549 void
550 GNUNET_CRYPTO_symmetric_derive_iv (struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
551                                    const struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
552                                    const void *salt,
553                                    size_t salt_len, ...);
554
555
556 /**
557  * @brief Derive an IV
558  * @param iv initialization vector
559  * @param skey session key
560  * @param salt salt for the derivation
561  * @param salt_len size of the @a salt
562  * @param argp pairs of void * & size_t for context chunks, terminated by NULL
563  */
564 void
565 GNUNET_CRYPTO_symmetric_derive_iv_v (struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
566                                      const struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
567                                      const void *salt,
568                                      size_t salt_len,
569                                      va_list argp);
570
571
572 /**
573  * @ingroup hash
574  * Convert hash to ASCII encoding.
575  * @param block the hash code
576  * @param result where to store the encoding (struct GNUNET_CRYPTO_HashAsciiEncoded can be
577  *  safely cast to char*, a '\\0' termination is set).
578  */
579 void
580 GNUNET_CRYPTO_hash_to_enc (const struct GNUNET_HashCode * block,
581                            struct GNUNET_CRYPTO_HashAsciiEncoded *result);
582
583
584 /**
585  * @ingroup hash
586  * Convert ASCII encoding back to a 'struct GNUNET_HashCode'
587  *
588  * @param enc the encoding
589  * @param enclen number of characters in @a enc (without 0-terminator, which can be missing)
590  * @param result where to store the hash code
591  * @return #GNUNET_OK on success, #GNUNET_SYSERR if result has the wrong encoding
592  */
593 int
594 GNUNET_CRYPTO_hash_from_string2 (const char *enc, size_t enclen,
595                                  struct GNUNET_HashCode *result);
596
597
598 /**
599  * @ingroup hash
600  * Convert ASCII encoding back to `struct GNUNET_HashCode`
601  *
602  * @param enc the encoding
603  * @param result where to store the hash code
604  * @return #GNUNET_OK on success, #GNUNET_SYSERR if result has the wrong encoding
605  */
606 #define GNUNET_CRYPTO_hash_from_string(enc, result) \
607   GNUNET_CRYPTO_hash_from_string2 (enc, strlen(enc), result)
608
609
610 /**
611  * @ingroup hash
612  *
613  * Compute the distance between 2 hashcodes.  The
614  * computation must be fast, not involve @a a[0] or @a a[4] (they're used
615  * elsewhere), and be somewhat consistent. And of course, the result
616  * should be a positive number.
617  *
618  * @param a some hash code
619  * @param b some hash code
620  * @return number between 0 and UINT32_MAX
621  */
622 uint32_t
623 GNUNET_CRYPTO_hash_distance_u32 (const struct GNUNET_HashCode *a,
624                                  const struct GNUNET_HashCode *b);
625
626
627 /**
628  * @ingroup hash
629  * Compute hash of a given block.
630  *
631  * @param block the data to hash
632  * @param size size of the @a block
633  * @param ret pointer to where to write the hashcode
634  */
635 void
636 GNUNET_CRYPTO_hash (const void *block,
637                     size_t size,
638                     struct GNUNET_HashCode *ret);
639
640
641 /**
642  * Context for cummulative hashing.
643  */
644 struct GNUNET_HashContext;
645
646
647 /**
648  * Start incremental hashing operation.
649  *
650  * @return context for incremental hash computation
651  */
652 struct GNUNET_HashContext *
653 GNUNET_CRYPTO_hash_context_start (void);
654
655
656 /**
657  * Add data to be hashed.
658  *
659  * @param hc cummulative hash context
660  * @param buf data to add
661  * @param size number of bytes in @a buf
662  */
663 void
664 GNUNET_CRYPTO_hash_context_read (struct GNUNET_HashContext *hc,
665                          const void *buf,
666                          size_t size);
667
668
669 /**
670  * Finish the hash computation.
671  *
672  * @param hc hash context to use, is freed in the process
673  * @param r_hash where to write the latest / final hash code
674  */
675 void
676 GNUNET_CRYPTO_hash_context_finish (struct GNUNET_HashContext *hc,
677                            struct GNUNET_HashCode *r_hash);
678
679
680 /**
681  * Abort hashing, do not bother calculating final result.
682  *
683  * @param hc hash context to destroy
684  */
685 void
686 GNUNET_CRYPTO_hash_context_abort (struct GNUNET_HashContext *hc);
687
688
689 /**
690  * @ingroup hash
691  * Calculate HMAC of a message (RFC 2104)
692  *
693  * @param key secret key
694  * @param plaintext input plaintext
695  * @param plaintext_len length of @a plaintext
696  * @param hmac where to store the hmac
697  */
698 void
699 GNUNET_CRYPTO_hmac (const struct GNUNET_CRYPTO_AuthKey *key,
700                     const void *plaintext, size_t plaintext_len,
701                     struct GNUNET_HashCode * hmac);
702
703
704 /**
705  * Function called once the hash computation over the
706  * specified file has completed.
707  *
708  * @param cls closure
709  * @param res resulting hash, NULL on error
710  */
711 typedef void (*GNUNET_CRYPTO_HashCompletedCallback) (void *cls,
712                                                      const struct GNUNET_HashCode *res);
713
714
715 /**
716  * Handle to file hashing operation.
717  */
718 struct GNUNET_CRYPTO_FileHashContext;
719
720
721 /**
722  * @ingroup hash
723  * Compute the hash of an entire file.
724  *
725  * @param priority scheduling priority to use
726  * @param filename name of file to hash
727  * @param blocksize number of bytes to process in one task
728  * @param callback function to call upon completion
729  * @param callback_cls closure for @a callback
730  * @return NULL on (immediate) errror
731  */
732 struct GNUNET_CRYPTO_FileHashContext *
733 GNUNET_CRYPTO_hash_file (enum GNUNET_SCHEDULER_Priority priority,
734                          const char *filename, size_t blocksize,
735                          GNUNET_CRYPTO_HashCompletedCallback callback,
736                          void *callback_cls);
737
738
739 /**
740  * Cancel a file hashing operation.
741  *
742  * @param fhc operation to cancel (callback must not yet have been invoked)
743  */
744 void
745 GNUNET_CRYPTO_hash_file_cancel (struct GNUNET_CRYPTO_FileHashContext *fhc);
746
747
748 /**
749  * @ingroup hash
750  * Create a random hash code.
751  *
752  * @param mode desired quality level
753  * @param result hash code that is randomized
754  */
755 void
756 GNUNET_CRYPTO_hash_create_random (enum GNUNET_CRYPTO_Quality mode,
757                                   struct GNUNET_HashCode *result);
758
759
760 /**
761  * @ingroup hash
762  * compute @a result = @a b - @a a
763  *
764  * @param a some hash code
765  * @param b some hash code
766  * @param result set to @a b - @a a
767  */
768 void
769 GNUNET_CRYPTO_hash_difference (const struct GNUNET_HashCode *a,
770                                const struct GNUNET_HashCode *b,
771                                struct GNUNET_HashCode *result);
772
773
774 /**
775  * @ingroup hash
776  * compute @a result = @a a + @a delta
777  *
778  * @param a some hash code
779  * @param delta some hash code
780  * @param result set to @a a + @a delta
781  */
782 void
783 GNUNET_CRYPTO_hash_sum (const struct GNUNET_HashCode *a,
784                         const struct GNUNET_HashCode *delta,
785                         struct GNUNET_HashCode *result);
786
787
788 /**
789  * @ingroup hash
790  * compute result = a ^ b
791  *
792  * @param a some hash code
793  * @param b some hash code
794  * @param result set to @a a ^ @a b
795  */
796 void
797 GNUNET_CRYPTO_hash_xor (const struct GNUNET_HashCode *a,
798                         const struct GNUNET_HashCode *b,
799                         struct GNUNET_HashCode *result);
800
801
802 /**
803  * @ingroup hash
804  * Convert a hashcode into a key.
805  *
806  * @param hc hash code that serves to generate the key
807  * @param skey set to a valid session key
808  * @param iv set to a valid initialization vector
809  */
810 void
811 GNUNET_CRYPTO_hash_to_aes_key (const struct GNUNET_HashCode * hc,
812                                struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
813                                struct GNUNET_CRYPTO_SymmetricInitializationVector *iv);
814
815
816 /**
817  * @ingroup hash
818  * Obtain a bit from a hashcode.
819  *
820  * @param code the `struct GNUNET_HashCode` to index bit-wise
821  * @param bit index into the hashcode, [0...159]
822  * @return Bit \a bit from hashcode \a code, -1 for invalid index
823  */
824 int
825 GNUNET_CRYPTO_hash_get_bit (const struct GNUNET_HashCode *code,
826                             unsigned int bit);
827
828
829 /**
830  * @ingroup hash
831  * Determine how many low order bits match in two
832  * `struct GNUNET_HashCodes`.  i.e. - 010011 and 011111 share
833  * the first two lowest order bits, and therefore the
834  * return value is two (NOT XOR distance, nor how many
835  * bits match absolutely!).
836  *
837  * @param first the first hashcode
838  * @param second the hashcode to compare first to
839  * @return the number of bits that match
840  */
841 unsigned int
842 GNUNET_CRYPTO_hash_matching_bits (const struct GNUNET_HashCode *first,
843                                   const struct GNUNET_HashCode *second);
844
845
846 /**
847  * @ingroup hash
848  * Compare function for HashCodes, producing a total ordering
849  * of all hashcodes.
850  *
851  * @param h1 some hash code
852  * @param h2 some hash code
853  * @return 1 if @a h1 > @a h2, -1 if @a h1 < @a h2 and 0 if @a h1 == @a h2.
854  */
855 int
856 GNUNET_CRYPTO_hash_cmp (const struct GNUNET_HashCode *h1,
857                         const struct GNUNET_HashCode *h2);
858
859
860 /**
861  * @ingroup hash
862  * Find out which of the two GNUNET_CRYPTO_hash codes is closer to target
863  * in the XOR metric (Kademlia).
864  *
865  * @param h1 some hash code
866  * @param h2 some hash code
867  * @param target some hash code
868  * @return -1 if @a h1 is closer, 1 if @a h2 is closer and 0 if @a h1== @a h2.
869  */
870 int
871 GNUNET_CRYPTO_hash_xorcmp (const struct GNUNET_HashCode *h1,
872                            const struct GNUNET_HashCode *h2,
873                            const struct GNUNET_HashCode *target);
874
875
876 /**
877  * @ingroup hash
878  * @brief Derive an authentication key
879  * @param key authentication key
880  * @param rkey root key
881  * @param salt salt
882  * @param salt_len size of the salt
883  * @param argp pair of void * & size_t for context chunks, terminated by NULL
884  */
885 void
886 GNUNET_CRYPTO_hmac_derive_key_v (struct GNUNET_CRYPTO_AuthKey *key,
887                                  const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
888                                  const void *salt, size_t salt_len,
889                                  va_list argp);
890
891
892 /**
893  * @ingroup hash
894  * @brief Derive an authentication key
895  * @param key authentication key
896  * @param rkey root key
897  * @param salt salt
898  * @param salt_len size of the salt
899  * @param ... pair of void * & size_t for context chunks, terminated by NULL
900  */
901 void
902 GNUNET_CRYPTO_hmac_derive_key (struct GNUNET_CRYPTO_AuthKey *key,
903                                const struct GNUNET_CRYPTO_SymmetricSessionKey *rkey,
904                                const void *salt, size_t salt_len, ...);
905
906
907 /**
908  * @ingroup hash
909  * @brief Derive key
910  * @param result buffer for the derived key, allocated by caller
911  * @param out_len desired length of the derived key
912  * @param xtr_algo hash algorithm for the extraction phase, GCRY_MD_...
913  * @param prf_algo hash algorithm for the expansion phase, GCRY_MD_...
914  * @param xts salt
915  * @param xts_len length of @a xts
916  * @param skm source key material
917  * @param skm_len length of @a skm
918  * @param ... pair of void * & size_t for context chunks, terminated by NULL
919  * @return #GNUNET_YES on success
920  */
921 int
922 GNUNET_CRYPTO_hkdf (void *result, size_t out_len, int xtr_algo, int prf_algo,
923                     const void *xts, size_t xts_len, const void *skm,
924                     size_t skm_len, ...);
925
926
927 /**
928  * @ingroup hash
929  * @brief Derive key
930  * @param result buffer for the derived key, allocated by caller
931  * @param out_len desired length of the derived key
932  * @param xtr_algo hash algorithm for the extraction phase, GCRY_MD_...
933  * @param prf_algo hash algorithm for the expansion phase, GCRY_MD_...
934  * @param xts salt
935  * @param xts_len length of @a xts
936  * @param skm source key material
937  * @param skm_len length of @a skm
938  * @param argp va_list of void * & size_t pairs for context chunks
939  * @return #GNUNET_YES on success
940  */
941 int
942 GNUNET_CRYPTO_hkdf_v (void *result, size_t out_len, int xtr_algo, int prf_algo,
943                       const void *xts, size_t xts_len, const void *skm,
944                       size_t skm_len, va_list argp);
945
946
947 /**
948  * @brief Derive key
949  * @param result buffer for the derived key, allocated by caller
950  * @param out_len desired length of the derived key
951  * @param xts salt
952  * @param xts_len length of @a xts
953  * @param skm source key material
954  * @param skm_len length of @a skm
955  * @param argp va_list of void * & size_t pairs for context chunks
956  * @return #GNUNET_YES on success
957  */
958 int
959 GNUNET_CRYPTO_kdf_v (void *result, size_t out_len, const void *xts,
960                      size_t xts_len, const void *skm, size_t skm_len,
961                      va_list argp);
962
963
964 /**
965  * @ingroup hash
966  * @brief Derive key
967  * @param result buffer for the derived key, allocated by caller
968  * @param out_len desired length of the derived key
969  * @param xts salt
970  * @param xts_len length of @a xts
971  * @param skm source key material
972  * @param skm_len length of @a skm
973  * @param ... void * & size_t pairs for context chunks
974  * @return #GNUNET_YES on success
975  */
976 int
977 GNUNET_CRYPTO_kdf (void *result, size_t out_len, const void *xts,
978                    size_t xts_len, const void *skm, size_t skm_len, ...);
979
980
981 /**
982  * @ingroup crypto
983  * Extract the public key for the given private key.
984  *
985  * @param priv the private key
986  * @param pub where to write the public key
987  */
988 void
989 GNUNET_CRYPTO_ecdsa_key_get_public (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
990                                     struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
991
992 /**
993  * @ingroup crypto
994  * Extract the public key for the given private key.
995  *
996  * @param priv the private key
997  * @param pub where to write the public key
998  */
999 void
1000 GNUNET_CRYPTO_eddsa_key_get_public (const struct GNUNET_CRYPTO_EddsaPrivateKey *priv,
1001                                     struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1002
1003
1004 /**
1005  * @ingroup crypto
1006  * Extract the public key for the given private key.
1007  *
1008  * @param priv the private key
1009  * @param pub where to write the public key
1010  */
1011 void
1012 GNUNET_CRYPTO_ecdhe_key_get_public (const struct GNUNET_CRYPTO_EcdhePrivateKey *priv,
1013                                     struct GNUNET_CRYPTO_EcdhePublicKey *pub);
1014
1015
1016 /**
1017  * Convert a public key to a string.
1018  *
1019  * @param pub key to convert
1020  * @return string representing @a pub
1021  */
1022 char *
1023 GNUNET_CRYPTO_ecdsa_public_key_to_string (const struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1024
1025
1026 /**
1027  * Convert a public key to a string.
1028  *
1029  * @param pub key to convert
1030  * @return string representing @a pub
1031  */
1032 char *
1033 GNUNET_CRYPTO_eddsa_public_key_to_string (const struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1034
1035
1036 /**
1037  * Convert a string representing a public key to a public key.
1038  *
1039  * @param enc encoded public key
1040  * @param enclen number of bytes in @a enc (without 0-terminator)
1041  * @param pub where to store the public key
1042  * @return #GNUNET_OK on success
1043  */
1044 int
1045 GNUNET_CRYPTO_ecdsa_public_key_from_string (const char *enc,
1046                                             size_t enclen,
1047                                             struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1048
1049
1050 /**
1051  * Convert a string representing a private key to a private key.
1052  *
1053  * @param enc encoded public key
1054  * @param enclen number of bytes in @a enc (without 0-terminator)
1055  * @param priv where to store the private key
1056  * @return #GNUNET_OK on success
1057  */
1058 int
1059 GNUNET_CRYPTO_eddsa_private_key_from_string (const char *enc,
1060                                              size_t enclen,
1061                                              struct GNUNET_CRYPTO_EddsaPrivateKey *pub);
1062
1063
1064 /**
1065  * Convert a string representing a public key to a public key.
1066  *
1067  * @param enc encoded public key
1068  * @param enclen number of bytes in @a enc (without 0-terminator)
1069  * @param pub where to store the public key
1070  * @return #GNUNET_OK on success
1071  */
1072 int
1073 GNUNET_CRYPTO_eddsa_public_key_from_string (const char *enc,
1074                                             size_t enclen,
1075                                             struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1076
1077
1078 /**
1079  * @ingroup crypto
1080  * Create a new private key by reading it from a file.  If the
1081  * files does not exist, create a new key and write it to the
1082  * file.  Caller must free return value.  Note that this function
1083  * can not guarantee that another process might not be trying
1084  * the same operation on the same file at the same time.
1085  * If the contents of the file
1086  * are invalid the old file is deleted and a fresh key is
1087  * created.
1088  *
1089  * @param filename name of file to use to store the key
1090  * @return new private key, NULL on error (for example,
1091  *   permission denied); free using #GNUNET_free
1092  */
1093 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1094 GNUNET_CRYPTO_ecdsa_key_create_from_file (const char *filename);
1095
1096
1097 /**
1098  * @ingroup crypto
1099  * Create a new private key by reading it from a file.  If the
1100  * files does not exist, create a new key and write it to the
1101  * file.  Caller must free return value.  Note that this function
1102  * can not guarantee that another process might not be trying
1103  * the same operation on the same file at the same time.
1104  * If the contents of the file
1105  * are invalid the old file is deleted and a fresh key is
1106  * created.
1107  *
1108  * @param filename name of file to use to store the key
1109  * @return new private key, NULL on error (for example,
1110  *   permission denied); free using #GNUNET_free
1111  */
1112 struct GNUNET_CRYPTO_EddsaPrivateKey *
1113 GNUNET_CRYPTO_eddsa_key_create_from_file (const char *filename);
1114
1115 struct GNUNET_CONFIGURATION_Handle;
1116
1117
1118 /**
1119  * @ingroup crypto
1120  * Create a new private key by reading our peer's key from
1121  * the file specified in the configuration.
1122  *
1123  * @param cfg the configuration to use
1124  * @return new private key, NULL on error (for example,
1125  *   permission denied); free using #GNUNET_free
1126  */
1127 struct GNUNET_CRYPTO_EddsaPrivateKey *
1128 GNUNET_CRYPTO_eddsa_key_create_from_configuration (const struct GNUNET_CONFIGURATION_Handle *cfg);
1129
1130
1131 /**
1132  * @ingroup crypto
1133  * Create a new private key. Caller must free return value.
1134  *
1135  * @return fresh private key; free using #GNUNET_free
1136  */
1137 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1138 GNUNET_CRYPTO_ecdsa_key_create (void);
1139
1140
1141 /**
1142  * @ingroup crypto
1143  * Create a new private key. Caller must free return value.
1144  *
1145  * @return fresh private key; free using #GNUNET_free
1146  */
1147 struct GNUNET_CRYPTO_EddsaPrivateKey *
1148 GNUNET_CRYPTO_eddsa_key_create (void);
1149
1150
1151 /**
1152  * @ingroup crypto
1153  * Create a new private key. Caller must free return value.
1154  *
1155  * @return fresh private key; free using #GNUNET_free
1156  */
1157 struct GNUNET_CRYPTO_EcdhePrivateKey *
1158 GNUNET_CRYPTO_ecdhe_key_create (void);
1159
1160
1161 /**
1162  * @ingroup crypto
1163  * Clear memory that was used to store a private key.
1164  *
1165  * @param pk location of the key
1166  */
1167 void
1168 GNUNET_CRYPTO_eddsa_key_clear (struct GNUNET_CRYPTO_EddsaPrivateKey *pk);
1169
1170
1171 /**
1172  * @ingroup crypto
1173  * Clear memory that was used to store a private key.
1174  *
1175  * @param pk location of the key
1176  */
1177 void
1178 GNUNET_CRYPTO_ecdsa_key_clear (struct GNUNET_CRYPTO_EcdsaPrivateKey *pk);
1179
1180 /**
1181  * @ingroup crypto
1182  * Clear memory that was used to store a private key.
1183  *
1184  * @param pk location of the key
1185  */
1186 void
1187 GNUNET_CRYPTO_ecdhe_key_clear (struct GNUNET_CRYPTO_EcdhePrivateKey *pk);
1188
1189
1190 /**
1191  * @ingroup crypto
1192  * Get the shared private key we use for anonymous users.
1193  *
1194  * @return "anonymous" private key; do not free
1195  */
1196 const struct GNUNET_CRYPTO_EcdsaPrivateKey *
1197 GNUNET_CRYPTO_ecdsa_key_get_anonymous (void);
1198
1199
1200 /**
1201  * @ingroup crypto
1202  * Setup a hostkey file for a peer given the name of the
1203  * configuration file (!).  This function is used so that
1204  * at a later point code can be certain that reading a
1205  * hostkey is fast (for example in time-dependent testcases).
1206 *
1207  * @param cfg_name name of the configuration file to use
1208  */
1209 void
1210 GNUNET_CRYPTO_eddsa_setup_hostkey (const char *cfg_name);
1211
1212
1213 /**
1214  * @ingroup crypto
1215  * Retrieve the identity of the host's peer.
1216  *
1217  * @param cfg configuration to use
1218  * @param dst pointer to where to write the peer identity
1219  * @return #GNUNET_OK on success, #GNUNET_SYSERR if the identity
1220  *         could not be retrieved
1221  */
1222 int
1223 GNUNET_CRYPTO_get_peer_identity (const struct GNUNET_CONFIGURATION_Handle *cfg,
1224                                  struct GNUNET_PeerIdentity *dst);
1225
1226
1227 /**
1228  * Compare two Peer Identities.
1229  *
1230  * @param first first peer identity
1231  * @param second second peer identity
1232  * @return bigger than 0 if first > second,
1233  *         0 if they are the same
1234  *         smaller than 0 if second > first
1235  */
1236 int
1237 GNUNET_CRYPTO_cmp_peer_identity (const struct GNUNET_PeerIdentity *first,
1238                                  const struct GNUNET_PeerIdentity *second);
1239
1240
1241 /**
1242  * @ingroup crypto
1243  * Derive key material from a public and a private ECC key.
1244  *
1245  * @param priv private key to use for the ECDH (x)
1246  * @param pub public key to use for the ECDH (yG)
1247  * @param key_material where to write the key material (xyG)
1248  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1249  */
1250 int
1251 GNUNET_CRYPTO_ecc_ecdh (const struct GNUNET_CRYPTO_EcdhePrivateKey *priv,
1252                         const struct GNUNET_CRYPTO_EcdhePublicKey *pub,
1253                         struct GNUNET_HashCode *key_material);
1254
1255
1256 /**
1257  * @ingroup crypto
1258  * EdDSA sign a given block.
1259  *
1260  * @param priv private key to use for the signing
1261  * @param purpose what to sign (size, purpose)
1262  * @param sig where to write the signature
1263  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1264  */
1265 int
1266 GNUNET_CRYPTO_eddsa_sign (const struct GNUNET_CRYPTO_EddsaPrivateKey *priv,
1267                           const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose,
1268                           struct GNUNET_CRYPTO_EddsaSignature *sig);
1269
1270
1271 /**
1272  * @ingroup crypto
1273  * ECDSA Sign a given block.
1274  *
1275  * @param priv private key to use for the signing
1276  * @param purpose what to sign (size, purpose)
1277  * @param sig where to write the signature
1278  * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
1279  */
1280 int
1281 GNUNET_CRYPTO_ecdsa_sign (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
1282                           const struct GNUNET_CRYPTO_EccSignaturePurpose *purpose,
1283                           struct GNUNET_CRYPTO_EcdsaSignature *sig);
1284
1285 /**
1286  * @ingroup crypto
1287  * Verify EdDSA signature.
1288  *
1289  * @param purpose what is the purpose that the signature should have?
1290  * @param validate block to validate (size, purpose, data)
1291  * @param sig signature that is being validated
1292  * @param pub public key of the signer
1293  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1294  */
1295 int
1296 GNUNET_CRYPTO_eddsa_verify (uint32_t purpose,
1297                             const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
1298                             const struct GNUNET_CRYPTO_EddsaSignature *sig,
1299                             const struct GNUNET_CRYPTO_EddsaPublicKey *pub);
1300
1301
1302
1303 /**
1304  * @ingroup crypto
1305  * Verify ECDSA signature.
1306  *
1307  * @param purpose what is the purpose that the signature should have?
1308  * @param validate block to validate (size, purpose, data)
1309  * @param sig signature that is being validated
1310  * @param pub public key of the signer
1311  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1312  */
1313 int
1314 GNUNET_CRYPTO_ecdsa_verify (uint32_t purpose,
1315                             const struct GNUNET_CRYPTO_EccSignaturePurpose *validate,
1316                             const struct GNUNET_CRYPTO_EcdsaSignature *sig,
1317                             const struct GNUNET_CRYPTO_EcdsaPublicKey *pub);
1318
1319
1320 /**
1321  * @ingroup crypto
1322  * Derive a private key from a given private key and a label.
1323  * Essentially calculates a private key 'h = H(l,P) * d mod n'
1324  * where n is the size of the ECC group and P is the public
1325  * key associated with the private key 'd'.
1326  *
1327  * @param priv original private key
1328  * @param label label to use for key deriviation
1329  * @param context additional context to use for HKDF of 'h';
1330  *        typically the name of the subsystem/application
1331  * @return derived private key
1332  */
1333 struct GNUNET_CRYPTO_EcdsaPrivateKey *
1334 GNUNET_CRYPTO_ecdsa_private_key_derive (const struct GNUNET_CRYPTO_EcdsaPrivateKey *priv,
1335                                         const char *label,
1336                                         const char *context);
1337
1338
1339 /**
1340  * @ingroup crypto
1341  * Derive a public key from a given public key and a label.
1342  * Essentially calculates a public key 'V = H(l,P) * P'.
1343  *
1344  * @param pub original public key
1345  * @param label label to use for key deriviation
1346  * @param context additional context to use for HKDF of 'h'.
1347  *        typically the name of the subsystem/application
1348  * @param result where to write the derived public key
1349  */
1350 void
1351 GNUNET_CRYPTO_ecdsa_public_key_derive (const struct GNUNET_CRYPTO_EcdsaPublicKey *pub,
1352                                        const char *label,
1353                                        const char *context,
1354                                        struct GNUNET_CRYPTO_EcdsaPublicKey *result);
1355
1356
1357 /**
1358  * Output the given MPI value to the given buffer in network
1359  * byte order.  The MPI @a val may not be negative.
1360  *
1361  * @param buf where to output to
1362  * @param size number of bytes in @a buf
1363  * @param val value to write to @a buf
1364  */
1365 void
1366 GNUNET_CRYPTO_mpi_print_unsigned (void *buf,
1367                                   size_t size,
1368                                   gcry_mpi_t val);
1369
1370
1371 /**
1372  * Convert data buffer into MPI value.
1373  * The buffer is interpreted as network
1374  * byte order, unsigned integer.
1375  *
1376  * @param result where to store MPI value (allocated)
1377  * @param data raw data (GCRYMPI_FMT_USG)
1378  * @param size number of bytes in @a data
1379  */
1380 void
1381 GNUNET_CRYPTO_mpi_scan_unsigned (gcry_mpi_t *result,
1382                                  const void *data,
1383                                  size_t size);
1384
1385
1386 /**
1387  * Create a freshly generated paillier public key.
1388  *
1389  * @param[out] public_key Where to store the public key?
1390  * @param[out] private_key Where to store the private key?
1391  */
1392 void
1393 GNUNET_CRYPTO_paillier_create (struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1394                                struct GNUNET_CRYPTO_PaillierPrivateKey *private_key);
1395
1396
1397 /**
1398  * Encrypt a plaintext with a paillier public key.
1399  *
1400  * @param public_key Public key to use.
1401  * @param m Plaintext to encrypt.
1402  * @param desired_ops How many homomorphic ops the caller intends to use
1403  * @param[out] ciphertext Encrytion of @a plaintext with @a public_key.
1404  * @return guaranteed number of supported homomorphic operations >= 1,
1405  *         or desired_ops, in case that is lower,
1406  *         or -1 if less than one homomorphic operation is possible
1407  */
1408 int
1409 GNUNET_CRYPTO_paillier_encrypt (const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1410                                 const gcry_mpi_t m,
1411                                 int desired_ops,
1412                                 struct GNUNET_CRYPTO_PaillierCiphertext *ciphertext);
1413
1414
1415 /**
1416  * Decrypt a paillier ciphertext with a private key.
1417  *
1418  * @param private_key Private key to use for decryption.
1419  * @param public_key Public key to use for decryption.
1420  * @param ciphertext Ciphertext to decrypt.
1421  * @param[out] m Decryption of @a ciphertext with @private_key.
1422  */
1423 void
1424 GNUNET_CRYPTO_paillier_decrypt (const struct GNUNET_CRYPTO_PaillierPrivateKey *private_key,
1425                                 const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1426                                 const struct GNUNET_CRYPTO_PaillierCiphertext *ciphertext,
1427                                 gcry_mpi_t m);
1428
1429
1430 /**
1431  * Compute a ciphertext that represents the sum of the plaintext in @a x1 and @a x2
1432  *
1433  * Note that this operation can only be done a finite number of times
1434  * before an overflow occurs.
1435  *
1436  * @param public_key Public key to use for encryption.
1437  * @param c1 Paillier cipher text.
1438  * @param c2 Paillier cipher text.
1439  * @param[out] result Result of the homomorphic operation.
1440  * @return #GNUNET_OK if the result could be computed,
1441  *         #GNUNET_SYSERR if no more homomorphic operations are remaining.
1442  */
1443 int
1444 GNUNET_CRYPTO_paillier_hom_add (const struct GNUNET_CRYPTO_PaillierPublicKey *public_key,
1445                                 const struct GNUNET_CRYPTO_PaillierCiphertext *c1,
1446                                 const struct GNUNET_CRYPTO_PaillierCiphertext *c2,
1447                                 struct GNUNET_CRYPTO_PaillierCiphertext *result);
1448
1449
1450 /**
1451  * Get the number of remaining supported homomorphic operations.
1452  *
1453  * @param c Paillier cipher text.
1454  * @return the number of remaining homomorphic operations
1455  */
1456 int
1457 GNUNET_CRYPTO_paillier_hom_get_remaining (const struct GNUNET_CRYPTO_PaillierCiphertext *c);
1458
1459
1460 /* ********* Chaum-style RSA-based blind signatures ******************* */
1461
1462
1463
1464
1465 /**
1466  * The private information of an RSA key pair.
1467  */
1468 struct GNUNET_CRYPTO_rsa_PrivateKey;
1469
1470 /**
1471  * The public information of an RSA key pair.
1472  */
1473 struct GNUNET_CRYPTO_rsa_PublicKey;
1474
1475 /**
1476  * Key used to blind a message
1477  */
1478 struct GNUNET_CRYPTO_rsa_BlindingKey;
1479
1480 /**
1481  * @brief an RSA signature
1482  */
1483 struct GNUNET_CRYPTO_rsa_Signature;
1484
1485
1486 /**
1487  * Create a new private key. Caller must free return value.
1488  *
1489  * @param len length of the key in bits (i.e. 2048)
1490  * @return fresh private key
1491  */
1492 struct GNUNET_CRYPTO_rsa_PrivateKey *
1493 GNUNET_CRYPTO_rsa_private_key_create (unsigned int len);
1494
1495
1496 /**
1497  * Free memory occupied by the private key.
1498  *
1499  * @param key pointer to the memory to free
1500  */
1501 void
1502 GNUNET_CRYPTO_rsa_private_key_free (struct GNUNET_CRYPTO_rsa_PrivateKey *key);
1503
1504
1505 /**
1506  * Encode the private key in a format suitable for
1507  * storing it into a file.
1508  *
1509  * @param key the private key
1510  * @param[out] buffer set to a buffer with the encoded key
1511  * @return size of memory allocatedin @a buffer
1512  */
1513 size_t
1514 GNUNET_CRYPTO_rsa_private_key_encode (const struct GNUNET_CRYPTO_rsa_PrivateKey *key,
1515                               char **buffer);
1516
1517
1518 /**
1519  * Decode the private key from the data-format back
1520  * to the "normal", internal format.
1521  *
1522  * @param buf the buffer where the private key data is stored
1523  * @param len the length of the data in @a buf
1524  * @return NULL on error
1525  */
1526 struct GNUNET_CRYPTO_rsa_PrivateKey *
1527 GNUNET_CRYPTO_rsa_private_key_decode (const char *buf,
1528                               size_t len);
1529
1530
1531 /**
1532  * Extract the public key of the given private key.
1533  *
1534  * @param priv the private key
1535  * @retur NULL on error, otherwise the public key
1536  */
1537 struct GNUNET_CRYPTO_rsa_PublicKey *
1538 GNUNET_CRYPTO_rsa_private_key_get_public (const struct GNUNET_CRYPTO_rsa_PrivateKey *priv);
1539
1540
1541 /**
1542  * Compute hash over the public key.
1543  *
1544  * @param key public key to hash
1545  * @param hc where to store the hash code
1546  */
1547 void
1548 GNUNET_CRYPTO_rsa_public_key_hash (const struct GNUNET_CRYPTO_rsa_PublicKey *key,
1549                                    struct GNUNET_HashCode *hc);
1550
1551
1552 /**
1553  * Free memory occupied by the public key.
1554  *
1555  * @param key pointer to the memory to free
1556  */
1557 void
1558 GNUNET_CRYPTO_rsa_public_key_free (struct GNUNET_CRYPTO_rsa_PublicKey *key);
1559
1560
1561 /**
1562  * Encode the public key in a format suitable for
1563  * storing it into a file.
1564  *
1565  * @param key the private key
1566  * @param[out] buffer set to a buffer with the encoded key
1567  * @return size of memory allocated in @a buffer
1568  */
1569 size_t
1570 GNUNET_CRYPTO_rsa_public_key_encode (const struct GNUNET_CRYPTO_rsa_PublicKey *key,
1571                              char **buffer);
1572
1573
1574 /**
1575  * Decode the public key from the data-format back
1576  * to the "normal", internal format.
1577  *
1578  * @param buf the buffer where the public key data is stored
1579  * @param len the length of the data in @a buf
1580  * @return NULL on error
1581  */
1582 struct GNUNET_CRYPTO_rsa_PublicKey *
1583 GNUNET_CRYPTO_rsa_public_key_decode (const char *buf,
1584                              size_t len);
1585
1586
1587 /**
1588  * Create a blinding key
1589  *
1590  * @param len length of the key in bits (i.e. 2048)
1591  * @return the newly created blinding key
1592  */
1593 struct GNUNET_CRYPTO_rsa_BlindingKey *
1594 GNUNET_CRYPTO_rsa_blinding_key_create (unsigned int len);
1595
1596
1597 /**
1598  * Destroy a blinding key
1599  *
1600  * @param bkey the blinding key to destroy
1601  */
1602 void
1603 GNUNET_CRYPTO_rsa_blinding_key_free (struct GNUNET_CRYPTO_rsa_BlindingKey *bkey);
1604
1605
1606 /**
1607  * Encode the blinding key in a format suitable for
1608  * storing it into a file.
1609  *
1610  * @param bkey the blinding key
1611  * @param[out] buffer set to a buffer with the encoded key
1612  * @return size of memory allocated in @a buffer
1613  */
1614 size_t
1615 GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1616                                char **buffer);
1617
1618
1619 /**
1620  * Decode the blinding key from the data-format back
1621  * to the "normal", internal format.
1622  *
1623  * @param buf the buffer where the public key data is stored
1624  * @param len the length of the data in @a buf
1625  * @return NULL on error
1626  */
1627 struct GNUNET_CRYPTO_rsa_BlindingKey *
1628 GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf,
1629                                size_t len);
1630
1631
1632 /**
1633  * Blinds the given message with the given blinding key
1634  *
1635  * @param hash hash of the message to sign
1636  * @param bkey the blinding key
1637  * @param pkey the public key of the signer
1638  * @param[out] buffer set to a buffer with the blinded message to be signed
1639  * @return number of bytes stored in @a buffer
1640  */
1641 size_t
1642 GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash,
1643                  struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1644                  struct GNUNET_CRYPTO_rsa_PublicKey *pkey,
1645                  char **buffer);
1646
1647
1648 /**
1649  * Sign the given message.
1650  *
1651  * @param key private key to use for the signing
1652  * @param msg the (blinded) message to sign
1653  * @param msg_len number of bytes in @a msg to sign
1654  * @return NULL on error, signature on success
1655  */
1656 struct GNUNET_CRYPTO_rsa_Signature *
1657 GNUNET_CRYPTO_rsa_sign (const struct GNUNET_CRYPTO_rsa_PrivateKey *key,
1658                 const void *msg,
1659                 size_t msg_len);
1660
1661
1662 /**
1663  * Free memory occupied by signature.
1664  *
1665  * @param sig memory to freee
1666  */
1667 void
1668 GNUNET_CRYPTO_rsa_signature_free (struct GNUNET_CRYPTO_rsa_Signature *sig);
1669
1670
1671 /**
1672  * Encode the given signature in a format suitable for storing it into a file.
1673  *
1674  * @param sig the signature
1675  * @param[out] buffer set to a buffer with the encoded key
1676  * @return size of memory allocated in @a buffer
1677  */
1678 size_t
1679 GNUNET_CRYPTO_rsa_signature_encode (const struct GNUNET_CRYPTO_rsa_Signature *sig,
1680                             char **buffer);
1681
1682
1683 /**
1684  * Decode the signature from the data-format back to the "normal", internal
1685  * format.
1686  *
1687  * @param buf the buffer where the public key data is stored
1688  * @param len the length of the data in @a buf
1689  * @return NULL on error
1690  */
1691 struct GNUNET_CRYPTO_rsa_Signature *
1692 GNUNET_CRYPTO_rsa_signature_decode (const char *buf,
1693                             size_t len);
1694
1695
1696 /**
1697  * Unblind a blind-signed signature.  The signature should have been generated
1698  * with #GNUNET_CRYPTO_rsa_sign() using a hash that was blinded with
1699  * #GNUNET_CRYPTO_rsa_blind().
1700  *
1701  * @param sig the signature made on the blinded signature purpose
1702  * @param bkey the blinding key used to blind the signature purpose
1703  * @param pkey the public key of the signer
1704  * @return unblinded signature on success, NULL on error
1705  */
1706 struct GNUNET_CRYPTO_rsa_Signature *
1707 GNUNET_CRYPTO_rsa_unblind (struct GNUNET_CRYPTO_rsa_Signature *sig,
1708                    struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1709                    struct GNUNET_CRYPTO_rsa_PublicKey *pkey);
1710
1711
1712 /**
1713  * Verify whether the given hash corresponds to the given signature and the
1714  * signature is valid with respect to the given public key.
1715  *
1716  * @param hash the message to verify to match the @a sig
1717  * @param sig signature that is being validated
1718  * @param public_key public key of the signer
1719  * @returns #GNUNET_OK if ok, #GNUNET_SYSERR if invalid
1720  */
1721 int
1722 GNUNET_CRYPTO_rsa_verify (const struct GNUNET_HashCode *hash,
1723                   const struct GNUNET_CRYPTO_rsa_Signature *sig,
1724                   const struct GNUNET_CRYPTO_rsa_PublicKey *public_key);
1725
1726
1727 #if 0                           /* keep Emacsens' auto-indent happy */
1728 {
1729 #endif
1730 #ifdef __cplusplus
1731 }
1732 #endif
1733
1734
1735 /* ifndef GNUNET_CRYPTO_LIB_H */
1736 #endif
1737 /* end of gnunet_crypto_lib.h */