1214501Srpaulo/*
2214501Srpaulo * PKCS #8 (Private-key information syntax)
3214501Srpaulo * Copyright (c) 2006-2009, Jouni Malinen <j@w1.fi>
4214501Srpaulo *
5252726Srpaulo * This software may be distributed under the terms of the BSD license.
6252726Srpaulo * See README for more details.
7214501Srpaulo */
8214501Srpaulo
9214501Srpaulo#ifndef PKCS8_H
10214501Srpaulo#define PKCS8_H
11214501Srpaulo
12214501Srpaulostruct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len);
13214501Srpaulostruct crypto_private_key *
14214501Srpaulopkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
15214501Srpaulo
16214501Srpaulo#endif /* PKCS8_H */
17