Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cryptlib-mods
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Deucе
cryptlib-mods
Commits
f4831eae
Commit
f4831eae
authored
5 months ago
by
Stephen Hurd
Browse files
Options
Downloads
Patches
Plain Diff
Remove pragmas telling us what we did.
parent
bcf90620
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
cryptlib.h
+1
-0
1 addition, 0 deletions
cryptlib.h
keyset/pkcs12.h
+0
-8
0 additions, 8 deletions
keyset/pkcs12.h
session/ssh.h
+0
-13
0 additions, 13 deletions
session/ssh.h
session/tls.h
+0
-4
0 additions, 4 deletions
session/tls.h
with
1 addition
and
25 deletions
cryptlib.h
+
1
−
0
View file @
f4831eae
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
/* The current cryptlib version: 3.4.8 */
/* The current cryptlib version: 3.4.8 */
#define CRYPTLIB_VERSION 348
#define CRYPTLIB_VERSION 348
#define CRYPTLIB_PATCHES "00000000000000000000000000000000"
/* Fixup for Windows support. We need to include windows.h for various types
/* Fixup for Windows support. We need to include windows.h for various types
and prototypes needed for DLLs, but this pulls in wincrypt.h which defines
and prototypes needed for DLLs, but this pulls in wincrypt.h which defines
...
...
This diff is collapsed.
Click to expand it.
keyset/pkcs12.h
+
0
−
8
View file @
f4831eae
...
@@ -9,14 +9,6 @@
...
@@ -9,14 +9,6 @@
#define _PKCS12_DEFINED
#define _PKCS12_DEFINED
#if defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ )
#if defined( USE_PKCS12_WRITE )
#pragma message( " Building with PKCS #12 read and write enabled." )
#elif defined( USE_PKCS12 )
#pragma message( " Building with PKCS #12 enabled." )
#endif
/* PKCS #12 options */
#endif
/* Notify PKCS #12 use */
/****************************************************************************
/****************************************************************************
* *
* *
* PKCS #12 Constants *
* PKCS #12 Constants *
...
...
This diff is collapsed.
Click to expand it.
session/ssh.h
+
0
−
13
View file @
f4831eae
...
@@ -9,15 +9,6 @@
...
@@ -9,15 +9,6 @@
#define _SSH_DEFINED
#define _SSH_DEFINED
#if defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ )
#ifdef USE_SSH_EXTENDED
#pragma message( " Building with extended SSH facilities enabled." )
#endif
/* USE_SSH_EXTENDED */
#ifdef USE_SSH_OPENSSH
#pragma message( " Building with nonstandard OpenSSH extensions enabled." )
#endif
/* USE_SSH_OPENSSH */
#endif
/* Notify extended SSH facilities */
#ifdef USE_SSH
#ifdef USE_SSH
/****************************************************************************
/****************************************************************************
...
@@ -67,10 +58,6 @@
...
@@ -67,10 +58,6 @@
in preference to DH, uncomment the following */
in preference to DH, uncomment the following */
/* #define PREFER_ECC */
/* #define PREFER_ECC */
#if ( defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ ) ) && \
defined( PREFER_ECC )
#pragma message( " Building with ECC preferred for SSH." )
#endif
/* Notify ECC preferred use */
#if defined( PREFER_ECC ) && \
#if defined( PREFER_ECC ) && \
!( defined( USE_ECDH ) && defined( USE_ECDSA ) )
!( defined( USE_ECDH ) && defined( USE_ECDSA ) )
#error PREFER_ECC can only be used with ECDH and ECDSA enabled
#error PREFER_ECC can only be used with ECDH and ECDSA enabled
...
...
This diff is collapsed.
Click to expand it.
session/tls.h
+
0
−
4
View file @
f4831eae
...
@@ -88,10 +88,6 @@
...
@@ -88,10 +88,6 @@
following */
following */
/* #define PREFER_ECC //*/
/* #define PREFER_ECC //*/
#if ( defined( _MSC_VER ) || defined( __GNUC__ ) || defined( __clang__ ) ) && \
defined( PREFER_ECC )
#pragma message( " Building with ECC preferred for TLS." )
#endif
/* Notify preferred ECC use */
#if defined( PREFER_ECC ) && \
#if defined( PREFER_ECC ) && \
!( defined( USE_ECDH ) && defined( USE_ECDSA ) )
!( defined( USE_ECDH ) && defined( USE_ECDSA ) )
#error PREFER_ECC can only be used with ECDH and ECDSA enabled
#error PREFER_ECC can only be used with ECDH and ECDSA enabled
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment