fips_prf_gnutls.c 414 B

1234567891011121314151617181920
  1. /*
  2. * FIPS 186-2 PRF for libgcrypt
  3. * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include <gcrypt.h>
  10. #include "common.h"
  11. #include "crypto.h"
  12. int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
  13. {
  14. /* FIX: how to do this with libgcrypt? */
  15. return -1;
  16. }