/
nerfur
/
openbsd-src
Обзор
Документация
Войти
/
nerfur
/
openbsd-src
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/libfido2/src/random.c
16 строк
317 B
djm
update to libfido2 1.8.0; ok sthen@ "timing is fine" deraadt@
27 окт 2021, 00:36
27 окт 2021, 00:36
c4a807e
Код
Авторство
О чём код?
/* * Copyright (c) 2018 Yubico AB. All rights reserved. * Use of this source code is governed by a BSD-style * license that can be found in the LICENSE file. */ #include <sys/types.h> #include <stdlib.h> #include <unistd.h> int fido_get_random(void *buf, size_t len) { arc4random_buf(buf, len); return (0); }