Cache seed renamed to key

This commit is contained in:
tevador
2019-05-01 14:40:13 +02:00
parent 1a4bde36be
commit c87dcc8ae5
5 changed files with 14 additions and 15 deletions

View File

@@ -76,8 +76,8 @@ extern "C" {
return cache;
}
void randomx_init_cache(randomx_cache *cache, const void *seed, size_t seedSize) {
cache->initialize(cache, seed, seedSize);
void randomx_init_cache(randomx_cache *cache, const void *key, size_t keySize) {
cache->initialize(cache, key, keySize);
}
void randomx_release_cache(randomx_cache* cache) {