Blame lib/vko.h

Packit Service 991b93
/*
Packit Service 991b93
 * Copyright (C) 2011-2012 Free Software Foundation, Inc.
Packit Service 991b93
 * Copyright (C) 2016 Dmitry Eremin-Solenikov
Packit Service 991b93
 *
Packit Service 991b93
 * This file is part of GnuTLS.
Packit Service 991b93
 *
Packit Service 991b93
 * The GnuTLS is free software; you can redistribute it and/or
Packit Service 991b93
 * modify it under the terms of the GNU Lesser General Public License
Packit Service 991b93
 * as published by the Free Software Foundation; either version 2.1 of
Packit Service 991b93
 * the License, or (at your option) any later version.
Packit Service 991b93
 *
Packit Service 991b93
 * This library is distributed in the hope that it will be useful, but
Packit Service 991b93
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 991b93
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 991b93
 * Lesser General Public License for more details.
Packit Service 991b93
 *
Packit Service 991b93
 * You should have received a copy of the GNU Lesser General Public License
Packit Service 991b93
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
Packit Service 991b93
 *
Packit Service 991b93
 */
Packit Service 991b93
Packit Service 991b93
#ifndef GNUTLS_LIB_VKO_H
Packit Service 991b93
#define GNUTLS_LIB_VKO_H
Packit Service 991b93
Packit Service 991b93
int
Packit Service 991b93
_gnutls_gost_keytrans_encrypt(gnutls_pk_params_st *pub,
Packit Service 991b93
			      gnutls_pk_params_st *priv,
Packit Service 991b93
			      gnutls_datum_t *cek,
Packit Service 991b93
			      gnutls_datum_t *ukm,
Packit Service 991b93
			      gnutls_datum_t *out);
Packit Service 991b93
Packit Service 991b93
int
Packit Service 991b93
_gnutls_gost_keytrans_decrypt(gnutls_pk_params_st *priv,
Packit Service 991b93
			      gnutls_datum_t *cek,
Packit Service 991b93
			      gnutls_datum_t *ukm,
Packit Service 991b93
			      gnutls_datum_t *out);
Packit Service 991b93
Packit Service 991b93
#endif /* GNUTLS_LIB_VKO_H */