#include "ed25519.h"

#ifndef ED25519_NO_SEED

#include "random.h"

int ed25519_create_seed(unsigned char *seed) {
    return random_bytes(seed, 32);
}

#endif
