1261190Sgshapiro/*
2261190Sgshapiro * PKCS #8 (Private-key information syntax)
3261190Sgshapiro * Copyright (c) 2006-2009, Jouni Malinen <j@w1.fi>
4261190Sgshapiro *
5261190Sgshapiro * This software may be distributed under the terms of the BSD license.
6261190Sgshapiro * See README for more details.
7261190Sgshapiro */
8261190Sgshapiro
9261190Sgshapiro#ifndef PKCS8_H
10261190Sgshapiro#define PKCS8_H
11266711Sgshapiro
12261190Sgshapirostruct crypto_private_key * pkcs8_key_import(const u8 *buf, size_t len);
13261190Sgshapirostruct crypto_private_key *
14261190Sgshapiropkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
15261190Sgshapiro
16261190Sgshapiro#endif /* PKCS8_H */
17261190Sgshapiro