diff options
Diffstat (limited to 'crypto/seed/seed.c')
-rw-r--r-- | crypto/seed/seed.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/crypto/seed/seed.c b/crypto/seed/seed.c index c3a1f183a5cc..de3b3958ea60 100644 --- a/crypto/seed/seed.c +++ b/crypto/seed/seed.c @@ -1,7 +1,7 @@ /* - * Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved. * - * Licensed under the OpenSSL license (the "License"). You may not use + * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html @@ -34,6 +34,12 @@ */ #ifndef OPENSSL_NO_SEED +/* + * SEED low level APIs are deprecated for public use, but still ok for + * internal use. + */ +#include "internal/deprecated.h" + # include <stdio.h> # include <stdlib.h> # include <string.h> |