Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chunk 11 of CMP contribution to OpenSSL: CMP command-line interface #11470

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions CHANGES.md
Expand Up @@ -93,10 +93,10 @@ OpenSSL 3.0
*Richard Levitte*

* Added an implementation of CMP and CRMF (RFC 4210, RFC 4211 RFC 6712).
This adds crypto/cmp/, crpyto/crmf/, and test/cmp_*.
See L<OSSL_CMP_exec_IR_ses(3)> as starting point.
This adds crypto/cmp/, crpyto/crmf/, apps/cmp.c, and test/cmp_*.
See L<openssl-cmp(1)> and L<OSSL_CMP_exec_IR_ses(3)> as starting points.

*David von Oheimb*
*David von Oheimb, Martin Peylo*

* Generalized the HTTP client code from crypto/ocsp/ into crpyto/http/.
The legacy OCSP-focused and only partly documented API is retained.
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Expand Up @@ -34,7 +34,7 @@ OpenSSL 3.0
disabled; the project uses address sanitize/leak-detect instead.
* Added a Certificate Management Protocol (CMP, RFC 4210) implementation
also covering CRMF (RFC 4211) and HTTP transfer (RFC 6712).
It is part of the crypto lib, while a 'cmp' app using it is in preparation.
It is part of the crypto lib and adds a 'cmp' app with a demo configuration.
All widely used CMP features are supported for both clients and servers.
* Added a proper HTTP(S) client to libcrypto supporting GET and POST,
redirection, plain and ASN.1-encoded contents, proxies, and timeouts.
Expand Down
2 changes: 1 addition & 1 deletion apps/build.info
Expand Up @@ -52,7 +52,7 @@ IF[{- !$disabled{'deprecated-3.0'} -}]
ENDIF
ENDIF
IF[{- !$disabled{'cmp'} -}]
$OPENSSLSRC=$OPENSSLSRC cmp_mock_srv.c
$OPENSSLSRC=$OPENSSLSRC cmp.c cmp_mock_srv.c
ENDIF

IF[{- !$disabled{apps} -}]
Expand Down