1/*
2 * Copyright 2023 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#include <crypt.h>
6
7
8/* move this to libroot_private.h ??? */
9extern "C" char *_crypt_rn(const char* key, const char* setting, struct crypt_data* data, size_t size);
10
11
12char *
13crypt_rn(const char* key, const char* setting, struct crypt_data* data, size_t size)
14{
15	return _crypt_rn(key, setting, data, size);
16}
17