mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 00:02:14 -04:00
Summary: Release notes can be found at https://www.openssl.org/news/openssl-3.0-notes.html . Obtained from: https://www.openssl.org/source/openssl-3.0.8.tar.gz Differential Revision: https://reviews.freebsd.org/D38835 Test Plan: ``` $ git status On branch vendor/openssl-3.0 nothing to commit, working tree clean $ (cd ..; fetch http://www.openssl.org/source/openssl-${OSSLVER}.tar.gz http://www.openssl.org/source/openssl-${OSSLVER}.tar.gz.asc) openssl-3.0.8.tar.gz 14 MB 4507 kBps 04s openssl-3.0.8.tar.gz.asc 833 B 10 MBps 00s $ set | egrep '(XLIST|OSSLVER)=' OSSLVER=3.0.8 XLIST=FREEBSD-Xlist $ gpg --list-keys /home/ngie/.gnupg/pubring.kbx ----------------------------- pub rsa4096 2014-10-04 [SC] 7953AC1FBC3DC8B3B292393ED5E9E43F7DF9EE8C uid [ unknown] Richard Levitte <richard@levitte.org> uid [ unknown] Richard Levitte <levitte@lp.se> uid [ unknown] Richard Levitte <levitte@openssl.org> sub rsa4096 2014-10-04 [E] $ gpg --verify openssl-${OSSLVER}.tar.gz.asc openssl-${OSSLVER}.tar.gz gpg: Signature made Tue Feb 7 05:43:55 2023 PST gpg: using RSA key 7953AC1FBC3DC8B3B292393ED5E9E43F7DF9EE8C gpg: Good signature from "Richard Levitte <richard@levitte.org>" [unknown] gpg: aka "Richard Levitte <levitte@lp.se>" [unknown] gpg: aka "Richard Levitte <levitte@openssl.org>" [unknown] gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner. Primary key fingerprint: 7953 AC1F BC3D C8B3 B292 393E D5E9 E43F 7DF9 EE8C $ (cd vendor.checkout/; git status; find . -type f -or -type l | cut -c 3- | sort > ../old) On branch vendor/openssl-3.0 nothing to commit, working tree clean $ tar -x -X $XLIST -f ../openssl-${OSSLVER}.tar.gz -C .. $ rsync --exclude FREEBSD.* --delete -avzz ../openssl-${OSSLVER}/* . $ cat .git gitdir: /home/ngie/git/freebsd-src/.git/worktrees/vendor.checkout $ diff -arq ../openssl-3.0.8 . Only in .: .git Only in .: FREEBSD-Xlist Only in .: FREEBSD-upgrade $ git status FREEBSD* On branch vendor/openssl-3.0 nothing to commit, working tree clean $ ``` Reviewers: emaste, jkim Subscribers: imp, andrew, dab Differential Revision: https://reviews.freebsd.org/D38835
58 lines
2.6 KiB
C
58 lines
2.6 KiB
C
/*
|
|
* Generated by util/mkerr.pl DO NOT EDIT
|
|
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#ifndef OPENSSL_PEMERR_H
|
|
# define OPENSSL_PEMERR_H
|
|
# pragma once
|
|
|
|
# include <openssl/opensslconf.h>
|
|
# include <openssl/symhacks.h>
|
|
# include <openssl/cryptoerr_legacy.h>
|
|
|
|
|
|
|
|
/*
|
|
* PEM reason codes.
|
|
*/
|
|
# define PEM_R_BAD_BASE64_DECODE 100
|
|
# define PEM_R_BAD_DECRYPT 101
|
|
# define PEM_R_BAD_END_LINE 102
|
|
# define PEM_R_BAD_IV_CHARS 103
|
|
# define PEM_R_BAD_MAGIC_NUMBER 116
|
|
# define PEM_R_BAD_PASSWORD_READ 104
|
|
# define PEM_R_BAD_VERSION_NUMBER 117
|
|
# define PEM_R_BIO_WRITE_FAILURE 118
|
|
# define PEM_R_CIPHER_IS_NULL 127
|
|
# define PEM_R_ERROR_CONVERTING_PRIVATE_KEY 115
|
|
# define PEM_R_EXPECTING_DSS_KEY_BLOB 131
|
|
# define PEM_R_EXPECTING_PRIVATE_KEY_BLOB 119
|
|
# define PEM_R_EXPECTING_PUBLIC_KEY_BLOB 120
|
|
# define PEM_R_EXPECTING_RSA_KEY_BLOB 132
|
|
# define PEM_R_HEADER_TOO_LONG 128
|
|
# define PEM_R_INCONSISTENT_HEADER 121
|
|
# define PEM_R_KEYBLOB_HEADER_PARSE_ERROR 122
|
|
# define PEM_R_KEYBLOB_TOO_SHORT 123
|
|
# define PEM_R_MISSING_DEK_IV 129
|
|
# define PEM_R_NOT_DEK_INFO 105
|
|
# define PEM_R_NOT_ENCRYPTED 106
|
|
# define PEM_R_NOT_PROC_TYPE 107
|
|
# define PEM_R_NO_START_LINE 108
|
|
# define PEM_R_PROBLEMS_GETTING_PASSWORD 109
|
|
# define PEM_R_PVK_DATA_TOO_SHORT 124
|
|
# define PEM_R_PVK_TOO_SHORT 125
|
|
# define PEM_R_READ_KEY 111
|
|
# define PEM_R_SHORT_HEADER 112
|
|
# define PEM_R_UNEXPECTED_DEK_IV 130
|
|
# define PEM_R_UNSUPPORTED_CIPHER 113
|
|
# define PEM_R_UNSUPPORTED_ENCRYPTION 114
|
|
# define PEM_R_UNSUPPORTED_KEY_COMPONENTS 126
|
|
# define PEM_R_UNSUPPORTED_PUBLIC_KEY_TYPE 110
|
|
|
|
#endif
|