1234567891011121314151617 |
- /*
- * Copyright (c) 2020, Ali Mohammad Pur <mpfard@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/Span.h>
- #include <LibCrypto/ASN1/ASN1.h>
- #include <LibCrypto/ASN1/DER.h>
- namespace Crypto {
- ByteBuffer decode_pem(ReadonlyBytes);
- }
|