diff --git a/src/p11-seedrandom.c b/src/p11-seedrandom.c index f21d61b..33f46c3 100644 --- a/src/p11-seedrandom.c +++ b/src/p11-seedrandom.c @@ -1,35 +1,35 @@ /* p11-seedrandom.c - Cryptoki implementation. * Copyright (C) 2006 g10 Code GmbH * * This file is part of Scute. * * Scute is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * Scute is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this program; if not, see . * SPDX-License-Identifier: LGPL-2.1-or-later */ #if HAVE_CONFIG_H #include #endif #include "cryptoki.h" CK_RV CK_SPEC C_SeedRandom (CK_SESSION_HANDLE hSession, CK_BYTE_PTR pSeed, CK_ULONG ulSeedLen) { (void) hSession; (void) pSeed; (void) ulSeedLen; - return CKR_FUNCTION_NOT_SUPPORTED; + return CKR_OK; }