bn_srp.h 769 B

123456789101112131415161718192021222324252627282930313233
  1. #include <contrib/libs/openssl/redef.h>
  2. /*
  3. * Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved.
  4. *
  5. * Licensed under the OpenSSL license (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. #ifndef OPENSSL_NO_SRP
  11. extern const BIGNUM bn_group_1024;
  12. extern const BIGNUM bn_group_1536;
  13. extern const BIGNUM bn_group_2048;
  14. extern const BIGNUM bn_group_3072;
  15. extern const BIGNUM bn_group_4096;
  16. extern const BIGNUM bn_group_6144;
  17. extern const BIGNUM bn_group_8192;
  18. extern const BIGNUM bn_generator_19;
  19. extern const BIGNUM bn_generator_5;
  20. extern const BIGNUM bn_generator_2;
  21. #endif