OpenSSL 1.1.1-pre2
This commit is contained in:
+1
-1
@@ -27,4 +27,4 @@ server-cmod: server-cmod.o
|
||||
server-conf: server-conf.o
|
||||
|
||||
client-arg client-conf saccept sconnect server-arg server-cmod server-conf:
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
||||
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
|
||||
+7
-8
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 1998-2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright 1998-2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
@@ -19,12 +19,13 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
#define CERT_FILE "server.pem"
|
||||
|
||||
static int done = 0;
|
||||
static volatile int done = 0;
|
||||
|
||||
void interrupt(int sig)
|
||||
{
|
||||
@@ -51,7 +52,7 @@ int main(int argc, char *argv[])
|
||||
BIO *ssl_bio, *tmp;
|
||||
SSL_CTX *ctx;
|
||||
char buf[512];
|
||||
int ret = 1, i;
|
||||
int ret = EXIT_FAILURE, i;
|
||||
|
||||
if (argc <= 1)
|
||||
port = "*:4433";
|
||||
@@ -111,12 +112,10 @@ int main(int argc, char *argv[])
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
ret = EXIT_SUCCESS;
|
||||
err:
|
||||
if (ret) {
|
||||
if (ret != EXIT_SUCCESS)
|
||||
ERR_print_errors_fp(stderr);
|
||||
}
|
||||
BIO_free(in);
|
||||
exit(ret);
|
||||
return (!ret);
|
||||
return ret;
|
||||
}
|
||||
+8
-10
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 1998-2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright 1998-2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
@@ -18,17 +18,14 @@
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
#define HOSTPORT "localhost:4433"
|
||||
#define CAFILE "root.pem"
|
||||
|
||||
extern int errno;
|
||||
|
||||
int main(argc, argv)
|
||||
int argc;
|
||||
char *argv[];
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
const char *hostport = HOSTPORT;
|
||||
const char *CAfile = CAFILE;
|
||||
@@ -39,7 +36,7 @@ char *argv[];
|
||||
SSL_CTX *ssl_ctx = NULL;
|
||||
SSL *ssl;
|
||||
BIO *ssl_bio;
|
||||
int i, len, off, ret = 1;
|
||||
int i, len, off, ret = EXIT_FAILURE;
|
||||
|
||||
if (argc > 1)
|
||||
hostport = argv[1];
|
||||
@@ -115,17 +112,18 @@ char *argv[];
|
||||
fwrite(buf, 1, i, stdout);
|
||||
}
|
||||
|
||||
ret = 1;
|
||||
ret = EXIT_SUCCESS;
|
||||
goto done;
|
||||
|
||||
err:
|
||||
if (ERR_peek_error() == 0) { /* system call error */
|
||||
fprintf(stderr, "errno=%d ", errno);
|
||||
perror("error");
|
||||
} else
|
||||
} else {
|
||||
ERR_print_errors_fp(stderr);
|
||||
}
|
||||
done:
|
||||
BIO_free_all(out);
|
||||
SSL_CTX_free(ssl_ctx);
|
||||
return (ret == 1);
|
||||
return ret;
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
@@ -16,6 +16,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/ssl.h>
|
||||
|
||||
@@ -27,7 +28,7 @@ int main(int argc, char *argv[])
|
||||
SSL_CONF_CTX *cctx;
|
||||
char buf[512];
|
||||
BIO *in = NULL;
|
||||
int ret = 1, i;
|
||||
int ret = EXIT_FAILURE, i;
|
||||
char **args = argv + 1;
|
||||
int nargs = argc - 1;
|
||||
|
||||
@@ -134,12 +135,10 @@ int main(int argc, char *argv[])
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
ret = EXIT_SUCCESS;
|
||||
err:
|
||||
if (ret) {
|
||||
if (ret != EXIT_SUCCESS)
|
||||
ERR_print_errors_fp(stderr);
|
||||
}
|
||||
BIO_free(in);
|
||||
exit(ret);
|
||||
return (!ret);
|
||||
return ret;
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright 2015-2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
@@ -14,6 +14,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/conf.h>
|
||||
@@ -25,7 +26,7 @@ int main(int argc, char *argv[])
|
||||
BIO *in = NULL;
|
||||
BIO *ssl_bio, *tmp;
|
||||
SSL_CTX *ctx;
|
||||
int ret = 1, i;
|
||||
int ret = EXIT_FAILURE, i;
|
||||
|
||||
ctx = SSL_CTX_new(TLS_server_method());
|
||||
|
||||
@@ -84,12 +85,10 @@ int main(int argc, char *argv[])
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
ret = EXIT_SUCCESS;
|
||||
err:
|
||||
if (ret) {
|
||||
if (ret != EXIT_SUCCESS)
|
||||
ERR_print_errors_fp(stderr);
|
||||
}
|
||||
BIO_free(in);
|
||||
exit(ret);
|
||||
return (!ret);
|
||||
return ret;
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.
|
||||
* Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
*
|
||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
@@ -16,6 +16,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <signal.h>
|
||||
#include <stdlib.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/ssl.h>
|
||||
#include <openssl/conf.h>
|
||||
@@ -32,7 +33,7 @@ int main(int argc, char *argv[])
|
||||
CONF_VALUE *cnf;
|
||||
long errline = -1;
|
||||
char buf[512];
|
||||
int ret = 1, i;
|
||||
int ret = EXIT_FAILURE, i;
|
||||
|
||||
ctx = SSL_CTX_new(TLS_server_method());
|
||||
|
||||
@@ -129,12 +130,10 @@ int main(int argc, char *argv[])
|
||||
fflush(stdout);
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
ret = EXIT_SUCCESS;
|
||||
err:
|
||||
if (ret) {
|
||||
if (ret != EXIT_SUCCESS)
|
||||
ERR_print_errors_fp(stderr);
|
||||
}
|
||||
BIO_free(in);
|
||||
exit(ret);
|
||||
return (!ret);
|
||||
return ret;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
HWCRHK_F_BIND_HELPER 110
|
||||
HWCRHK_F_HWCRHK_CTRL 100
|
||||
HWCRHK_F_HWCRHK_FINISH 101
|
||||
HWCRHK_F_HWCRHK_GET_PASS 102
|
||||
HWCRHK_F_HWCRHK_INIT 103
|
||||
HWCRHK_F_HWCRHK_INSERT_CARD 104
|
||||
HWCRHK_F_HWCRHK_LOAD_PRIVKEY 105
|
||||
HWCRHK_F_HWCRHK_LOAD_PUBKEY 106
|
||||
HWCRHK_F_HWCRHK_MOD_EXP 107
|
||||
HWCRHK_F_HWCRHK_MUTEX_INIT 111
|
||||
HWCRHK_F_HWCRHK_RAND_BYTES 108
|
||||
HWCRHK_F_HWCRHK_RSA_MOD_EXP 109
|
||||
+1
-1
@@ -17,4 +17,4 @@ aesccm: aesccm.o
|
||||
aesgcm: aesgcm.o
|
||||
|
||||
aesccm aesgcm:
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
||||
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
|
||||
+1
-1
@@ -102,7 +102,7 @@ void aes_gcm_decrypt(void)
|
||||
printf("Plaintext:\n");
|
||||
BIO_dump_fp(stdout, outbuf, outlen);
|
||||
/* Set expected tag value. */
|
||||
EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, sizeof(gcm_tag),
|
||||
EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, sizeof(gcm_tag),
|
||||
(void *)gcm_tag);
|
||||
/* Finalise: note get no output for GCM */
|
||||
rv = EVP_DecryptFinal_ex(ctx, outbuf, &outlen);
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
PKCS#12 demo applications
|
||||
|
||||
Written by Steve Henson.
|
||||
@@ -15,6 +15,36 @@
|
||||
|
||||
/* Simple PKCS#12 file reader */
|
||||
|
||||
static char *find_friendly_name(PKCS12 *p12)
|
||||
{
|
||||
STACK_OF(PKCS7) *safes = PKCS12_unpack_authsafes(p12);
|
||||
int n, m;
|
||||
char *name = NULL;
|
||||
PKCS7 *safe;
|
||||
STACK_OF(PKCS12_SAFEBAG) *bags;
|
||||
PKCS12_SAFEBAG *bag;
|
||||
|
||||
if ((safes = PKCS12_unpack_authsafes(p12)) == NULL)
|
||||
return NULL;
|
||||
|
||||
for (n = 0; n < sk_PKCS7_num(safes) && name == NULL; n++) {
|
||||
safe = sk_PKCS7_value(safes, n);
|
||||
if (OBJ_obj2nid(safe->type) != NID_pkcs7_data
|
||||
|| (bags = PKCS12_unpack_p7data(safe)) == NULL)
|
||||
continue;
|
||||
|
||||
for (m = 0; m < sk_PKCS12_SAFEBAG_num(bags) && name == NULL; m++) {
|
||||
bag = sk_PKCS12_SAFEBAG_value(bags, m);
|
||||
name = PKCS12_get_friendlyname(bag);
|
||||
}
|
||||
sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
|
||||
}
|
||||
|
||||
sk_PKCS7_pop_free(safes, PKCS7_free);
|
||||
|
||||
return name;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
FILE *fp;
|
||||
@@ -22,7 +52,9 @@ int main(int argc, char **argv)
|
||||
X509 *cert;
|
||||
STACK_OF(X509) *ca = NULL;
|
||||
PKCS12 *p12;
|
||||
const char *name;
|
||||
int i;
|
||||
|
||||
if (argc != 4) {
|
||||
fprintf(stderr, "Usage: pkread p12file password opfile\n");
|
||||
exit(1);
|
||||
@@ -45,11 +77,14 @@ int main(int argc, char **argv)
|
||||
ERR_print_errors_fp(stderr);
|
||||
exit(1);
|
||||
}
|
||||
name = find_friendly_name(p12);
|
||||
PKCS12_free(p12);
|
||||
if ((fp = fopen(argv[3], "w")) == NULL) {
|
||||
fprintf(stderr, "Error opening file %s\n", argv[1]);
|
||||
exit(1);
|
||||
}
|
||||
if (name)
|
||||
fprintf(fp, "***Friendly Name***\n%s\n", name);
|
||||
if (pkey) {
|
||||
fprintf(fp, "***Private Key***\n");
|
||||
PEM_write_PrivateKey(fp, pkey, NULL, NULL, 0, NULL, NULL);
|
||||
|
||||
Reference in New Issue
Block a user