public_key.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* Public key algorithm internals
  2. *
  3. * See Documentation/crypto/asymmetric-keys.txt
  4. *
  5. * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
  6. * Written by David Howells (dhowells@redhat.com)
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public Licence
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the Licence, or (at your option) any later version.
  12. */
  13. #include <crypto/public_key.h>
  14. extern struct asymmetric_key_subtype public_key_subtype;
  15. /*
  16. * Public key algorithm definition.
  17. */
  18. struct public_key_algorithm {
  19. const char *name;
  20. u8 n_pub_mpi; /* Number of MPIs in public key */
  21. u8 n_sec_mpi; /* Number of MPIs in secret key */
  22. u8 n_sig_mpi; /* Number of MPIs in a signature */
  23. int (*verify_signature)(const struct public_key *key,
  24. const struct public_key_signature *sig);
  25. };
  26. extern const struct public_key_algorithm RSA_public_key_algorithm;
  27. /*
  28. * public_key.c
  29. */
  30. extern int public_key_verify_signature(const struct public_key *pk,
  31. const struct public_key_signature *sig);