diff --git a/Makefile b/Makefile index 4dacf844..d0dc20bd 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,9 @@ $(ANDROID_TARGETS): CFLAGS += \ $(ANDROID_TARGETS): LDFLAGS += \ -target $(ANDROID_NDK_TARGET_TRIPLE)$(ANDROID_NDK_API_VERSION) \ -Ldeps/openssl/android/arm64-v8a/usr/local/lib \ - -llog + -llog \ + -lssl \ + -lcrypto ifeq ($(UNAME_M),x86_64) debug: CFLAGS += -fsanitize=address -fsanitize=undefined -fno-common @@ -345,7 +347,6 @@ $(ANDROID_TARGETS): LDFLAGS += \ -ldl \ -lssl \ -lcrypto \ - -shared \ -fPIC unix: debug release @@ -372,7 +373,13 @@ define build_rules $(1): $(BUILD_DIR)/$(1)/$(if $(filter android%,$(1)),lib)$(PROJECT)$(if $(filter win%,$(1)),.exe)$(if $(filter android%,$(1)),.so) .PHONY: $(1) -$(BUILD_DIR)/$(1)/$(if $(filter android%,$(1)),lib)$(PROJECT)$(if $(filter win%,$(1)),.exe)$(if $(filter android%,$(1)),.so): $(filter $(BUILD_DIR)/$(1)/%,$(ALL_APP_OBJS)) +ifeq ($(filter android%,$(1)),$(1)) +$(BUILD_DIR)/$(1)/lib$(PROJECT).so: $(filter $(BUILD_DIR)/$(1)/%,$(ALL_APP_OBJS)) + @echo [link] $$@ + @$$(CC) -o $$@ $$^ $$(LDFLAGS) -shared +endif + +$(BUILD_DIR)/$(1)/$(PROJECT)$(if $(filter win%,$(1)),.exe): $(filter $(BUILD_DIR)/$(1)/%,$(ALL_APP_OBJS)) @echo [link] $$@ @$$(CC) -o $$@ $$^ $$(LDFLAGS) @@ -417,12 +424,11 @@ PACKAGE_DIRS := \ RAW_FILES := $(shell find $(PACKAGE_DIRS) -type f) -out/TildeFriends.unsigned.apk: out/apk/classes.dex out/androiddebug/libtildefriends.so $(RAW_FILES) +out/TildeFriends.unsigned.apk: out/apk/classes.dex out/androiddebug/tildefriends out/androiddebug/libtildefriends.so $(RAW_FILES) @mkdir -p $(dir $@) out/apk/lib/arm64-v8a/ @echo [aapt] $@ + @cp out/androiddebug/tildefriends out/apk/lib/arm64-v8a/ @cp out/androiddebug/libtildefriends.so out/apk/lib/arm64-v8a/ - @cp deps/openssl/android/arm64-v8a/usr/local/lib/libssl.so out/apk/lib/arm64-v8a/ - @cp deps/openssl/android/arm64-v8a/usr/local/lib/libcrypto.so out/apk/lib/arm64-v8a/ @$(ANDROID_BUILD_TOOLS)/aapt package -f -M src/android/AndroidManifest.xml -S src/android/res/ -I $(ANDROID_PLATFORM)/android.jar -F $@ out/apk/ @zip -u $@ -q -r $(PACKAGE_DIRS) diff --git a/deps/openssl/android/arm64-v8a/usr/local/bin/c_rehash b/deps/openssl/android/arm64-v8a/usr/local/bin/c_rehash index f226d613..04ce2dc0 100755 --- a/deps/openssl/android/arm64-v8a/usr/local/bin/c_rehash +++ b/deps/openssl/android/arm64-v8a/usr/local/bin/c_rehash @@ -2,7 +2,7 @@ # WARNING: do not edit! # Generated by Makefile from tools/c_rehash.in -# Copyright 1999-2018 The OpenSSL Project Authors. All Rights Reserved. +# Copyright 1999-2022 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 @@ -105,54 +105,97 @@ foreach (@dirlist) { } exit($errorcount); +sub copy_file { + my ($src_fname, $dst_fname) = @_; + + if (open(my $in, "<", $src_fname)) { + if (open(my $out, ">", $dst_fname)) { + print $out $_ while (<$in>); + close $out; + } else { + warn "Cannot open $dst_fname for write, $!"; + } + close $in; + } else { + warn "Cannot open $src_fname for read, $!"; + } +} + sub hash_dir { - my %hashlist; - print "Doing $_[0]\n"; - chdir $_[0]; - opendir(DIR, "."); - my @flist = sort readdir(DIR); - closedir DIR; - if ( $removelinks ) { - # Delete any existing symbolic links - foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) { - if (-l $_) { - print "unlink $_" if $verbose; - unlink $_ || warn "Can't unlink $_, $!\n"; - } - } - } - FILE: foreach $fname (grep {/\.(pem)|(crt)|(cer)|(crl)$/} @flist) { - # Check to see if certificates and/or CRLs present. - my ($cert, $crl) = check_file($fname); - if (!$cert && !$crl) { - print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n"; - next; - } - link_hash_cert($fname) if ($cert); - link_hash_crl($fname) if ($crl); - } + my $dir = shift; + my %hashlist; + + print "Doing $dir\n"; + + if (!chdir $dir) { + print STDERR "WARNING: Cannot chdir to '$dir', $!\n"; + return; + } + + opendir(DIR, ".") || print STDERR "WARNING: Cannot opendir '.', $!\n"; + my @flist = sort readdir(DIR); + closedir DIR; + if ( $removelinks ) { + # Delete any existing symbolic links + foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) { + if (-l $_) { + print "unlink $_\n" if $verbose; + unlink $_ || warn "Can't unlink $_, $!\n"; + } + } + } + FILE: foreach $fname (grep {/\.(pem)|(crt)|(cer)|(crl)$/} @flist) { + # Check to see if certificates and/or CRLs present. + my ($cert, $crl) = check_file($fname); + if (!$cert && !$crl) { + print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n"; + next; + } + link_hash_cert($fname) if ($cert); + link_hash_crl($fname) if ($crl); + } + + chdir $pwd; } sub check_file { - my ($is_cert, $is_crl) = (0,0); - my $fname = $_[0]; - open IN, $fname; - while() { - if (/^-----BEGIN (.*)-----/) { - my $hdr = $1; - if ($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) { - $is_cert = 1; - last if ($is_crl); - } elsif ($hdr eq "X509 CRL") { - $is_crl = 1; - last if ($is_cert); - } - } - } - close IN; - return ($is_cert, $is_crl); + my ($is_cert, $is_crl) = (0,0); + my $fname = $_[0]; + + open(my $in, "<", $fname); + while(<$in>) { + if (/^-----BEGIN (.*)-----/) { + my $hdr = $1; + if ($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) { + $is_cert = 1; + last if ($is_crl); + } elsif ($hdr eq "X509 CRL") { + $is_crl = 1; + last if ($is_cert); + } + } + } + close $in; + return ($is_cert, $is_crl); } +sub compute_hash { + my $fh; + if ( $^O eq "VMS" ) { + # VMS uses the open through shell + # The file names are safe there and list form is unsupported + if (!open($fh, "-|", join(' ', @_))) { + print STDERR "Cannot compute hash on '$fname'\n"; + return; + } + } else { + if (!open($fh, "-|", @_)) { + print STDERR "Cannot compute hash on '$fname'\n"; + return; + } + } + return (<$fh>, <$fh>); +} # Link a certificate to its subject name hash value, each hash is of # the form . where n is an integer. If the hash value already exists @@ -161,72 +204,48 @@ sub check_file { # certificate fingerprints sub link_hash_cert { - my $fname = $_[0]; - $fname =~ s/'/'\\''/g; - my ($hash, $fprint) = `"$openssl" x509 $x509hash -fingerprint -noout -in "$fname"`; - chomp $hash; - chomp $fprint; - $fprint =~ s/^.*=//; - $fprint =~ tr/://d; - my $suffix = 0; - # Search for an unused hash filename - while(exists $hashlist{"$hash.$suffix"}) { - # Hash matches: if fingerprint matches its a duplicate cert - if ($hashlist{"$hash.$suffix"} eq $fprint) { - print STDERR "WARNING: Skipping duplicate certificate $fname\n"; - return; - } - $suffix++; - } - $hash .= ".$suffix"; - if ($symlink_exists) { - print "link $fname -> $hash\n" if $verbose; - symlink $fname, $hash || warn "Can't symlink, $!"; - } else { - print "copy $fname -> $hash\n" if $verbose; - if (open($in, "<", $fname)) { - if (open($out,">", $hash)) { - print $out $_ while (<$in>); - close $out; - } else { - warn "can't open $hash for write, $!"; - } - close $in; - } else { - warn "can't open $fname for read, $!"; - } - } - $hashlist{$hash} = $fprint; + link_hash($_[0], 'cert'); } # Same as above except for a CRL. CRL links are of the form .r sub link_hash_crl { - my $fname = $_[0]; - $fname =~ s/'/'\\''/g; - my ($hash, $fprint) = `"$openssl" crl $crlhash -fingerprint -noout -in '$fname'`; - chomp $hash; - chomp $fprint; - $fprint =~ s/^.*=//; - $fprint =~ tr/://d; - my $suffix = 0; - # Search for an unused hash filename - while(exists $hashlist{"$hash.r$suffix"}) { - # Hash matches: if fingerprint matches its a duplicate cert - if ($hashlist{"$hash.r$suffix"} eq $fprint) { - print STDERR "WARNING: Skipping duplicate CRL $fname\n"; - return; - } - $suffix++; - } - $hash .= ".r$suffix"; - if ($symlink_exists) { - print "link $fname -> $hash\n" if $verbose; - symlink $fname, $hash || warn "Can't symlink, $!"; - } else { - print "cp $fname -> $hash\n" if $verbose; - system ("cp", $fname, $hash); - warn "Can't copy, $!" if ($? >> 8) != 0; - } - $hashlist{$hash} = $fprint; + link_hash($_[0], 'crl'); +} + +sub link_hash { + my ($fname, $type) = @_; + my $is_cert = $type eq 'cert'; + + my ($hash, $fprint) = compute_hash($openssl, + $is_cert ? "x509" : "crl", + $is_cert ? $x509hash : $crlhash, + "-fingerprint", "-noout", + "-in", $fname); + chomp $hash; + chomp $fprint; + return if !$hash; + $fprint =~ s/^.*=//; + $fprint =~ tr/://d; + my $suffix = 0; + # Search for an unused hash filename + my $crlmark = $is_cert ? "" : "r"; + while(exists $hashlist{"$hash.$crlmark$suffix"}) { + # Hash matches: if fingerprint matches its a duplicate cert + if ($hashlist{"$hash.$crlmark$suffix"} eq $fprint) { + my $what = $is_cert ? 'certificate' : 'CRL'; + print STDERR "WARNING: Skipping duplicate $what $fname\n"; + return; + } + $suffix++; + } + $hash .= ".$crlmark$suffix"; + if ($symlink_exists) { + print "link $fname -> $hash\n" if $verbose; + symlink $fname, $hash || warn "Can't symlink, $!"; + } else { + print "copy $fname -> $hash\n" if $verbose; + copy_file($fname, $hash); + } + $hashlist{$hash} = $fprint; } diff --git a/deps/openssl/android/arm64-v8a/usr/local/bin/openssl b/deps/openssl/android/arm64-v8a/usr/local/bin/openssl index caf3541a..90a79fe4 100755 Binary files a/deps/openssl/android/arm64-v8a/usr/local/bin/openssl and b/deps/openssl/android/arm64-v8a/usr/local/bin/openssl differ diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/asn1err.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/asn1err.h index faed5a55..e1ad1fef 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/asn1err.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/asn1err.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 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 @@ -11,9 +11,7 @@ #ifndef HEADER_ASN1ERR_H # define HEADER_ASN1ERR_H -# ifndef HEADER_SYMHACKS_H -# include -# endif +# include # ifdef __cplusplus extern "C" @@ -53,6 +51,7 @@ int ERR_load_ASN1_strings(void); # define ASN1_F_ASN1_ITEM_DUP 191 # define ASN1_F_ASN1_ITEM_EMBED_D2I 120 # define ASN1_F_ASN1_ITEM_EMBED_NEW 121 +# define ASN1_F_ASN1_ITEM_EX_I2D 144 # define ASN1_F_ASN1_ITEM_FLAGS_I2D 118 # define ASN1_F_ASN1_ITEM_I2D_BIO 192 # define ASN1_F_ASN1_ITEM_I2D_FP 193 @@ -145,6 +144,7 @@ int ERR_load_ASN1_strings(void); # define ASN1_R_ASN1_SIG_PARSE_ERROR 204 # define ASN1_R_AUX_ERROR 100 # define ASN1_R_BAD_OBJECT_HEADER 102 +# define ASN1_R_BAD_TEMPLATE 230 # define ASN1_R_BMPSTRING_IS_WRONG_LENGTH 214 # define ASN1_R_BN_LIB 105 # define ASN1_R_BOOLEAN_IS_WRONG_LENGTH 106 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bn.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bn.h index 8af05d00..d8776604 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bn.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bn.h @@ -1,5 +1,5 @@ /* - * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved * * Licensed under the OpenSSL license (the "License"). You may not use @@ -56,7 +56,7 @@ extern "C" { * avoid leaking exponent information through timing, * BN_mod_exp_mont() will call BN_mod_exp_mont_consttime, * BN_div() will call BN_div_no_branch, - * BN_mod_inverse() will call BN_mod_inverse_no_branch. + * BN_mod_inverse() will call bn_mod_inverse_no_branch. */ # define BN_FLG_CONSTTIME 0x04 # define BN_FLG_SECURE 0x08 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bnerr.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bnerr.h index 9f3c7cfa..5c83777f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bnerr.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/bnerr.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2023 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 @@ -72,6 +72,7 @@ int ERR_load_BN_strings(void); # define BN_F_BN_SET_WORDS 144 # define BN_F_BN_STACK_PUSH 148 # define BN_F_BN_USUB 115 +# define BN_F_OSSL_BN_RSA_DO_UNBLIND 151 /* * BN reason codes. diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/cmserr.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/cmserr.h index 7dbc13dc..d589f592 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/cmserr.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/cmserr.h @@ -187,6 +187,7 @@ int ERR_load_CMS_strings(void); # define CMS_R_UNKNOWN_DIGEST_ALGORITHM 149 # define CMS_R_UNKNOWN_ID 150 # define CMS_R_UNSUPPORTED_COMPRESSION_ALGORITHM 151 +# define CMS_R_UNSUPPORTED_CONTENT_ENCRYPTION_ALGORITHM 194 # define CMS_R_UNSUPPORTED_CONTENT_TYPE 152 # define CMS_R_UNSUPPORTED_KEK_ALGORITHM 153 # define CMS_R_UNSUPPORTED_KEY_ENCRYPTION_ALGORITHM 179 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/e_os2.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/e_os2.h index 97a776cd..5c88e519 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/e_os2.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/e_os2.h @@ -1,5 +1,5 @@ /* - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2021 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 @@ -241,7 +241,7 @@ typedef UINT64 uint64_t; defined(__osf__) || defined(__sgi) || defined(__hpux) || \ defined(OPENSSL_SYS_VMS) || defined (__OpenBSD__) # include -# elif defined(_MSC_VER) && _MSC_VER<=1500 +# elif defined(_MSC_VER) && _MSC_VER<1600 /* * minimally required typdefs for systems not supporting inttypes.h or * stdint.h: currently just older VC++ @@ -279,7 +279,8 @@ typedef unsigned __int64 uint64_t; # define ossl_inline inline # endif -# if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L +# if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && \ + !defined(__cplusplus) # define ossl_noreturn _Noreturn # elif defined(__GNUC__) && __GNUC__ >= 2 # define ossl_noreturn __attribute__((noreturn)) diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ec.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ec.h index 5af9ebdc..24baf53c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ec.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ec.h @@ -1,5 +1,5 @@ /* - * Copyright 2002-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2002-2021 The OpenSSL Project Authors. All Rights Reserved. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved * * Licensed under the OpenSSL license (the "License"). You may not use @@ -793,12 +793,15 @@ int EC_GROUP_get_pentanomial_basis(const EC_GROUP *, unsigned int *k1, EC_GROUP *d2i_ECPKParameters(EC_GROUP **, const unsigned char **in, long len); int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out); -# define d2i_ECPKParameters_bio(bp,x) ASN1_d2i_bio_of(EC_GROUP,NULL,d2i_ECPKParameters,bp,x) -# define i2d_ECPKParameters_bio(bp,x) ASN1_i2d_bio_of_const(EC_GROUP,i2d_ECPKParameters,bp,x) -# define d2i_ECPKParameters_fp(fp,x) (EC_GROUP *)ASN1_d2i_fp(NULL, \ - (char *(*)())d2i_ECPKParameters,(fp),(unsigned char **)(x)) -# define i2d_ECPKParameters_fp(fp,x) ASN1_i2d_fp(i2d_ECPKParameters,(fp), \ - (unsigned char *)(x)) +# define d2i_ECPKParameters_bio(bp,x) \ + ASN1_d2i_bio_of(EC_GROUP, NULL, d2i_ECPKParameters, bp, x) +# define i2d_ECPKParameters_bio(bp,x) \ + ASN1_i2d_bio_of_const(EC_GROUP, i2d_ECPKParameters, bp, x) +# define d2i_ECPKParameters_fp(fp,x) \ + (EC_GROUP *)ASN1_d2i_fp(NULL, (d2i_of_void *)d2i_ECPKParameters, (fp), \ + (void **)(x)) +# define i2d_ECPKParameters_fp(fp,x) \ + ASN1_i2d_fp((i2d_of_void *)i2d_ECPKParameters, (fp), (void *)(x)) int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off); # ifndef OPENSSL_NO_STDIO @@ -829,6 +832,8 @@ void EC_KEY_set_flags(EC_KEY *key, int flags); void EC_KEY_clear_flags(EC_KEY *key, int flags); +int EC_KEY_decoded_from_explicit_params(const EC_KEY *key); + /** Creates a new EC_KEY object using a named curve as underlying * EC_GROUP object. * \param nid NID of the named curve. diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ecerr.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ecerr.h index f7b91834..51738113 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ecerr.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ecerr.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 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 @@ -243,6 +243,7 @@ int ERR_load_EC_strings(void); # define EC_R_LADDER_POST_FAILURE 136 # define EC_R_LADDER_PRE_FAILURE 153 # define EC_R_LADDER_STEP_FAILURE 162 +# define EC_R_MISSING_OID 167 # define EC_R_MISSING_PARAMETERS 124 # define EC_R_MISSING_PRIVATE_KEY 125 # define EC_R_NEED_NEW_SETUP_VALUES 157 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/engine.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/engine.h index 0780f0fb..d707eaeb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/engine.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/engine.h @@ -1,5 +1,5 @@ /* - * Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved * * Licensed under the OpenSSL license (the "License"). You may not use @@ -722,6 +722,7 @@ typedef int (*dynamic_bind_engine) (ENGINE *e, const char *id, CRYPTO_set_mem_functions(fns->mem_fns.malloc_fn, \ fns->mem_fns.realloc_fn, \ fns->mem_fns.free_fn); \ + OPENSSL_init_crypto(OPENSSL_INIT_NO_ATEXIT, NULL); \ skip_cbs: \ if (!fn(e, id)) return 0; \ return 1; } diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/evperr.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/evperr.h index d2b26ea5..b4ea90ae 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/evperr.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/evperr.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2021 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 @@ -11,9 +11,7 @@ #ifndef HEADER_EVPERR_H # define HEADER_EVPERR_H -# ifndef HEADER_SYMHACKS_H -# include -# endif +# include # ifdef __cplusplus extern "C" @@ -179,6 +177,7 @@ int ERR_load_EVP_strings(void); # define EVP_R_ONLY_ONESHOT_SUPPORTED 177 # define EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 150 # define EVP_R_OPERATON_NOT_INITIALIZED 151 +# define EVP_R_OUTPUT_WOULD_OVERFLOW 184 # define EVP_R_PARTIALLY_OVERLAPPING 162 # define EVP_R_PBKDF2_ERROR 181 # define EVP_R_PKEY_APPLICATION_ASN1_METHOD_ALREADY_REGISTERED 179 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/obj_mac.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/obj_mac.h index 483fc050..53516a06 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/obj_mac.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/obj_mac.h @@ -2,7 +2,7 @@ * WARNING: do not edit! * Generated by crypto/objects/objects.pl * - * Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2000-2022 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 * in the file LICENSE in the source distribution or at diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslconf.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslconf.h index 1b0705db..588a6544 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslconf.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslconf.h @@ -2,7 +2,7 @@ * WARNING: do not edit! * Generated by Makefile from include/openssl/opensslconf.h.in * - * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2020 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 @@ -30,9 +30,6 @@ extern "C" { #ifndef OPENSSL_NO_RC5 # define OPENSSL_NO_RC5 #endif -#ifndef OPENSSL_THREADS -# define OPENSSL_THREADS -#endif #ifndef OPENSSL_RAND_SEED_OS # define OPENSSL_RAND_SEED_OS #endif @@ -84,6 +81,9 @@ extern "C" { #ifndef OPENSSL_NO_SSL3_METHOD # define OPENSSL_NO_SSL3_METHOD #endif +#ifndef OPENSSL_NO_TESTS +# define OPENSSL_NO_TESTS +#endif #ifndef OPENSSL_NO_UBSAN # define OPENSSL_NO_UBSAN #endif @@ -93,8 +93,8 @@ extern "C" { #ifndef OPENSSL_NO_WEAK_SSL_CIPHERS # define OPENSSL_NO_WEAK_SSL_CIPHERS #endif -#ifndef OPENSSL_NO_STATIC_ENGINE -# define OPENSSL_NO_STATIC_ENGINE +#ifndef OPENSSL_NO_DYNAMIC_ENGINE +# define OPENSSL_NO_DYNAMIC_ENGINE #endif @@ -117,6 +117,11 @@ extern "C" { # undef DECLARE_DEPRECATED # define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated)); # endif +# elif defined(__SUNPRO_C) +# if (__SUNPRO_C >= 0x5130) +# undef DECLARE_DEPRECATED +# define DECLARE_DEPRECATED(f) f __attribute__ ((deprecated)); +# endif # endif #endif diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslv.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslv.h index 17d271f5..7b6c212f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslv.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/opensslv.h @@ -1,5 +1,5 @@ /* - * Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1999-2022 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 @@ -39,8 +39,8 @@ extern "C" { * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for * major minor fix final patch/beta) */ -# define OPENSSL_VERSION_NUMBER 0x1010107fL -# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1g 21 Apr 2020" +# define OPENSSL_VERSION_NUMBER 0x1010114fL +# define OPENSSL_VERSION_TEXT "OpenSSL 1.1.1t 7 Feb 2023" /*- * The macros below are to be used for shared library (.so, .dll, ...) diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/pemerr.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/pemerr.h index 0c45918f..4f7e3574 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/pemerr.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/pemerr.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 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 @@ -61,6 +61,7 @@ int ERR_load_PEM_strings(void); # define PEM_F_PEM_SIGNFINAL 112 # define PEM_F_PEM_WRITE 113 # define PEM_F_PEM_WRITE_BIO 114 +# define PEM_F_PEM_WRITE_BIO_PRIVATEKEY_TRADITIONAL 147 # define PEM_F_PEM_WRITE_PRIVATEKEY 139 # define PEM_F_PEM_X509_INFO_READ 115 # define PEM_F_PEM_X509_INFO_READ_BIO 116 @@ -99,5 +100,6 @@ int ERR_load_PEM_strings(void); # 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 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl.h index 6724ccf2..9af0c899 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl.h @@ -1,5 +1,5 @@ /* - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved * Copyright 2005 Nokia. All rights reserved. * @@ -1305,6 +1305,8 @@ DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION) # define SSL_CTRL_GET_MAX_PROTO_VERSION 131 # define SSL_CTRL_GET_SIGNATURE_NID 132 # define SSL_CTRL_GET_TMP_KEY 133 +# define SSL_CTRL_GET_VERIFY_CERT_STORE 137 +# define SSL_CTRL_GET_CHAIN_CERT_STORE 138 # define SSL_CERT_SET_FIRST 1 # define SSL_CERT_SET_NEXT 2 # define SSL_CERT_SET_SERVER 3 @@ -1360,10 +1362,14 @@ DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION) SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)(st)) # define SSL_CTX_set1_verify_cert_store(ctx,st) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)(st)) +# define SSL_CTX_get0_verify_cert_store(ctx,st) \ + SSL_CTX_ctrl(ctx,SSL_CTRL_GET_VERIFY_CERT_STORE,0,(char *)(st)) # define SSL_CTX_set0_chain_cert_store(ctx,st) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)(st)) # define SSL_CTX_set1_chain_cert_store(ctx,st) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)(st)) +# define SSL_CTX_get0_chain_cert_store(ctx,st) \ + SSL_CTX_ctrl(ctx,SSL_CTRL_GET_CHAIN_CERT_STORE,0,(char *)(st)) # define SSL_set0_chain(s,sk) \ SSL_ctrl(s,SSL_CTRL_CHAIN,0,(char *)(sk)) # define SSL_set1_chain(s,sk) \ @@ -1386,14 +1392,18 @@ DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION) SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,0,(char *)(st)) # define SSL_set1_verify_cert_store(s,st) \ SSL_ctrl(s,SSL_CTRL_SET_VERIFY_CERT_STORE,1,(char *)(st)) +#define SSL_get0_verify_cert_store(s,st) \ + SSL_ctrl(s,SSL_CTRL_GET_VERIFY_CERT_STORE,0,(char *)(st)) # define SSL_set0_chain_cert_store(s,st) \ SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,0,(char *)(st)) # define SSL_set1_chain_cert_store(s,st) \ SSL_ctrl(s,SSL_CTRL_SET_CHAIN_CERT_STORE,1,(char *)(st)) +#define SSL_get0_chain_cert_store(s,st) \ + SSL_ctrl(s,SSL_CTRL_GET_CHAIN_CERT_STORE,0,(char *)(st)) # define SSL_get1_groups(s, glist) \ SSL_ctrl(s,SSL_CTRL_GET_GROUPS,0,(int*)(glist)) # define SSL_CTX_set1_groups(ctx, glist, glistlen) \ - SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS,glistlen,(char *)(glist)) + SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS,glistlen,(int *)(glist)) # define SSL_CTX_set1_groups_list(ctx, s) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SET_GROUPS_LIST,0,(char *)(s)) # define SSL_set1_groups(s, glist, glistlen) \ diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl3.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl3.h index 8d01fcc4..07effba2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl3.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/ssl3.h @@ -1,5 +1,5 @@ /* - * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved * * Licensed under the OpenSSL license (the "License"). You may not use @@ -292,6 +292,9 @@ extern "C" { # define TLS1_FLAGS_STATELESS 0x0800 +/* Set if extended master secret extension required on renegotiation */ +# define TLS1_FLAGS_REQUIRED_EXTMS 0x1000 + # define SSL3_MT_HELLO_REQUEST 0 # define SSL3_MT_CLIENT_HELLO 1 # define SSL3_MT_SERVER_HELLO 2 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/sslerr.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/sslerr.h index 82983d3c..701d61c6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/sslerr.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/sslerr.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2021 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 @@ -70,6 +70,7 @@ int ERR_load_SSL_strings(void); # define SSL_F_FINAL_EMS 486 # define SSL_F_FINAL_KEY_SHARE 503 # define SSL_F_FINAL_MAXFRAGMENTLEN 557 +# define SSL_F_FINAL_PSK 639 # define SSL_F_FINAL_RENEGOTIATE 483 # define SSL_F_FINAL_SERVER_NAME 558 # define SSL_F_FINAL_SIG_ALGS 497 @@ -592,6 +593,7 @@ int ERR_load_SSL_strings(void); # define SSL_R_MISSING_ECDSA_SIGNING_CERT 381 # define SSL_R_MISSING_FATAL 256 # define SSL_R_MISSING_PARAMETERS 290 +# define SSL_R_MISSING_PSK_KEX_MODES_EXTENSION 310 # define SSL_R_MISSING_RSA_CERTIFICATE 168 # define SSL_R_MISSING_RSA_ENCRYPTING_CERT 169 # define SSL_R_MISSING_RSA_SIGNING_CERT 170 @@ -633,6 +635,7 @@ int ERR_load_SSL_strings(void); # define SSL_R_NO_VERIFY_COOKIE_CALLBACK 403 # define SSL_R_NULL_SSL_CTX 195 # define SSL_R_NULL_SSL_METHOD_PASSED 196 +# define SSL_R_OCSP_CALLBACK_FAILURE 294 # define SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED 197 # define SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED 344 # define SSL_R_OVERFLOW_ERROR 237 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509.h index 39ca0ba5..3ff86ec7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509.h @@ -1,5 +1,5 @@ /* - * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved * * Licensed under the OpenSSL license (the "License"). You may not use @@ -478,6 +478,7 @@ void X509_ALGOR_get0(const ASN1_OBJECT **paobj, int *pptype, const void **ppval, const X509_ALGOR *algor); void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md); int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b); +int X509_ALGOR_copy(X509_ALGOR *dest, const X509_ALGOR *src); X509_NAME *X509_NAME_dup(X509_NAME *xn); X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne); @@ -679,6 +680,8 @@ X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req); int X509_REQ_set_subject_name(X509_REQ *req, X509_NAME *name); void X509_REQ_get0_signature(const X509_REQ *req, const ASN1_BIT_STRING **psig, const X509_ALGOR **palg); +void X509_REQ_set0_signature(X509_REQ *req, ASN1_BIT_STRING *psig); +int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg); int X509_REQ_get_signature_nid(const X509_REQ *req); int i2d_re_X509_REQ_tbs(X509_REQ *req, unsigned char **pp); int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey); @@ -930,7 +933,7 @@ STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) int type, const unsigned char *bytes, int len); -void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x, +void *X509at_get0_data_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *x, const ASN1_OBJECT *obj, int lastpos, int type); X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid, int atrtype, const void *data, diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509_vfy.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509_vfy.h index adb8bce7..25c79f1b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509_vfy.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509_vfy.h @@ -1,5 +1,5 @@ /* - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 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 @@ -184,6 +184,10 @@ void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth); # define X509_V_ERR_OCSP_VERIFY_NEEDED 73 /* Need OCSP verification */ # define X509_V_ERR_OCSP_VERIFY_FAILED 74 /* Couldn't verify cert through OCSP */ # define X509_V_ERR_OCSP_CERT_UNKNOWN 75 /* Certificate wasn't recognized by the OCSP responder */ +# define X509_V_ERR_SIGNATURE_ALGORITHM_MISMATCH 76 +# define X509_V_ERR_NO_ISSUER_PUBLIC_KEY 77 +# define X509_V_ERR_UNSUPPORTED_SIGNATURE_ALGORITHM 78 +# define X509_V_ERR_EC_KEY_EXPLICIT_PARAMS 79 /* Certificate verify flags */ diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509err.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509err.h index 02738531..cd08673f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509err.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509err.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2020 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 @@ -11,9 +11,7 @@ #ifndef HEADER_X509ERR_H # define HEADER_X509ERR_H -# ifndef HEADER_SYMHACKS_H -# include -# endif +# include # ifdef __cplusplus extern "C" @@ -65,6 +63,7 @@ int ERR_load_X509_strings(void); # define X509_F_X509_OBJECT_NEW 150 # define X509_F_X509_PRINT_EX_FP 118 # define X509_F_X509_PUBKEY_DECODE 148 +# define X509_F_X509_PUBKEY_GET 161 # define X509_F_X509_PUBKEY_GET0 119 # define X509_F_X509_PUBKEY_SET 120 # define X509_F_X509_REQ_CHECK_PRIVATE_KEY 144 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3.h index 6c6eca38..3a4f04c1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3.h @@ -1,5 +1,5 @@ /* - * Copyright 1999-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1999-2023 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 @@ -136,7 +136,7 @@ typedef struct GENERAL_NAME_st { OTHERNAME *otherName; /* otherName */ ASN1_IA5STRING *rfc822Name; ASN1_IA5STRING *dNSName; - ASN1_TYPE *x400Address; + ASN1_STRING *x400Address; X509_NAME *directoryName; EDIPARTYNAME *ediPartyName; ASN1_IA5STRING *uniformResourceIdentifier; @@ -364,8 +364,9 @@ struct ISSUING_DIST_POINT_st { # define EXFLAG_INVALID_POLICY 0x800 # define EXFLAG_FRESHEST 0x1000 -/* Self signed */ -# define EXFLAG_SS 0x2000 +# define EXFLAG_SS 0x2000 /* cert is apparently self-signed */ + +# define EXFLAG_NO_FINGERPRINT 0x100000 # define KU_DIGITAL_SIGNATURE 0x0080 # define KU_NON_REPUDIATION 0x0040 diff --git a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3err.h b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3err.h index 5f25442f..3b9f7139 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3err.h +++ b/deps/openssl/android/arm64-v8a/usr/local/include/openssl/x509v3err.h @@ -1,6 +1,6 @@ /* * Generated by util/mkerr.pl DO NOT EDIT - * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 1995-2021 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 @@ -38,6 +38,7 @@ int ERR_load_X509V3_strings(void); # define X509V3_F_I2S_ASN1_IA5STRING 149 # define X509V3_F_I2S_ASN1_INTEGER 120 # define X509V3_F_I2V_AUTHORITY_INFO_ACCESS 138 +# define X509V3_F_I2V_AUTHORITY_KEYID 173 # define X509V3_F_LEVEL_ADD_NODE 168 # define X509V3_F_NOTICE_SECTION 132 # define X509V3_F_NREF_NOS 133 @@ -78,6 +79,7 @@ int ERR_load_X509V3_strings(void); # define X509V3_F_V2I_TLS_FEATURE 165 # define X509V3_F_V3_GENERIC_EXTENSION 116 # define X509V3_F_X509V3_ADD1_I2D 140 +# define X509V3_F_X509V3_ADD_LEN_VALUE 174 # define X509V3_F_X509V3_ADD_VALUE 105 # define X509V3_F_X509V3_EXT_ADD 104 # define X509V3_F_X509V3_EXT_ADD_ALIAS 106 diff --git a/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libcrypto.pc b/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libcrypto.pc index 8ad5521b..9191713f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libcrypto.pc +++ b/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libcrypto.pc @@ -6,7 +6,7 @@ enginesdir=${libdir}/engines-1.1 Name: OpenSSL-libcrypto Description: OpenSSL cryptography library -Version: 1.1.1g +Version: 1.1.1t Libs: -L${libdir} -lcrypto Libs.private: -ldl -pthread Cflags: -I${includedir} diff --git a/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libssl.pc b/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libssl.pc index 556e6a1e..340d3197 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libssl.pc +++ b/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/libssl.pc @@ -5,7 +5,7 @@ includedir=${prefix}/include Name: OpenSSL-libssl Description: Secure Sockets Layer and cryptography libraries -Version: 1.1.1g +Version: 1.1.1t Requires.private: libcrypto Libs: -L${libdir} -lssl Cflags: -I${includedir} diff --git a/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/openssl.pc b/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/openssl.pc index 551cf717..bd3a04b2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/openssl.pc +++ b/deps/openssl/android/arm64-v8a/usr/local/lib/pkgconfig/openssl.pc @@ -5,5 +5,5 @@ includedir=${prefix}/include Name: OpenSSL Description: Secure Sockets Layer and cryptography libraries and tools -Version: 1.1.1g +Version: 1.1.1t Requires: libssl libcrypto diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/CA.pl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/CA.pl.html index be1293ff..4020f5fc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/CA.pl.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/CA.pl.html @@ -92,7 +92,7 @@
-signCA
-

This option is the same as the -signreq option except it uses the configuration file section v3_ca and so makes the signed request a valid CA certificate. This is useful when creating intermediate CA from a root CA. Extra params are passed on to openssl ca command.

+

This option is the same as the -sign option except it uses the configuration file section v3_ca and so makes the signed request a valid CA certificate. This is useful when creating intermediate CA from a root CA. Extra params are passed on to openssl ca command.

-signcert
@@ -137,7 +137,7 @@
CA.pl -newca
 CA.pl -newreq
-CA.pl -signreq
+CA.pl -sign
 CA.pl -pkcs12 "My Test Certificate"

DSA CERTIFICATES

@@ -156,7 +156,7 @@ CA.pl -pkcs12 "My Test Certificate"
CA.pl -newca
-

enter cacert.pem when prompted for the CA file name.

+

enter cacert.pem when prompted for the CA filename.

Create a DSA certificate request and private key (a different set of parameters can optionally be created first):

@@ -164,7 +164,7 @@ CA.pl -pkcs12 "My Test Certificate"

Sign the request:

-
CA.pl -signreq
+
CA.pl -sign

NOTES

@@ -186,7 +186,7 @@ CA.pl -pkcs12 "My Test Certificate"

COPYRIGHT

-

Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/c_rehash.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/c_rehash.html new file mode 120000 index 00000000..bf9fd1c4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/c_rehash.html @@ -0,0 +1 @@ +rehash.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ca.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ca.html index 7f277476..c879b823 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ca.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ca.html @@ -149,7 +149,7 @@
-passin arg
-

The key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-notext
@@ -203,7 +203,7 @@
-noemailDN
-

The DN of a certificate can contain the EMAIL field if present in the request DN, however it is good policy just having the e-mail set into the altName extension of the certificate. When this option is set the EMAIL field is removed from the certificate' subject and set only in the, eventually present, extensions. The email_in_dn keyword can be used in the configuration file to enable this behaviour.

+

The DN of a certificate can contain the EMAIL field if present in the request DN, however, it is good policy just having the e-mail set into the altName extension of the certificate. When this option is set the EMAIL field is removed from the certificate' subject and set only in the, eventually present, extensions. The email_in_dn keyword can be used in the configuration file to enable this behaviour.

-batch
@@ -659,7 +659,7 @@ emailAddress = optional

COPYRIGHT

-

Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/cms.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/cms.html index 28ef380c..f3f4f44b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/cms.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/cms.html @@ -396,7 +396,7 @@
-passin arg
-

The private key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The private key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-rand file...
@@ -610,6 +610,8 @@

No revocation checking is done on the signer's certificate.

+

The -binary option does not work correctly when processing text input which (contrary to the S/MIME specification) uses LF rather than CRLF line endings.

+

HISTORY

The use of multiple -signer options and the -resign command were first added in OpenSSL 1.0.0.

@@ -624,7 +626,7 @@

COPYRIGHT

-

Copyright 2008-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2008-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/crl2pkcs7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/crl2pkcs7.html index 82157935..91b84b0c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/crl2pkcs7.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/crl2pkcs7.html @@ -71,7 +71,7 @@
-certfile filename
-

Specifies a filename containing one or more certificates in PEM format. All certificates in the file will be added to the PKCS#7 structure. This option can be used more than once to read certificates form multiple files.

+

Specifies a filename containing one or more certificates in PEM format. All certificates in the file will be added to the PKCS#7 structure. This option can be used more than once to read certificates from multiple files.

-nocrl
@@ -107,7 +107,7 @@

COPYRIGHT

-

Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dgst.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dgst.html index ed3dcce8..af717716 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dgst.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dgst.html @@ -99,7 +99,7 @@
-sign filename
-

Digitally sign the digest using the private key in "filename". Note this option does not support Ed25519 or Ed448 private keys. Use the pkeyutl command instead for this.

+

Digitally sign the digest using the private key in "filename". Note this option does not support Ed25519 or Ed448 private keys.

-keyform arg
@@ -117,7 +117,7 @@
-passin arg
-

The private key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The private key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-verify filename
@@ -238,7 +238,7 @@

COPYRIGHT

-

Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dsa.html index 55891a02..aaa11b19 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dsa.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/dsa.html @@ -67,7 +67,7 @@
-passin arg
-

The input file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-out filename
@@ -79,7 +79,7 @@
-passout arg
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-aes128, -aes192, -aes256, -aria128, -aria192, -aria256, -camellia128, -camellia192, -camellia256, -des, -des3, -idea
@@ -166,7 +166,7 @@

COPYRIGHT

-

Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ec.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ec.html index 864feca4..3e260f1d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ec.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ec.html @@ -65,7 +65,7 @@
-passin arg
-

The input file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-out filename
@@ -77,7 +77,7 @@
-passout arg
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-des|-des3|-idea
@@ -186,7 +186,7 @@

COPYRIGHT

-

Copyright 2003-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2003-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/enc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/enc.html index ce215fe4..59dc1002 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/enc.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/enc.html @@ -75,7 +75,7 @@
-pass arg
-

The password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-e
@@ -201,7 +201,7 @@
-z
-

Compress or decompress clear text using zlib before encryption or after decryption. This option exists only if OpenSSL with compiled with zlib or zlib-dynamic option.

+

Compress or decompress encrypted data using zlib after encryption or before decryption. This option exists only if OpenSSL was compiled with the zlib or zlib-dynamic option.

-none
@@ -240,7 +240,7 @@

Some of the ciphers do not have large keys and others have security implications if not used correctly. A beginner is advised to just use a strong block cipher, such as AES, in CBC mode.

-

All the block ciphers normally use PKCS#5 padding, also known as standard block padding. This allows a rudimentary integrity or password check to be performed. However since the chance of random data passing the test is better than 1 in 256 it isn't a very good test.

+

All the block ciphers normally use PKCS#5 padding, also known as standard block padding. This allows a rudimentary integrity or password check to be performed. However, since the chance of random data passing the test is better than 1 in 256 it isn't a very good test.

If padding is disabled then the input data must be a multiple of the cipher block length.

@@ -400,7 +400,7 @@ camellia-[128|192|256]-ofb 128/192/256 bit Camellia in OFB mode

COPYRIGHT

-

Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genpkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genpkey.html index 453fdde1..4a7abf7f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genpkey.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genpkey.html @@ -73,7 +73,7 @@
-pass arg
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-cipher
@@ -351,7 +351,7 @@

COPYRIGHT

-

Copyright 2006-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2006-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genrsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genrsa.html index 80ad33de..dc55023b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genrsa.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/genrsa.html @@ -52,7 +52,7 @@
-passout arg
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-aes128, -aes192, -aes256, -aria128, -aria192, -aria256, -camellia128, -camellia192, -camellia256, -des, -des3, -idea
@@ -111,7 +111,7 @@

COPYRIGHT

-

Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ocsp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ocsp.html index d8d27273..08030165 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ocsp.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ocsp.html @@ -125,7 +125,7 @@
-host hostname:port, -path pathname
-

If the host option is present then the OCSP request is sent to the host hostname on port port. path specifies the HTTP path name to use or "/" by default. This is equivalent to specifying -url with scheme http:// and the given hostname, port, and pathname.

+

If the host option is present then the OCSP request is sent to the host hostname on port port. path specifies the HTTP pathname to use or "/" by default. This is equivalent to specifying -url with scheme http:// and the given hostname, port, and pathname.

-header name=value
@@ -403,7 +403,7 @@

COPYRIGHT

-

Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-asn1parse.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-asn1parse.html new file mode 120000 index 00000000..c23546a0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-asn1parse.html @@ -0,0 +1 @@ +asn1parse.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-c_rehash.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-c_rehash.html new file mode 120000 index 00000000..bf9fd1c4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-c_rehash.html @@ -0,0 +1 @@ +rehash.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ca.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ca.html new file mode 120000 index 00000000..228e2402 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ca.html @@ -0,0 +1 @@ +ca.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ciphers.html new file mode 120000 index 00000000..8ed42045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ciphers.html @@ -0,0 +1 @@ +ciphers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-cms.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-cms.html new file mode 120000 index 00000000..3e5637d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-cms.html @@ -0,0 +1 @@ +cms.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-crl.html new file mode 120000 index 00000000..e8af8df4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-crl.html @@ -0,0 +1 @@ +crl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-crl2pkcs7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-crl2pkcs7.html new file mode 120000 index 00000000..9e258d53 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-crl2pkcs7.html @@ -0,0 +1 @@ +crl2pkcs7.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dgst.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dgst.html new file mode 120000 index 00000000..bd68eb20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dgst.html @@ -0,0 +1 @@ +dgst.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dhparam.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dhparam.html new file mode 120000 index 00000000..a9450f5c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dhparam.html @@ -0,0 +1 @@ +dhparam.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dsa.html new file mode 120000 index 00000000..ba5493b2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dsa.html @@ -0,0 +1 @@ +dsa.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dsaparam.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dsaparam.html new file mode 120000 index 00000000..bbbdcab9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-dsaparam.html @@ -0,0 +1 @@ +dsaparam.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ec.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ec.html new file mode 120000 index 00000000..30979f43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ec.html @@ -0,0 +1 @@ +ec.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ecparam.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ecparam.html new file mode 120000 index 00000000..e17275a3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ecparam.html @@ -0,0 +1 @@ +ecparam.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-enc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-enc.html new file mode 120000 index 00000000..110a939f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-enc.html @@ -0,0 +1 @@ +enc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-engine.html new file mode 120000 index 00000000..cf10453f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-engine.html @@ -0,0 +1 @@ +engine.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-errstr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-errstr.html new file mode 120000 index 00000000..d61fe4b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-errstr.html @@ -0,0 +1 @@ +errstr.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-gendsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-gendsa.html new file mode 120000 index 00000000..5d34d499 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-gendsa.html @@ -0,0 +1 @@ +gendsa.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-genpkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-genpkey.html new file mode 120000 index 00000000..6bd8ce96 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-genpkey.html @@ -0,0 +1 @@ +genpkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-genrsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-genrsa.html new file mode 120000 index 00000000..5cadd519 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-genrsa.html @@ -0,0 +1 @@ +genrsa.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-list.html new file mode 120000 index 00000000..43e3cee2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-list.html @@ -0,0 +1 @@ +list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-nseq.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-nseq.html new file mode 120000 index 00000000..c2fb8b0e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-nseq.html @@ -0,0 +1 @@ +nseq.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ocsp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ocsp.html new file mode 120000 index 00000000..1f57168c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ocsp.html @@ -0,0 +1 @@ +ocsp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-passwd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-passwd.html new file mode 120000 index 00000000..b59fbf77 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-passwd.html @@ -0,0 +1 @@ +passwd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs12.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs12.html new file mode 120000 index 00000000..fa4c03e1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs12.html @@ -0,0 +1 @@ +pkcs12.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs7.html new file mode 120000 index 00000000..f3dc901a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs7.html @@ -0,0 +1 @@ +pkcs7.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs8.html new file mode 120000 index 00000000..101c17a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkcs8.html @@ -0,0 +1 @@ +pkcs8.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkey.html new file mode 120000 index 00000000..79ad9cc4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkey.html @@ -0,0 +1 @@ +pkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkeyparam.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkeyparam.html new file mode 120000 index 00000000..79a8d67c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkeyparam.html @@ -0,0 +1 @@ +pkeyparam.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkeyutl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkeyutl.html new file mode 120000 index 00000000..cb04416b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-pkeyutl.html @@ -0,0 +1 @@ +pkeyutl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-prime.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-prime.html new file mode 120000 index 00000000..8e866a91 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-prime.html @@ -0,0 +1 @@ +prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rand.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rand.html new file mode 120000 index 00000000..bfbee731 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rand.html @@ -0,0 +1 @@ +rand.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rehash.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rehash.html new file mode 120000 index 00000000..bf9fd1c4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rehash.html @@ -0,0 +1 @@ +rehash.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-req.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-req.html new file mode 120000 index 00000000..553a81b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-req.html @@ -0,0 +1 @@ +req.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rsa.html new file mode 120000 index 00000000..236c70b0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rsa.html @@ -0,0 +1 @@ +rsa.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rsautl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rsautl.html new file mode 120000 index 00000000..5430c93c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-rsautl.html @@ -0,0 +1 @@ +rsautl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_client.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_client.html new file mode 120000 index 00000000..e846b725 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_client.html @@ -0,0 +1 @@ +s_client.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_server.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_server.html new file mode 120000 index 00000000..1e351edf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_server.html @@ -0,0 +1 @@ +s_server.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_time.html new file mode 120000 index 00000000..e8f476f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-s_time.html @@ -0,0 +1 @@ +s_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-sess_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-sess_id.html new file mode 120000 index 00000000..b4e6c720 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-sess_id.html @@ -0,0 +1 @@ +sess_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-smime.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-smime.html new file mode 120000 index 00000000..e631a13e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-smime.html @@ -0,0 +1 @@ +smime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-speed.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-speed.html new file mode 120000 index 00000000..4484c7d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-speed.html @@ -0,0 +1 @@ +speed.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-spkac.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-spkac.html new file mode 120000 index 00000000..b7089fbd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-spkac.html @@ -0,0 +1 @@ +spkac.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-srp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-srp.html new file mode 120000 index 00000000..401873e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-srp.html @@ -0,0 +1 @@ +srp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-storeutl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-storeutl.html new file mode 120000 index 00000000..502afefc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-storeutl.html @@ -0,0 +1 @@ +storeutl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ts.html new file mode 120000 index 00000000..99fab0cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-ts.html @@ -0,0 +1 @@ +ts.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-tsget.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-tsget.html new file mode 120000 index 00000000..6d223e05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-tsget.html @@ -0,0 +1 @@ +tsget.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-verify.html new file mode 120000 index 00000000..7719fd71 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-verify.html @@ -0,0 +1 @@ +verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-version.html new file mode 120000 index 00000000..262fd465 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-version.html @@ -0,0 +1 @@ +version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-x509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-x509.html new file mode 120000 index 00000000..b215f7a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/openssl-x509.html @@ -0,0 +1 @@ +x509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/passwd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/passwd.html index 30e8706a..9c8760e0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/passwd.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/passwd.html @@ -30,7 +30,7 @@

DESCRIPTION

-

The passwd command computes the hash of a password typed at run-time or the hash of each password in a list. The password list is taken from the named file for option -in file, from stdin for option -stdin, or from the command line, or from the terminal otherwise. The Unix standard algorithm crypt and the MD5-based BSD password algorithm 1, its Apache variant apr1, and its AIX variant are available.

+

The passwd command computes the hash of a password typed at run-time or the hash of each password in a list. The password list is taken from the named file for option -in file, from stdin for option -stdin, or from the command line, or from the terminal otherwise.

OPTIONS

@@ -142,7 +142,7 @@ xxxxxxxx$8Oaipk/GPKhC64w/YVeFD/

COPYRIGHT

-

Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs12.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs12.html index 4a8cf87c..71adbcee 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs12.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs12.html @@ -65,13 +65,13 @@
-passin arg
-

The PKCS#12 file (i.e. input file) password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The PKCS#12 file (i.e. input file) password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-passout arg
-

Pass phrase source to encrypt any outputted private keys with. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

Pass phrase source to encrypt any outputted private keys with. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-password arg
@@ -221,13 +221,13 @@
-pass arg, -passout arg
-

The PKCS#12 file (i.e. output file) password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The PKCS#12 file (i.e. output file) password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-passin password
-

Pass phrase source to decrypt any input private keys with. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

Pass phrase source to decrypt any input private keys with. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-chain
@@ -251,7 +251,7 @@
-keyex|-keysig
-

Specifies that the private key is to be used for key exchange or just signing. This option is only interpreted by MSIE and similar MS software. Normally "export grade" software will only allow 512 bit RSA keys to be used for encryption purposes but arbitrary length keys for signing. The -keysig option marks the key for signing only. Signing only keys can be used for S/MIME signing, authenticode (ActiveX control signing) and SSL client authentication, however due to a bug only MSIE 5.0 and later support the use of signing only keys for SSL client authentication.

+

Specifies that the private key is to be used for key exchange or just signing. This option is only interpreted by MSIE and similar MS software. Normally "export grade" software will only allow 512 bit RSA keys to be used for encryption purposes but arbitrary length keys for signing. The -keysig option marks the key for signing only. Signing only keys can be used for S/MIME signing, authenticode (ActiveX control signing) and SSL client authentication, however, due to a bug only MSIE 5.0 and later support the use of signing only keys for SSL client authentication.

-macalg digest
@@ -367,7 +367,7 @@

COPYRIGHT

-

Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs8.html index be9b789b..2f629a2d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs8.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkcs8.html @@ -82,7 +82,7 @@
-passin arg
-

The input file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-out filename
@@ -94,7 +94,7 @@
-passout arg
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-iter count
@@ -261,7 +261,7 @@

STANDARDS

-

Test vectors from this PKCS#5 v2.0 implementation were posted to the pkcs-tng mailing list using triple DES, DES and RC2 with high iteration counts, several people confirmed that they could decrypt the private keys produced and Therefore it can be assumed that the PKCS#5 v2.0 implementation is reasonably accurate at least as far as these algorithms are concerned.

+

Test vectors from this PKCS#5 v2.0 implementation were posted to the pkcs-tng mailing list using triple DES, DES and RC2 with high iteration counts, several people confirmed that they could decrypt the private keys produced and therefore, it can be assumed that the PKCS#5 v2.0 implementation is reasonably accurate at least as far as these algorithms are concerned.

The format of PKCS#8 DSA (and other) private keys is not well documented: it is hidden away in PKCS#11 v2.01, section 11.9. OpenSSL's default DSA PKCS#8 private key format complies with this standard.

@@ -279,7 +279,7 @@

COPYRIGHT

-

Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkey.html index 9ee24a3b..f9f60dd2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkey.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkey.html @@ -64,7 +64,7 @@
-passin arg
-

The input file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-out filename
@@ -76,7 +76,7 @@
-passout password
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-traditional
@@ -173,7 +173,7 @@

COPYRIGHT

-

Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2006-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkeyutl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkeyutl.html index 9a7e88c7..24f0868e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkeyutl.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/pkeyutl.html @@ -38,7 +38,7 @@

DESCRIPTION

-

The pkeyutl command can be used to perform low level public key operations using any supported algorithm.

+

The pkeyutl command can be used to perform low-level public key operations using any supported algorithm.

OPTIONS

@@ -83,7 +83,7 @@
-passin arg
-

The input key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-peerkey file
@@ -251,6 +251,12 @@

For PSS and OAEP padding sets the MGF1 digest. If the MGF1 digest is not explicitly set in PSS mode then the signing digest is used.

+ +
rsa_oaep_md:digest
+
+ +

Sets the digest used for the OAEP hash function. If not explicitly set then SHA1 is used.

+
@@ -313,13 +319,18 @@
openssl pkeyutl -kdf TLS1-PRF -kdflen 48 -pkeyopt md:SHA256 \
    -pkeyopt hexsecret:ff -pkeyopt hexseed:ff -hexdump
+

Decrypt some data using a private key with OAEP padding using SHA256:

+ +
openssl pkeyutl -decrypt -in file -inkey key.pem -out secret \
+   -pkeyopt rsa_padding_mode:oaep -pkeyopt rsa_oaep_md:sha256
+

SEE ALSO

genpkey(1), pkey(1), rsautl(1) dgst(1), rsa(1), genrsa(1), EVP_PKEY_CTX_set_hkdf_md(3), EVP_PKEY_CTX_set_tls1_prf_md(3)

COPYRIGHT

-

Copyright 2006-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2006-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/req.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/req.html index 3494c087..d8a36438 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/req.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/req.html @@ -75,7 +75,7 @@
-passin arg
-

The input file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-out filename
@@ -87,7 +87,7 @@
-passout arg
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-text
@@ -600,7 +600,7 @@ problems making Certificate Request

COPYRIGHT

-

Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/rsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/rsa.html index b5a0ba9f..d5e84845 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/rsa.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/rsa.html @@ -66,7 +66,7 @@
-passin arg
-

The input file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-out filename
@@ -78,7 +78,7 @@
-passout password
-

The output file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The output file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-aes128, -aes192, -aes256, -aria128, -aria192, -aria256, -camellia128, -camellia192, -camellia256, -des, -des3, -idea
@@ -190,7 +190,7 @@

COPYRIGHT

-

Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_client.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_client.html index 11617c97..2e247106 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_client.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_client.html @@ -157,7 +157,7 @@
-pass arg
-

the private key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

the private key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-verify depth
@@ -310,13 +310,13 @@ DANE TLSA 2 1 1 ...ee12d2cc90180517616e8a18 matched TA certificate at depth 1
-nbio_test
-

Tests non-blocking I/O

+

Tests nonblocking I/O

-nbio
-

Turns on non-blocking I/O

+

Turns on nonblocking I/O

-crlf
@@ -643,13 +643,13 @@ DANE TLSA 2 1 1 ...ee12d2cc90180517616e8a18 matched TA certificate at depth 1

If the handshake fails then there are several possible causes, if it is nothing obvious like no client certificate then the -bugs, -ssl3, -tls1, -no_ssl3, -no_tls1 options can be tried in case it is a buggy server. In particular you should play with these options before submitting a bug report to an OpenSSL mailing list.

-

A frequent problem when attempting to get client certificates working is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its "acceptable CA list" when it requests a certificate. By using s_client the CA list can be viewed and checked. However some servers only request client authentication after a specific URL is requested. To obtain the list in this case it is necessary to use the -prexit option and send an HTTP request for an appropriate page.

+

A frequent problem when attempting to get client certificates working is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its "acceptable CA list" when it requests a certificate. By using s_client the CA list can be viewed and checked. However, some servers only request client authentication after a specific URL is requested. To obtain the list in this case it is necessary to use the -prexit option and send an HTTP request for an appropriate page.

-

If a certificate is specified on the command line using the -cert option it will not be used unless the server specifically requests a client certificate. Therefor merely including a client certificate on the command line is no guarantee that the certificate works.

+

If a certificate is specified on the command line using the -cert option it will not be used unless the server specifically requests a client certificate. Therefore, merely including a client certificate on the command line is no guarantee that the certificate works.

If there are problems verifying a server certificate then the -showcerts option can be used to show all the certificates sent by the server.

-

The s_client utility is a test tool and is designed to continue the handshake after any certificate verification errors. As a result it will accept any certificate chain (trusted or not) sent by the peer. None test applications should not do this as it makes them vulnerable to a MITM attack. This behaviour can be changed by with the -verify_return_error option: any verify errors are then returned aborting the handshake.

+

The s_client utility is a test tool and is designed to continue the handshake after any certificate verification errors. As a result it will accept any certificate chain (trusted or not) sent by the peer. Non-test applications should not do this as it makes them vulnerable to a MITM attack. This behaviour can be changed by with the -verify_return_error option: any verify errors are then returned aborting the handshake.

The -bind option may be useful if the server or a firewall requires connections to come from some particular address and or port.

@@ -669,7 +669,7 @@ DANE TLSA 2 1 1 ...ee12d2cc90180517616e8a18 matched TA certificate at depth 1

COPYRIGHT

-

Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_server.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_server.html index 8dfa0356..78dc210d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_server.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_server.html @@ -155,7 +155,7 @@
-pass val
-

The private key password source. For more information about the format of val see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The private key password source. For more information about the format of val see "Pass Phrase Options" in openssl(1).

-dcert infile, -dkey infile
@@ -305,7 +305,7 @@
-id_prefix val
-

Generate SSL/TLS session IDs prefixed by val. This is mostly useful for testing any SSL/TLS code (eg. proxies) that wish to deal with multiple servers, when each of which might be generating a unique range of session IDs (eg. with a certain prefix).

+

Generate SSL/TLS session IDs prefixed by val. This is mostly useful for testing any SSL/TLS code (e.g. proxies) that wish to deal with multiple servers, when each of which might be generating a unique range of session IDs (e.g. with a certain prefix).

-rand file...
@@ -565,7 +565,7 @@
-alpn val, -nextprotoneg val
-

These flags enable the Enable the Application-Layer Protocol Negotiation or Next Protocol Negotiation (NPN) extension, respectively. ALPN is the IETF standard and replaces NPN. The val list is a comma-separated list of supported protocol names. The list should contain the most desirable protocols first. Protocol names are printable ASCII strings, for example "http/1.1" or "spdy/3". The flag -nextprotoneg cannot be specified if -tls1_3 is used.

+

These flags enable the Application-Layer Protocol Negotiation or Next Protocol Negotiation (NPN) extension, respectively. ALPN is the IETF standard and replaces NPN. The val list is a comma-separated list of supported protocol names. The list should contain the most desirable protocols first. Protocol names are printable ASCII strings, for example "http/1.1" or "spdy/3". The flag -nextprotoneg cannot be specified if -tls1_3 is used.

-engine val
@@ -702,7 +702,7 @@

COPYRIGHT

-

Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_time.html index 81cd2961..348a779f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_time.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/s_time.html @@ -162,9 +162,9 @@

If the handshake fails then there are several possible causes, if it is nothing obvious like no client certificate then the -bugs and -ssl3 options can be tried in case it is a buggy server. In particular you should play with these options before submitting a bug report to an OpenSSL mailing list.

-

A frequent problem when attempting to get client certificates working is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its "acceptable CA list" when it requests a certificate. By using s_client(1) the CA list can be viewed and checked. However some servers only request client authentication after a specific URL is requested. To obtain the list in this case it is necessary to use the -prexit option of s_client(1) and send an HTTP request for an appropriate page.

+

A frequent problem when attempting to get client certificates working is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its "acceptable CA list" when it requests a certificate. By using s_client(1) the CA list can be viewed and checked. However, some servers only request client authentication after a specific URL is requested. To obtain the list in this case it is necessary to use the -prexit option of s_client(1) and send an HTTP request for an appropriate page.

-

If a certificate is specified on the command line using the -cert option it will not be used unless the server specifically requests a client certificate. Therefor merely including a client certificate on the command line is no guarantee that the certificate works.

+

If a certificate is specified on the command line using the -cert option it will not be used unless the server specifically requests a client certificate. Therefore, merely including a client certificate on the command line is no guarantee that the certificate works.

BUGS

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/sess_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/sess_id.html index c2ae674e..5ed890cd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/sess_id.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/sess_id.html @@ -171,7 +171,7 @@
-----BEGIN SSL SESSION PARAMETERS-----
 -----END SSL SESSION PARAMETERS-----
-

Since the SSL session output contains the master key it is possible to read the contents of an encrypted session using this information. Therefore appropriate security precautions should be taken if the information is being output by a "real" application. This is however strongly discouraged and should only be used for debugging purposes.

+

Since the SSL session output contains the master key it is possible to read the contents of an encrypted session using this information. Therefore, appropriate security precautions should be taken if the information is being output by a "real" application. This is however strongly discouraged and should only be used for debugging purposes.

BUGS

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/smime.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/smime.html index 5e78ea5f..2260d033 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/smime.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/smime.html @@ -253,7 +253,7 @@
-passin arg
-

The private key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The private key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-rand file...
@@ -442,7 +442,7 @@

COPYRIGHT

-

Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/spkac.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/spkac.html index 40fbd64a..ebee2b15 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/spkac.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/spkac.html @@ -71,7 +71,7 @@
-passin password
-

The input file password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

The input file password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-challenge string
@@ -155,7 +155,7 @@ dq+NQ3F+X4deMx9AaEglZtULwV4=

COPYRIGHT

-

Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/storeutl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/storeutl.html index 27ed22e6..a80a2518 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/storeutl.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/storeutl.html @@ -58,7 +58,7 @@
-passin arg
-

the key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

+

the key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

-text
@@ -139,7 +139,7 @@

COPYRIGHT

-

Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.

+

Copyright 2016-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ts.html index b8d5a619..198b1e9b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ts.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/ts.html @@ -58,15 +58,15 @@
  • The TSA client computes a one-way hash value for a data file and sends the hash to the TSA.

  • -
  • The TSA attaches the current date and time to the received hash value, signs them and sends the time stamp token back to the client. By creating this token the TSA certifies the existence of the original data file at the time of response generation.

    +
  • The TSA attaches the current date and time to the received hash value, signs them and sends the timestamp token back to the client. By creating this token the TSA certifies the existence of the original data file at the time of response generation.

  • -
  • The TSA client receives the time stamp token and verifies the signature on it. It also checks if the token contains the same hash value that it had sent to the TSA.

    +
  • The TSA client receives the timestamp token and verifies the signature on it. It also checks if the token contains the same hash value that it had sent to the TSA.

  • -

    There is one DER encoded protocol data unit defined for transporting a time stamp request to the TSA and one for sending the time stamp response back to the client. The ts command has three main functions: creating a time stamp request based on a data file, creating a time stamp response based on a request, verifying if a response corresponds to a particular request or a data file.

    +

    There is one DER encoded protocol data unit defined for transporting a timestamp request to the TSA and one for sending the timestamp response back to the client. The ts command has three main functions: creating a timestamp request based on a data file, creating a timestamp response based on a request, verifying if a response corresponds to a particular request or a data file.

    There is no support for sending the requests/responses automatically over HTTP or TCP yet as suggested in RFC 3161. The users must send the requests either by ftp or e-mail.

    @@ -74,7 +74,7 @@

    Time Stamp Request generation

    -

    The -query switch can be used for creating and printing a time stamp request with the following options:

    +

    The -query switch can be used for creating and printing a timestamp request with the following options:

    @@ -99,7 +99,7 @@
    -data file_to_hash
    -

    The data file for which the time stamp request needs to be created. stdin is the default if neither the -data nor the -digest parameter is specified. (Optional)

    +

    The data file for which the timestamp request needs to be created. stdin is the default if neither the -data nor the -digest parameter is specified. (Optional)

    -digest digest_bytes
    @@ -117,7 +117,7 @@
    -tspolicy object_id
    -

    The policy that the client expects the TSA to use for creating the time stamp token. Either the dotted OID notation or OID names defined in the config file can be used. If no policy is requested the TSA will use its own default policy. (Optional)

    +

    The policy that the client expects the TSA to use for creating the timestamp token. Either the dotted OID notation or OID names defined in the config file can be used. If no policy is requested the TSA will use its own default policy. (Optional)

    -no_nonce
    @@ -135,7 +135,7 @@
    -in request.tsq
    -

    This option specifies a previously created time stamp request in DER format that will be printed into the output file. Useful when you need to examine the content of a request in human-readable format. (Optional)

    +

    This option specifies a previously created timestamp request in DER format that will be printed into the output file. Useful when you need to examine the content of a request in human-readable format. (Optional)

    -out request.tsq
    @@ -154,7 +154,7 @@

    Time Stamp Response generation

    -

    A time stamp response (TimeStampResp) consists of a response status and the time stamp token itself (ContentInfo), if the token generation was successful. The -reply command is for creating a time stamp response or time stamp token based on a request and printing the response/token in human-readable format. If -token_out is not specified the output is always a time stamp response (TimeStampResp), otherwise it is a time stamp token (ContentInfo).

    +

    A timestamp response (TimeStampResp) consists of a response status and the timestamp token itself (ContentInfo), if the token generation was successful. The -reply command is for creating a timestamp response or timestamp token based on a request and printing the response/token in human-readable format. If -token_out is not specified the output is always a timestamp response (TimeStampResp), otherwise it is a timestamp token (ContentInfo).

    @@ -173,13 +173,13 @@
    -queryfile request.tsq
    -

    The name of the file containing a DER encoded time stamp request. (Optional)

    +

    The name of the file containing a DER encoded timestamp request. (Optional)

    -passin password_src
    -

    Specifies the password source for the private key of the TSA. See PASS PHRASE ARGUMENTS in openssl(1). (Optional)

    +

    Specifies the password source for the private key of the TSA. See "Pass Phrase Options" in openssl(1). (Optional)

    -signer tsa_cert.pem
    @@ -215,13 +215,13 @@
    -in response.tsr
    -

    Specifies a previously created time stamp response or time stamp token (if -token_in is also specified) in DER format that will be written to the output file. This option does not require a request, it is useful e.g. when you need to examine the content of a response or token or you want to extract the time stamp token from a response. If the input is a token and the output is a time stamp response a default 'granted' status info is added to the token. (Optional)

    +

    Specifies a previously created timestamp response or timestamp token (if -token_in is also specified) in DER format that will be written to the output file. This option does not require a request, it is useful e.g. when you need to examine the content of a response or token or you want to extract the timestamp token from a response. If the input is a token and the output is a timestamp response a default 'granted' status info is added to the token. (Optional)

    -token_in
    -

    This flag can be used together with the -in option and indicates that the input is a DER encoded time stamp token (ContentInfo) instead of a time stamp response (TimeStampResp). (Optional)

    +

    This flag can be used together with the -in option and indicates that the input is a DER encoded timestamp token (ContentInfo) instead of a timestamp response (TimeStampResp). (Optional)

    -out response.tsr
    @@ -233,7 +233,7 @@
    -token_out
    -

    The output is a time stamp token (ContentInfo) instead of time stamp response (TimeStampResp). (Optional)

    +

    The output is a timestamp token (ContentInfo) instead of timestamp response (TimeStampResp). (Optional)

    -text
    @@ -252,7 +252,7 @@

    Time Stamp Response verification

    -

    The -verify command is for verifying if a time stamp response or time stamp token is valid and matches a particular time stamp request or data file. The -verify command does not use the configuration file.

    +

    The -verify command is for verifying if a timestamp response or timestamp token is valid and matches a particular timestamp request or data file. The -verify command does not use the configuration file.

    @@ -271,19 +271,19 @@
    -queryfile request.tsq
    -

    The original time stamp request in DER format. The -data and -digest options must not be specified with this one. (Optional)

    +

    The original timestamp request in DER format. The -data and -digest options must not be specified with this one. (Optional)

    -in response.tsr
    -

    The time stamp response that needs to be verified in DER format. (Mandatory)

    +

    The timestamp response that needs to be verified in DER format. (Mandatory)

    -token_in
    -

    This flag can be used together with the -in option and indicates that the input is a DER encoded time stamp token (ContentInfo) instead of a time stamp response (TimeStampResp). (Optional)

    +

    This flag can be used together with the -in option and indicates that the input is a DER encoded timestamp token (ContentInfo) instead of a timestamp response (TimeStampResp). (Optional)

    -CApath trusted_cert_path
    @@ -347,7 +347,7 @@
    serial
    -

    The name of the file containing the hexadecimal serial number of the last time stamp response created. This number is incremented by 1 for each response. If the file does not exist at the time of response generation a new file is created with serial number 1. (Mandatory)

    +

    The name of the file containing the hexadecimal serial number of the last timestamp response created. This number is incremented by 1 for each response. If the file does not exist at the time of response generation a new file is created with serial number 1. (Mandatory)

    crypto_device
    @@ -407,7 +407,7 @@
    clock_precision_digits
    -

    Specifies the maximum number of digits, which represent the fraction of seconds, that need to be included in the time field. The trailing zeroes must be removed from the time, so there might actually be fewer digits, or no fraction of seconds at all. Supported only on UNIX platforms. The maximum value is 6, default is 0. (Optional)

    +

    Specifies the maximum number of digits, which represent the fraction of seconds, that need to be included in the time field. The trailing zeros must be removed from the time, so there might actually be fewer digits, or no fraction of seconds at all. Supported only on UNIX platforms. The maximum value is 6, default is 0. (Optional)

    ordering
    @@ -442,12 +442,12 @@

    Time Stamp Request

    -

    To create a time stamp request for design1.txt with SHA-1 without nonce and policy and no certificate is required in the response:

    +

    To create a timestamp request for design1.txt with SHA-1 without nonce and policy and no certificate is required in the response:

    openssl ts -query -data design1.txt -no_nonce \
           -out design1.tsq
    -

    To create a similar time stamp request with specifying the message imprint explicitly:

    +

    To create a similar timestamp request with specifying the message imprint explicitly:

    openssl ts -query -digest b7e5d3f93198b38379852f2c04e78d73abdd0f4b \
            -no_nonce -out design1.tsq
    @@ -456,7 +456,7 @@
    openssl ts -query -in design1.tsq -text
    -

    To create a time stamp request which includes the MD-5 digest of design2.txt, requests the signer certificate and nonce, specifies a policy id (assuming the tsa_policy1 name is defined in the OID section of the config file):

    +

    To create a timestamp request which includes the MD-5 digest of design2.txt, requests the signer certificate and nonce, specifies a policy id (assuming the tsa_policy1 name is defined in the OID section of the config file):

    openssl ts -query -data design2.txt -md5 \
           -tspolicy tsa_policy1 -cert -out design2.tsq
    @@ -469,7 +469,7 @@

    See req(1), ca(1), and x509(1) for instructions. The examples below assume that cacert.pem contains the certificate of the CA, tsacert.pem is the signing certificate issued by cacert.pem and tsakey.pem is the private key of the TSA.

    -

    To create a time stamp response for a request:

    +

    To create a timestamp response for a request:

    openssl ts -reply -queryfile design1.tsq -inkey tsakey.pem \
           -signer tsacert.pem -out design1.tsr
    @@ -478,41 +478,41 @@
    openssl ts -reply -queryfile design1.tsq -out design1.tsr
    -

    To print a time stamp reply to stdout in human readable format:

    +

    To print a timestamp reply to stdout in human readable format:

    openssl ts -reply -in design1.tsr -text
    -

    To create a time stamp token instead of time stamp response:

    +

    To create a timestamp token instead of timestamp response:

    openssl ts -reply -queryfile design1.tsq -out design1_token.der -token_out
    -

    To print a time stamp token to stdout in human readable format:

    +

    To print a timestamp token to stdout in human readable format:

    openssl ts -reply -in design1_token.der -token_in -text -token_out
    -

    To extract the time stamp token from a response:

    +

    To extract the timestamp token from a response:

    openssl ts -reply -in design1.tsr -out design1_token.der -token_out
    -

    To add 'granted' status info to a time stamp token thereby creating a valid response:

    +

    To add 'granted' status info to a timestamp token thereby creating a valid response:

    openssl ts -reply -in design1_token.der -token_in -out design1.tsr

    Time Stamp Verification

    -

    To verify a time stamp reply against a request:

    +

    To verify a timestamp reply against a request:

    openssl ts -verify -queryfile design1.tsq -in design1.tsr \
           -CAfile cacert.pem -untrusted tsacert.pem
    -

    To verify a time stamp reply that includes the certificate chain:

    +

    To verify a timestamp reply that includes the certificate chain:

    openssl ts -verify -queryfile design2.tsq -in design2.tsr \
           -CAfile cacert.pem
    -

    To verify a time stamp token against the original data file: openssl ts -verify -data design2.txt -in design2.tsr \ -CAfile cacert.pem

    +

    To verify a timestamp token against the original data file: openssl ts -verify -data design2.txt -in design2.tsr \ -CAfile cacert.pem

    -

    To verify a time stamp token against a message imprint: openssl ts -verify -digest b7e5d3f93198b38379852f2c04e78d73abdd0f4b \ -in design2.tsr -CAfile cacert.pem

    +

    To verify a timestamp token against a message imprint: openssl ts -verify -digest b7e5d3f93198b38379852f2c04e78d73abdd0f4b \ -in design2.tsr -CAfile cacert.pem

    You could also look at the 'test' directory for more examples.

    @@ -520,10 +520,10 @@
      -
    • No support for time stamps over SMTP, though it is quite easy to implement an automatic e-mail based TSA with procmail(1) and perl(1). HTTP server support is provided in the form of a separate apache module. HTTP client support is provided by tsget(1). Pure TCP/IP protocol is not supported.

      +
    • No support for timestamps over SMTP, though it is quite easy to implement an automatic e-mail based TSA with procmail(1) and perl(1). HTTP server support is provided in the form of a separate apache module. HTTP client support is provided by tsget(1). Pure TCP/IP protocol is not supported.

    • -
    • The file containing the last serial number of the TSA is not locked when being read or written. This is a problem if more than one instance of openssl(1) is trying to create a time stamp response at the same time. This is not an issue when using the apache server module, it does proper locking.

      +
    • The file containing the last serial number of the TSA is not locked when being read or written. This is a problem if more than one instance of openssl(1) is trying to create a timestamp response at the same time. This is not an issue when using the apache server module, it does proper locking.

    • Look for the FIXME word in the source files.

      @@ -543,7 +543,7 @@

      COPYRIGHT

      -

      Copyright 2006-2019 The OpenSSL Project Authors. All Rights Reserved.

      +

      Copyright 2006-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

      diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/tsget.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/tsget.html index ed6c7bdc..d3161e18 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/tsget.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/tsget.html @@ -32,9 +32,9 @@

      DESCRIPTION

      -

      The tsget command can be used for sending a time stamp request, as specified in RFC 3161, to a time stamp server over HTTP or HTTPS and storing the time stamp response in a file. This tool cannot be used for creating the requests and verifying responses, you can use the OpenSSL ts(1) command to do that. tsget can send several requests to the server without closing the TCP connection if more than one requests are specified on the command line.

      +

      The tsget command can be used for sending a timestamp request, as specified in RFC 3161, to a timestamp server over HTTP or HTTPS and storing the timestamp response in a file. This tool cannot be used for creating the requests and verifying responses, you can use the OpenSSL ts(1) command to do that. tsget can send several requests to the server without closing the TCP connection if more than one requests are specified on the command line.

      -

      The tool sends the following HTTP request for each time stamp request:

      +

      The tool sends the following HTTP request for each timestamp request:

      POST url HTTP/1.1
       User-Agent: OpenTSA tsget.pl/<version>
      @@ -55,7 +55,7 @@ Content-Length: length of body
       
      -h server_url
      -

      The URL of the HTTP/HTTPS server listening for time stamp requests.

      +

      The URL of the HTTP/HTTPS server listening for timestamp requests.

      -e extension
      @@ -67,7 +67,7 @@ Content-Length: length of body
      -o output
      -

      This option can be specified only when just one request is sent to the server. The time stamp response will be written to the given output file. '-' means standard output. In case of multiple time stamp requests or the absence of this argument the names of the output files will be derived from the names of the input files and the default or specified extension argument. (Optional)

      +

      This option can be specified only when just one request is sent to the server. The timestamp response will be written to the given output file. '-' means standard output. In case of multiple timestamp requests or the absence of this argument the names of the output files will be derived from the names of the input files and the default or specified extension argument. (Optional)

      -v
      @@ -127,7 +127,7 @@ Content-Length: length of body
      [request]...
      -

      List of files containing RFC 3161 DER-encoded time stamp requests. If no requests are specified only one request will be sent to the server and it will be read from the standard input. (Optional)

      +

      List of files containing RFC 3161 DER-encoded timestamp requests. If no requests are specified only one request will be sent to the server and it will be read from the standard input. (Optional)

    @@ -138,29 +138,29 @@ Content-Length: length of body

    EXAMPLES

    -

    The examples below presume that file1.tsq and file2.tsq contain valid time stamp requests, tsa.opentsa.org listens at port 8080 for HTTP requests and at port 8443 for HTTPS requests, the TSA service is available at the /tsa absolute path.

    +

    The examples below presume that file1.tsq and file2.tsq contain valid timestamp requests, tsa.opentsa.org listens at port 8080 for HTTP requests and at port 8443 for HTTPS requests, the TSA service is available at the /tsa absolute path.

    -

    Get a time stamp response for file1.tsq over HTTP, output is written to file1.tsr:

    +

    Get a timestamp response for file1.tsq over HTTP, output is written to file1.tsr:

    tsget -h http://tsa.opentsa.org:8080/tsa file1.tsq
    -

    Get a time stamp response for file1.tsq and file2.tsq over HTTP showing progress, output is written to file1.reply and file2.reply respectively:

    +

    Get a timestamp response for file1.tsq and file2.tsq over HTTP showing progress, output is written to file1.reply and file2.reply respectively:

    tsget -h http://tsa.opentsa.org:8080/tsa -v -e .reply \
           file1.tsq file2.tsq
    -

    Create a time stamp request, write it to file3.tsq, send it to the server and write the response to file3.tsr:

    +

    Create a timestamp request, write it to file3.tsq, send it to the server and write the response to file3.tsr:

    openssl ts -query -data file3.txt -cert | tee file3.tsq \
           | tsget -h http://tsa.opentsa.org:8080/tsa \
           -o file3.tsr
    -

    Get a time stamp response for file1.tsq over HTTPS without client authentication:

    +

    Get a timestamp response for file1.tsq over HTTPS without client authentication:

    tsget -h https://tsa.opentsa.org:8443/tsa \
           -C cacerts.pem file1.tsq
    -

    Get a time stamp response for file1.tsq over HTTPS with certificate-based client authentication (it will ask for the passphrase if client_key.pem is protected):

    +

    Get a timestamp response for file1.tsq over HTTPS with certificate-based client authentication (it will ask for the passphrase if client_key.pem is protected):

    tsget -h https://tsa.opentsa.org:8443/tsa -C cacerts.pem \
           -k client_key.pem -c client_cert.pem file1.tsq
    @@ -178,7 +178,7 @@ tsget file1.tsq

    COPYRIGHT

    -

    Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2006-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/verify.html index da3e6252..fedb1498 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/verify.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/verify.html @@ -85,7 +85,7 @@
    -check_ss_sig
    -

    Verify the signature on the self-signed root CA. This is disabled by default because it doesn't add any security.

    +

    Verify the signature of the last certificate in a chain if the certificate is supposedly self-signed. This is prohibited and will result in an error if it is a non-conforming CA certificate with key usage restrictions not including the keyCertSign bit. This verification is disabled by default because it doesn't add any security.

    -CRLfile file
    @@ -296,7 +296,7 @@

    VERIFY OPERATION

    -

    The verify program uses the same functions as the internal SSL and S/MIME verification, therefore this description applies to these verify operations too.

    +

    The verify program uses the same functions as the internal SSL and S/MIME verification, therefore, this description applies to these verify operations too.

    There is one crucial difference between the verify operations performed by the verify program: wherever possible an attempt is made to continue after an error whereas normally the verify operation would halt on the first error. This allows all the problems with a certificate chain to be determined.

    @@ -312,7 +312,7 @@

    The third operation is to check the trust settings on the root CA. The root CA should be trusted for the supplied purpose. For compatibility with previous versions of OpenSSL, a certificate with no trust settings is considered to be valid for all purposes.

    -

    The final operation is to check the validity of the certificate chain. The validity period is checked against the current system time and the notBefore and notAfter dates in the certificate. The certificate signatures are also checked at this point.

    +

    The final operation is to check the validity of the certificate chain. For each element in the chain, including the root CA certificate, the validity period as specified by the notBefore and notAfter fields is checked against the current system time. The -attime flag may be used to use a reference time other than "now." The certificate signature is checked as well (except for the signature of the typically self-signed root CA certificate, which is verified only if the -check_ss_sig option is given).

    If all operations complete successfully then certificate is considered valid. If any operation fails then the certificate is not valid.

    @@ -813,7 +813,7 @@ error 24 at 1 depth lookup:invalid CA certificate

    COPYRIGHT

    -

    Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/x509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/x509.html index a1482747..aad80bce 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/x509.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man1/x509.html @@ -251,7 +251,7 @@
    -checkend arg
    -

    Checks if the certificate expires within the next arg seconds and exits non-zero if yes it will expire or zero if not.

    +

    Checks if the certificate expires within the next arg seconds and exits nonzero if yes it will expire or zero if not.

    -fingerprint
    @@ -357,7 +357,7 @@
    -passin arg
    -

    The key password source. For more information about the format of arg see the PASS PHRASE ARGUMENTS section in openssl(1).

    +

    The key password source. For more information about the format of arg see "Pass Phrase Options" in openssl(1).

    -clrext
    @@ -417,15 +417,17 @@

    Sets the CA serial number file to use.

    -

    When the -CA option is used to sign a certificate it uses a serial number specified in a file. This file consists of one line containing an even number of hex digits with the serial number to use. After each use the serial number is incremented and written out to the file again.

    +

    When creating a certificate with this option, and with the -CA option, the certificate serial number is stored in the given file. This file consists of one line containing an even number of hex digits with the serial number used last time. After reading this number, it is incremented and used, and the file is updated.

    The default filename consists of the CA certificate file base name with ".srl" appended. For example if the CA certificate file is called "mycacert.pem" it expects to find a serial number file called "mycacert.srl".

    +

    If the -CA option is specified and neither <-CAserial> or <-CAcreateserial> is given and the default serial number file does not exist, a random number is generated; this is the recommended practice.

    +
    -CAcreateserial
    -

    With this option the CA serial number file is created if it does not exist: it will contain the serial number "02" and the certificate being signed will have the 1 as its serial number. If the -CA option is specified and the serial number file does not exist a random number is generated; this is the recommended practice.

    +

    With this option and the -CA option the CA serial number file is created if it does not exist. A random number is generated, used for the certificate, and saved into the serial number file determined as described above.

    -extfile filename
    @@ -880,7 +882,7 @@

    COPYRIGHT

    -

    Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ACCESS_DESCRIPTION_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ACCESS_DESCRIPTION_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ACCESS_DESCRIPTION_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ACCESS_DESCRIPTION_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ACCESS_DESCRIPTION_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ACCESS_DESCRIPTION_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_admissionAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_admissionAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_admissionAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_namingAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_namingAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_namingAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_professionInfos.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_professionInfos.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_get0_professionInfos.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_admissionAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_admissionAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_admissionAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_namingAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_namingAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_namingAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_professionInfos.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_professionInfos.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSIONS_set0_professionInfos.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_get0_admissionAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_get0_admissionAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_get0_admissionAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_get0_contentsOfAdmissions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_get0_contentsOfAdmissions.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_get0_contentsOfAdmissions.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_set0_admissionAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_set0_admissionAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_set0_admissionAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_set0_contentsOfAdmissions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_set0_contentsOfAdmissions.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ADMISSION_SYNTAX_set0_contentsOfAdmissions.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdOrRange_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdOrRange_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdOrRange_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdOrRange_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdOrRange_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdOrRange_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifierChoice_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifierChoice_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifierChoice_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifierChoice_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifierChoice_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifierChoice_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifiers_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifiers_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifiers_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifiers_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifiers_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASIdentifiers_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_get.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_get.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_get_int64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_get_int64.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_get_int64.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_set.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_set.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_set_int64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_set_int64.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_set_int64.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_to_BN.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_to_BN.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ENUMERATED_to_BN.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_adj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_adj.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_adj.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_check.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_check.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_print.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_print.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_set.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_set.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_set_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_set_string.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_GENERALIZEDTIME_set_string.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get_int64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get_int64.html index 9c7c7536..2e1d519b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get_int64.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get_int64.html @@ -78,7 +78,7 @@ BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai, BIGNUM *bn);

    NOTES

    -

    In general an ASN1_INTEGER or ASN1_ENUMERATED type can contain an integer of almost arbitrary size and so cannot always be represented by a C int64_t type. However in many cases (for example version numbers) they represent small integers which can be more easily manipulated if converted to an appropriate C integer type.

    +

    In general an ASN1_INTEGER or ASN1_ENUMERATED type can contain an integer of almost arbitrary size and so cannot always be represented by a C int64_t type. However, in many cases (for example version numbers) they represent small integers which can be more easily manipulated if converted to an appropriate C integer type.

    BUGS

    @@ -104,7 +104,7 @@ BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai, BIGNUM *bn);

    COPYRIGHT

    -

    Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get_uint64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get_uint64.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_get_uint64.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set_int64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set_int64.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set_int64.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set_uint64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set_uint64.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_set_uint64.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_to_BN.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_to_BN.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_INTEGER_to_BN.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ITEM.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ITEM.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ITEM.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ITEM_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ITEM_get.html new file mode 120000 index 00000000..da0d2abf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_ITEM_get.html @@ -0,0 +1 @@ +ASN1_ITEM_lookup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_OBJECT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_OBJECT_free.html new file mode 120000 index 00000000..f78e5c91 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_OBJECT_free.html @@ -0,0 +1 @@ +ASN1_OBJECT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE.html new file mode 120000 index 00000000..29ae60e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE.html @@ -0,0 +1 @@ +ASN1_STRING_TABLE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE_cleanup.html new file mode 120000 index 00000000..29ae60e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE_cleanup.html @@ -0,0 +1 @@ +ASN1_STRING_TABLE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE_get.html new file mode 120000 index 00000000..29ae60e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_TABLE_get.html @@ -0,0 +1 @@ +ASN1_STRING_TABLE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_cmp.html new file mode 120000 index 00000000..ed3d508b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_cmp.html @@ -0,0 +1 @@ +ASN1_STRING_length.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_data.html new file mode 120000 index 00000000..ed3d508b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_data.html @@ -0,0 +1 @@ +ASN1_STRING_length.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_dup.html new file mode 120000 index 00000000..ed3d508b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_dup.html @@ -0,0 +1 @@ +ASN1_STRING_length.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_free.html new file mode 120000 index 00000000..2138a095 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_free.html @@ -0,0 +1 @@ +ASN1_STRING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_get0_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_get0_data.html new file mode 120000 index 00000000..ed3d508b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_get0_data.html @@ -0,0 +1 @@ +ASN1_STRING_length.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_length.html index 9aaa61c5..3fa22d49 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_length.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_length.html @@ -69,7 +69,7 @@ int ASN1_STRING_to_UTF8(unsigned char **out, const ASN1_STRING *in);These functions should not be used to examine or modify ASN1_INTEGER or ASN1_ENUMERATED types: the relevant INTEGER or ENUMERATED utility functions should be used instead.

    -

    In general it cannot be assumed that the data returned by ASN1_STRING_data() is null terminated or does not contain embedded nulls. The actual format of the data will depend on the actual string type itself: for example for an IA5String the data will be ASCII, for a BMPString two bytes per character in big endian format, and for an UTF8String it will be in UTF8 format.

    +

    In general it cannot be assumed that the data returned by ASN1_STRING_data() is null terminated or does not contain embedded nulls. The actual format of the data will depend on the actual string type itself: for example for an IA5String the data will be ASCII, for a BMPString two bytes per character in big endian format, and for a UTF8String it will be in UTF8 format.

    Similar care should be take to ensure the data is in the correct format when calling ASN1_STRING_set().

    @@ -95,7 +95,7 @@ int ASN1_STRING_to_UTF8(unsigned char **out, const ASN1_STRING *in);COPYRIGHT -

    Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2002-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_print.html new file mode 120000 index 00000000..8d0effe4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_print.html @@ -0,0 +1 @@ +ASN1_STRING_print_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_print_ex_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_print_ex_fp.html new file mode 120000 index 00000000..8d0effe4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_print_ex_fp.html @@ -0,0 +1 @@ +ASN1_STRING_print_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_set.html new file mode 120000 index 00000000..ed3d508b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_set.html @@ -0,0 +1 @@ +ASN1_STRING_length.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_to_UTF8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_to_UTF8.html new file mode 120000 index 00000000..ed3d508b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_to_UTF8.html @@ -0,0 +1 @@ +ASN1_STRING_length.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_type.html new file mode 120000 index 00000000..ed3d508b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_type.html @@ -0,0 +1 @@ +ASN1_STRING_length.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_type_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_type_new.html new file mode 120000 index 00000000..2138a095 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_STRING_type_new.html @@ -0,0 +1 @@ +ASN1_STRING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_adj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_adj.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_adj.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_check.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_check.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_cmp_time_t.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_cmp_time_t.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_cmp_time_t.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_compare.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_compare.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_compare.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_diff.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_diff.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_diff.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_normalize.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_normalize.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_normalize.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_print.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_print.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set.html index 81f883b8..188d7e56 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set.html @@ -88,7 +88,7 @@ ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t,

    ASN1_TIME_to_tm() converts the time s to the standard tm structure. If s is NULL, then the current time is converted. The output time is GMT. The tm_sec, tm_min, tm_hour, tm_mday, tm_wday, tm_yday, tm_mon and tm_year fields of tm structure are set to proper values, whereas all other fields are set to 0. If tm is NULL this function performs a format check on s only. If s is in Generalized format with fractional seconds, e.g. YYYYMMDDHHMMSS.SSSZ, the fractional seconds will be lost while converting s to tm structure.

    -

    ASN1_TIME_diff() sets *pday and *psec to the time difference between from and to. If to represents a time later than from then one or both (depending on the time difference) of *pday and *psec will be positive. If to represents a time earlier than from then one or both of *pday and *psec will be negative. If to and from represent the same time then *pday and *psec will both be zero. If both *pday and *psec are non-zero they will always have the same sign. The value of *psec will always be less than the number of seconds in a day. If from or to is NULL the current time is used.

    +

    ASN1_TIME_diff() sets *pday and *psec to the time difference between from and to. If to represents a time later than from then one or both (depending on the time difference) of *pday and *psec will be positive. If to represents a time earlier than from then one or both of *pday and *psec will be negative. If to and from represent the same time then *pday and *psec will both be zero. If both *pday and *psec are nonzero they will always have the same sign. The value of *psec will always be less than the number of seconds in a day. If from or to is NULL the current time is used.

    The ASN1_TIME_cmp_time_t() and ASN1_UTCTIME_cmp_time_t() functions compare the two times represented by the time structure s and the time_t t.

    @@ -114,7 +114,7 @@ ASN1_GENERALIZEDTIME *ASN1_TIME_to_generalizedtime(ASN1_TIME *t,

    BUGS

    -

    ASN1_TIME_print(), ASN1_UTCTIME_print() and ASN1_GENERALIZEDTIME_print() do not print out the time zone: it either prints out "GMT" or nothing. But all certificates complying with RFC5280 et al use GMT anyway.

    +

    ASN1_TIME_print(), ASN1_UTCTIME_print() and ASN1_GENERALIZEDTIME_print() do not print out the timezone: it either prints out "GMT" or nothing. But all certificates complying with RFC5280 et al use GMT anyway.

    Use the ASN1_TIME_normalize() function to normalize the time value before printing to get GMT results.

    @@ -178,7 +178,7 @@ else

    COPYRIGHT

    -

    Copyright 2015-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set_string.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set_string.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set_string_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set_string_X509.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_set_string_X509.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_to_generalizedtime.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_to_generalizedtime.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_to_generalizedtime.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_to_tm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_to_tm.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TIME_to_tm.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_cmp.html new file mode 120000 index 00000000..226d07d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_cmp.html @@ -0,0 +1 @@ +ASN1_TYPE_get.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_get.html index f2526bc3..81c58c83 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_get.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_get.html @@ -47,7 +47,7 @@ ASN1_TYPE *ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s,

    ASN1_TYPE_set1() sets the value of a to type a copy of value.

    -

    ASN1_TYPE_cmp() compares ASN.1 types a and b and returns 0 if they are identical and non-zero otherwise.

    +

    ASN1_TYPE_cmp() compares ASN.1 types a and b and returns 0 if they are identical and nonzero otherwise.

    ASN1_TYPE_unpack_sequence() attempts to parse the SEQUENCE present in t using the ASN.1 structure it. If successful it returns a pointer to the ASN.1 structure corresponding to it which must be freed by the caller. If it fails it return NULL.

    @@ -57,9 +57,9 @@ ASN1_TYPE *ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s,

    The type and meaning of the value parameter for ASN1_TYPE_set() and ASN1_TYPE_set1() is determined by the type parameter. If type is V_ASN1_NULL value is ignored. If type is V_ASN1_BOOLEAN then the boolean is set to TRUE if value is not NULL. If type is V_ASN1_OBJECT then value is an ASN1_OBJECT structure. Otherwise type is and ASN1_STRING structure. If type corresponds to a primitive type (or a string type) then the contents of the ASN1_STRING contain the content octets of the type. If type corresponds to a constructed type or a tagged type (V_ASN1_SEQUENCE, V_ASN1_SET or V_ASN1_OTHER) then the ASN1_STRING contains the entire ASN.1 encoding verbatim (including tag and length octets).

    -

    ASN1_TYPE_cmp() may not return zero if two types are equivalent but have different encodings. For example the single content octet of the boolean TRUE value under BER can have any non-zero encoding but ASN1_TYPE_cmp() will only return zero if the values are the same.

    +

    ASN1_TYPE_cmp() may not return zero if two types are equivalent but have different encodings. For example the single content octet of the boolean TRUE value under BER can have any nonzero encoding but ASN1_TYPE_cmp() will only return zero if the values are the same.

    -

    If either or both of the parameters passed to ASN1_TYPE_cmp() is NULL the return value is non-zero. Technically if both parameters are NULL the two types could be absent OPTIONAL fields and so should match, however passing NULL values could also indicate a programming error (for example an unparsable type which returns NULL) for types which do not match. So applications should handle the case of two absent values separately.

    +

    If either or both of the parameters passed to ASN1_TYPE_cmp() is NULL the return value is nonzero. Technically if both parameters are NULL the two types could be absent OPTIONAL fields and so should match, however, passing NULL values could also indicate a programming error (for example an unparsable type which returns NULL) for types which do not match. So applications should handle the case of two absent values separately.

    RETURN VALUES

    @@ -69,7 +69,7 @@ ASN1_TYPE *ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s,

    ASN1_TYPE_set1() returns 1 for success and 0 for failure.

    -

    ASN1_TYPE_cmp() returns 0 if the types are identical and non-zero otherwise.

    +

    ASN1_TYPE_cmp() returns 0 if the types are identical and nonzero otherwise.

    ASN1_TYPE_unpack_sequence() returns a pointer to an ASN.1 structure or NULL on failure.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_pack_sequence.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_pack_sequence.html new file mode 120000 index 00000000..226d07d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_pack_sequence.html @@ -0,0 +1 @@ +ASN1_TYPE_get.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_set.html new file mode 120000 index 00000000..226d07d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_set.html @@ -0,0 +1 @@ +ASN1_TYPE_get.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_set1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_set1.html new file mode 120000 index 00000000..226d07d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_set1.html @@ -0,0 +1 @@ +ASN1_TYPE_get.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_unpack_sequence.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_unpack_sequence.html new file mode 120000 index 00000000..226d07d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_TYPE_unpack_sequence.html @@ -0,0 +1 @@ +ASN1_TYPE_get.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_adj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_adj.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_adj.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_check.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_check.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_cmp_time_t.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_cmp_time_t.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_cmp_time_t.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_print.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_print.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_set.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_set.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_set_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_set_string.html new file mode 120000 index 00000000..58ba6886 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_UTCTIME_set_string.html @@ -0,0 +1 @@ +ASN1_TIME_set.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_add_oid_module.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_add_oid_module.html new file mode 120000 index 00000000..4a8db77c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_add_oid_module.html @@ -0,0 +1 @@ +OPENSSL_load_builtin_modules.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_generate_v3.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_generate_v3.html new file mode 120000 index 00000000..718befe4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_generate_v3.html @@ -0,0 +1 @@ +ASN1_generate_nconf.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_tag2str.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_tag2str.html new file mode 120000 index 00000000..8d0effe4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASN1_tag2str.html @@ -0,0 +1 @@ +ASN1_STRING_print_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASRange_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASRange_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASRange_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASRange_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASRange_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASRange_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_clear_fd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_clear_fd.html new file mode 120000 index 00000000..8ff30ec4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_clear_fd.html @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_free.html new file mode 120000 index 00000000..8ff30ec4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_free.html @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_all_fds.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_all_fds.html new file mode 120000 index 00000000..8ff30ec4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_all_fds.html @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_changed_fds.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_changed_fds.html new file mode 120000 index 00000000..8ff30ec4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_changed_fds.html @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_fd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_fd.html new file mode 120000 index 00000000..8ff30ec4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_get_fd.html @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_new.html index fc33210b..2c2c79a6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_new.html @@ -52,7 +52,7 @@ int ASYNC_WAIT_CTX_clear_fd(ASYNC_WAIT_CTX *ctx, const void *key);

    Application code must create an ASYNC_WAIT_CTX using the ASYNC_WAIT_CTX_new() function prior to calling ASYNC_start_job() (see ASYNC_start_job(3)). When the job is started it is associated with the ASYNC_WAIT_CTX for the duration of that job. An ASYNC_WAIT_CTX should only be used for one ASYNC_JOB at any one time, but can be reused after an ASYNC_JOB has finished for a subsequent ASYNC_JOB. When the session is complete (e.g. the SSL connection is closed), application code cleans up with ASYNC_WAIT_CTX_free().

    -

    ASYNC_WAIT_CTXs can have "wait" file descriptors associated with them. Calling ASYNC_WAIT_CTX_get_all_fds() and passing in a pointer to an ASYNC_WAIT_CTX in the ctx parameter will return the wait file descriptors associated with that job in *fd. The number of file descriptors returned will be stored in *numfds. It is the caller's responsibility to ensure that sufficient memory has been allocated in *fd to receive all the file descriptors. Calling ASYNC_WAIT_CTX_get_all_fds() with a NULL fd value will return no file descriptors but will still populate *numfds. Therefore application code is typically expected to call this function twice: once to get the number of fds, and then again when sufficient memory has been allocated. If only one asynchronous engine is being used then normally this call will only ever return one fd. If multiple asynchronous engines are being used then more could be returned.

    +

    ASYNC_WAIT_CTXs can have "wait" file descriptors associated with them. Calling ASYNC_WAIT_CTX_get_all_fds() and passing in a pointer to an ASYNC_WAIT_CTX in the ctx parameter will return the wait file descriptors associated with that job in *fd. The number of file descriptors returned will be stored in *numfds. It is the caller's responsibility to ensure that sufficient memory has been allocated in *fd to receive all the file descriptors. Calling ASYNC_WAIT_CTX_get_all_fds() with a NULL fd value will return no file descriptors but will still populate *numfds. Therefore, application code is typically expected to call this function twice: once to get the number of fds, and then again when sufficient memory has been allocated. If only one asynchronous engine is being used then normally this call will only ever return one fd. If multiple asynchronous engines are being used then more could be returned.

    The function ASYNC_WAIT_CTX_get_changed_fds() can be used to detect if any fds have changed since the last call time ASYNC_start_job() returned an ASYNC_PAUSE result (or since the ASYNC_WAIT_CTX was created if no ASYNC_PAUSE result has been received). The numaddfds and numdelfds parameters will be populated with the number of fds added or deleted respectively. *addfd and *delfd will be populated with the list of added and deleted fds respectively. Similarly to ASYNC_WAIT_CTX_get_all_fds() either of these can be NULL, but if they are not NULL then the caller is responsible for ensuring sufficient memory is allocated.

    @@ -72,7 +72,7 @@ int ASYNC_WAIT_CTX_clear_fd(ASYNC_WAIT_CTX *ctx, const void *key);

    NOTES

    -

    On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore it is defined as an application developer's responsibility to include windows.h prior to async.h.

    +

    On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore, it is defined as an application developer's responsibility to include windows.h prior to async.h.

    SEE ALSO

    @@ -84,7 +84,7 @@ int ASYNC_WAIT_CTX_clear_fd(ASYNC_WAIT_CTX *ctx, const void *key);

    COPYRIGHT

    -

    Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_set_wait_fd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_set_wait_fd.html new file mode 120000 index 00000000..8ff30ec4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_WAIT_CTX_set_wait_fd.html @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_block_pause.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_block_pause.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_block_pause.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_cleanup_thread.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_cleanup_thread.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_cleanup_thread.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_get_current_job.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_get_current_job.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_get_current_job.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_get_wait_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_get_wait_ctx.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_get_wait_ctx.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_init_thread.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_init_thread.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_init_thread.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_is_capable.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_is_capable.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_is_capable.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_pause_job.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_pause_job.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_pause_job.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_start_job.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_start_job.html index b7f8c77b..3c5cc225 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_start_job.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_start_job.html @@ -111,7 +111,7 @@ int ASYNC_is_capable(void);

    NOTES

    -

    On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore it is defined as an application developer's responsibility to include windows.h prior to async.h.

    +

    On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore, it is defined as an application developer's responsibility to include windows.h prior to async.h.

    EXAMPLES

    @@ -261,7 +261,7 @@ Finishing

    COPYRIGHT

    -

    Copyright 2015-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_unblock_pause.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_unblock_pause.html new file mode 120000 index 00000000..e064cad6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ASYNC_unblock_pause.html @@ -0,0 +1 @@ +ASYNC_start_job.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_INFO_ACCESS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_INFO_ACCESS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_INFO_ACCESS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_INFO_ACCESS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_INFO_ACCESS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_INFO_ACCESS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_KEYID_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_KEYID_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_KEYID_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_KEYID_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_KEYID_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/AUTHORITY_KEYID_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BASIC_CONSTRAINTS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BASIC_CONSTRAINTS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BASIC_CONSTRAINTS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BASIC_CONSTRAINTS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BASIC_CONSTRAINTS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BASIC_CONSTRAINTS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_cbc_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_cbc_encrypt.html new file mode 120000 index 00000000..2a8d02c2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_cbc_encrypt.html @@ -0,0 +1 @@ +BF_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_cfb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_cfb64_encrypt.html new file mode 120000 index 00000000..2a8d02c2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_cfb64_encrypt.html @@ -0,0 +1 @@ +BF_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_decrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_decrypt.html new file mode 120000 index 00000000..2a8d02c2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_decrypt.html @@ -0,0 +1 @@ +BF_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_ecb_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_ecb_encrypt.html new file mode 120000 index 00000000..2a8d02c2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_ecb_encrypt.html @@ -0,0 +1 @@ +BF_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_encrypt.html index 781f1f8c..34728f07 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_encrypt.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_encrypt.html @@ -59,7 +59,7 @@ void BF_decrypt(BF_LONG *data, const BF_KEY *key);

    BF_ecb_encrypt() is the basic Blowfish encryption and decryption function. It encrypts or decrypts the first 64 bits of in using the key key, putting the result in out. enc decides if encryption (BF_ENCRYPT) or decryption (BF_DECRYPT) shall be performed. The vector pointed at by in and out must be 64 bits in length, no less. If they are larger, everything after the first 64 bits is ignored.

    -

    The mode functions BF_cbc_encrypt(), BF_cfb64_encrypt() and BF_ofb64_encrypt() all operate on variable length data. They all take an initialization vector ivec which needs to be passed along into the next call of the same function for the same message. ivec may be initialized with anything, but the recipient needs to know what it was initialized with, or it won't be able to decrypt. Some programs and protocols simplify this, like SSH, where ivec is simply initialized to zero. BF_cbc_encrypt() operates on data that is a multiple of 8 bytes long, while BF_cfb64_encrypt() and BF_ofb64_encrypt() are used to encrypt an variable number of bytes (the amount does not have to be an exact multiple of 8). The purpose of the latter two is to simulate stream ciphers, and therefore, they need the parameter num, which is a pointer to an integer where the current offset in ivec is stored between calls. This integer must be initialized to zero when ivec is initialized.

    +

    The mode functions BF_cbc_encrypt(), BF_cfb64_encrypt() and BF_ofb64_encrypt() all operate on variable length data. They all take an initialization vector ivec which needs to be passed along into the next call of the same function for the same message. ivec may be initialized with anything, but the recipient needs to know what it was initialized with, or it won't be able to decrypt. Some programs and protocols simplify this, like SSH, where ivec is simply initialized to zero. BF_cbc_encrypt() operates on data that is a multiple of 8 bytes long, while BF_cfb64_encrypt() and BF_ofb64_encrypt() are used to encrypt a variable number of bytes (the amount does not have to be an exact multiple of 8). The purpose of the latter two is to simulate stream ciphers, and therefore, they need the parameter num, which is a pointer to an integer where the current offset in ivec is stored between calls. This integer must be initialized to zero when ivec is initialized.

    BF_cbc_encrypt() is the Cipher Block Chaining function for Blowfish. It encrypts or decrypts the 64 bits chunks of in using the key schedule, putting the result in out. enc decides if encryption (BF_ENCRYPT) or decryption (BF_DECRYPT) shall be performed. ivec must point at an 8 byte long initialization vector.

    @@ -83,7 +83,7 @@ void BF_decrypt(BF_LONG *data, const BF_KEY *key);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_ofb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_ofb64_encrypt.html new file mode 120000 index 00000000..2a8d02c2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_ofb64_encrypt.html @@ -0,0 +1 @@ +BF_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_options.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_options.html new file mode 120000 index 00000000..2a8d02c2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_options.html @@ -0,0 +1 @@ +BF_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_set_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_set_key.html new file mode 120000 index 00000000..2a8d02c2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BF_set_key.html @@ -0,0 +1 @@ +BF_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR.html index d2e27afc..d438caf1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR.html @@ -54,7 +54,7 @@ char *BIO_ADDR_path_string(const BIO_ADDR *ap);

    BIO_ADDR_clear() clears any data held within the provided BIO_ADDR and sets it back to an uninitialised state.

    -

    BIO_ADDR_rawmake() takes a protocol family, an byte array of size wherelen with an address in network byte order pointed at by where and a port number in network byte order in port (except for the AF_UNIX protocol family, where port is meaningless and therefore ignored) and populates the given BIO_ADDR with them. In case this creates a AF_UNIX BIO_ADDR, wherelen is expected to be the length of the path string (not including the terminating NUL, such as the result of a call to strlen()). Read on about the addresses in "RAW ADDRESSES" below.

    +

    BIO_ADDR_rawmake() takes a protocol family, a byte array of size wherelen with an address in network byte order pointed at by where and a port number in network byte order in port (except for the AF_UNIX protocol family, where port is meaningless and therefore ignored) and populates the given BIO_ADDR with them. In case this creates a AF_UNIX BIO_ADDR, wherelen is expected to be the length of the path string (not including the terminating NUL, such as the result of a call to strlen()). Read on about the addresses in "RAW ADDRESSES" below.

    BIO_ADDR_family() returns the protocol family of the given BIO_ADDR. The possible non-error results are one of the constants AF_INET, AF_INET6 and AF_UNIX. It will also return AF_UNSPEC if the BIO_ADDR has not been initialised.

    @@ -84,7 +84,7 @@ char *BIO_ADDR_path_string(const BIO_ADDR *ap);

    COPYRIGHT

    -

    Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO.html index 285455e3..0299da31 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO.html @@ -81,7 +81,7 @@ void BIO_ADDRINFO_free(BIO_ADDRINFO *bai);

    NOTES

    -

    The BIO_lookup_ex() implementation uses the platform provided getaddrinfo() function. On Linux it is known that specifying 0 for the protocol will not return any SCTP based addresses when calling getaddrinfo(). Therefore if an SCTP address is required then the protocol parameter to BIO_lookup_ex() should be explicitly set to IPPROTO_SCTP. The same may be true on other platforms.

    +

    The BIO_lookup_ex() implementation uses the platform provided getaddrinfo() function. On Linux it is known that specifying 0 for the protocol will not return any SCTP based addresses when calling getaddrinfo(). Therefore, if an SCTP address is required then the protocol parameter to BIO_lookup_ex() should be explicitly set to IPPROTO_SCTP. The same may be true on other platforms.

    HISTORY

    @@ -89,7 +89,7 @@ void BIO_ADDRINFO_free(BIO_ADDRINFO *bai);

    COPYRIGHT

    -

    Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_address.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_address.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_address.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_family.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_family.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_family.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_free.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_free.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_next.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_next.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_next.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_protocol.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_protocol.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_protocol.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_socktype.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_socktype.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDRINFO_socktype.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_clear.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_clear.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_clear.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_family.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_family.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_family.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_free.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_free.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_hostname_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_hostname_string.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_hostname_string.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_new.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_new.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_path_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_path_string.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_path_string.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawaddress.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawaddress.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawaddress.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawmake.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawmake.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawmake.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawport.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawport.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_rawport.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_service_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_service_string.html new file mode 120000 index 00000000..538ac927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ADDR_service_string.html @@ -0,0 +1 @@ +BIO_ADDR.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_accept_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_accept_ex.html new file mode 120000 index 00000000..31fcee2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_accept_ex.html @@ -0,0 +1 @@ +BIO_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_append_filename.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_append_filename.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_append_filename.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_bind.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_bind.html new file mode 120000 index 00000000..31fcee2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_bind.html @@ -0,0 +1 @@ +BIO_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_ctrl.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_ctrl.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_fn.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_fn.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_fn_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_fn_ex.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_callback_fn_ex.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_closesocket.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_closesocket.html new file mode 120000 index 00000000..31fcee2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_closesocket.html @@ -0,0 +1 @@ +BIO_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_connect.html index 81740adc..322c0ee8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_connect.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_connect.html @@ -64,7 +64,7 @@ int BIO_closesocket(int sock);
    BIO_SOCK_NONBLOCK
    -

    Sets the socket to non-blocking mode.

    +

    Sets the socket to nonblocking mode.

    BIO_SOCK_NODELAY
    @@ -109,7 +109,7 @@ int BIO_closesocket(int sock);

    COPYRIGHT

    -

    Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl.html index b1671037..7f4ad411 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl.html @@ -33,7 +33,7 @@ typedef int BIO_info_cb(BIO *b, int state, int res); long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg); long BIO_callback_ctrl(BIO *b, int cmd, BIO_info_cb *cb); -char *BIO_ptr_ctrl(BIO *bp, int cmd, long larg); +void *BIO_ptr_ctrl(BIO *bp, int cmd, long larg); long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg); int BIO_reset(BIO *b); @@ -93,7 +93,7 @@ int BIO_set_info_callback(BIO *b, BIO_info_cb *cb);

    The return values of BIO_pending() and BIO_wpending() may not reliably determine the amount of pending data in all cases. For example in the case of a file BIO some data may be available in the FILE structures internal buffers but it is not possible to determine this in a portably way. For other types of BIO they may not be supported.

    -

    Filter BIOs if they do not internally handle a particular BIO_ctrl() operation usually pass the operation to the next BIO in the chain. This often means there is no need to locate the required BIO for a particular operation, it can be called on a chain and it will be automatically passed to the relevant BIO. However this can cause unexpected results: for example no current filter BIOs implement BIO_seek(), but this may still succeed if the chain ends in a FILE or file descriptor BIO.

    +

    Filter BIOs if they do not internally handle a particular BIO_ctrl() operation usually pass the operation to the next BIO in the chain. This often means there is no need to locate the required BIO for a particular operation, it can be called on a chain and it will be automatically passed to the relevant BIO. However, this can cause unexpected results: for example no current filter BIOs implement BIO_seek(), but this may still succeed if the chain ends in a FILE or file descriptor BIO.

    Source/sink BIOs return an 0 if they do not recognize the BIO_ctrl() operation.

    @@ -103,7 +103,7 @@ int BIO_set_info_callback(BIO *b, BIO_info_cb *cb);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_get_read_request.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_get_read_request.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_get_read_request.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_get_write_guarantee.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_get_write_guarantee.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_get_write_guarantee.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_pending.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_pending.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_pending.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_reset_read_request.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_reset_read_request.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_reset_read_request.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_wpending.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_wpending.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ctrl_wpending.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_debug_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_debug_callback.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_debug_callback.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_destroy_bio_pair.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_destroy_bio_pair.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_destroy_bio_pair.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_accept.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_accept.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_accept.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_connect.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_connect.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_handshake.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_handshake.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_do_handshake.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_eof.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_eof.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_eof.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_base64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_base64.html index 9a2092c8..d6bb608b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_base64.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_base64.html @@ -39,9 +39,15 @@ const BIO_METHOD *BIO_f_base64(void);

    Base64 BIOs do not support BIO_gets() or BIO_puts().

    +

    For writing, output is by default divided to lines of length 64 characters and there is always a newline at the end of output.

    + +

    For reading, first line should be at most 1024 characters long. If it is longer then it is ignored completely. Other input lines can be of any length. There must be a newline at the end of input.

    + +

    This behavior can be changed with BIO_FLAGS_BASE64_NO_NL flag.

    +

    BIO_flush() on a base64 BIO that is being written through is used to signal that no more data is to be encoded: this is used to flush the final block through the BIO.

    -

    The flag BIO_FLAGS_BASE64_NO_NL can be set with BIO_set_flags() to encode the data all on one line or expect the data to be all on one line.

    +

    The flag BIO_FLAGS_BASE64_NO_NL can be set with BIO_set_flags(). For writing, it causes all data to be written on one line without newline at the end. For reading, it expects the data to be all on one line (with or without a trailing newline).

    NOTES

    @@ -90,7 +96,7 @@ BIO_free_all(b64);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_ssl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_ssl.html index e1688c5f..13e3247e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_ssl.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_f_ssl.html @@ -60,23 +60,23 @@ long BIO_do_handshake(BIO *b);

    If the close flag is set when an SSL BIO is freed then the internal SSL structure is also freed using SSL_free().

    -

    BIO_set_ssl() sets the internal SSL pointer of BIO b to ssl using the close flag c.

    +

    BIO_set_ssl() sets the internal SSL pointer of SSL BIO b to ssl using the close flag c.

    -

    BIO_get_ssl() retrieves the SSL pointer of BIO b, it can then be manipulated using the standard SSL library functions.

    +

    BIO_get_ssl() retrieves the SSL pointer of SSL BIO b, it can then be manipulated using the standard SSL library functions.

    BIO_set_ssl_mode() sets the SSL BIO mode to client. If client is 1 client mode is set. If client is 0 server mode is set.

    -

    BIO_set_ssl_renegotiate_bytes() sets the renegotiate byte count to num. When set after every num bytes of I/O (read and write) the SSL session is automatically renegotiated. num must be at least 512 bytes.

    +

    BIO_set_ssl_renegotiate_bytes() sets the renegotiate byte count of SSL BIO b to num. When set after every num bytes of I/O (read and write) the SSL session is automatically renegotiated. num must be at least 512 bytes.

    -

    BIO_set_ssl_renegotiate_timeout() sets the renegotiate timeout to seconds. When the renegotiate timeout elapses the session is automatically renegotiated.

    +

    BIO_set_ssl_renegotiate_timeout() sets the renegotiate timeout of SSL BIO b to seconds. When the renegotiate timeout elapses the session is automatically renegotiated.

    -

    BIO_get_num_renegotiates() returns the total number of session renegotiations due to I/O or timeout.

    +

    BIO_get_num_renegotiates() returns the total number of session renegotiations due to I/O or timeout of SSL BIO b.

    BIO_new_ssl() allocates an SSL BIO using SSL_CTX ctx and using client mode if client is non zero.

    BIO_new_ssl_connect() creates a new BIO chain consisting of an SSL BIO (using ctx) followed by a connect BIO.

    -

    BIO_new_buffer_ssl_connect() creates a new BIO chain consisting of a buffering BIO, an SSL BIO (using ctx) and a connect BIO.

    +

    BIO_new_buffer_ssl_connect() creates a new BIO chain consisting of a buffering BIO, an SSL BIO (using ctx), and a connect BIO.

    BIO_ssl_copy_session_id() copies an SSL session id between BIO chains from and to. It does this by locating the SSL BIOs in each chain and calling SSL_copy_session_id() on the internal SSL pointer.

    @@ -146,11 +146,6 @@ if (BIO_do_connect(sbio) <= 0) { ERR_print_errors_fp(stderr); exit(1); } -if (BIO_do_handshake(sbio) <= 0) { - fprintf(stderr, "Error establishing SSL connection\n"); - ERR_print_errors_fp(stderr); - exit(1); -} /* XXX Could examine ssl here to get connection info */ @@ -251,7 +246,7 @@ BIO_free_all(sbio);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_flush.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_flush.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_flush.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_free.html new file mode 120000 index 00000000..3e54c9f3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_free.html @@ -0,0 +1 @@ +BIO_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_free_all.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_free_all.html new file mode 120000 index 00000000..3e54c9f3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_free_all.html @@ -0,0 +1 @@ +BIO_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_ip_family.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_ip_family.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_ip_family.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_name.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_name.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_port.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_port.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_accept_port.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_bind_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_bind_mode.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_bind_mode.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_buffer_num_lines.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_buffer_num_lines.html new file mode 120000 index 00000000..8f8127a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_buffer_num_lines.html @@ -0,0 +1 @@ +BIO_f_buffer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback_arg.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback_arg.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback_ex.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_callback_ex.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_cipher_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_cipher_ctx.html new file mode 120000 index 00000000..5eca86f0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_cipher_ctx.html @@ -0,0 +1 @@ +BIO_f_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_cipher_status.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_cipher_status.html new file mode 120000 index 00000000..5eca86f0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_cipher_status.html @@ -0,0 +1 @@ +BIO_f_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_close.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_close.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_close.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_address.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_address.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_address.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_hostname.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_hostname.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_hostname.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_ip_family.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_ip_family.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_ip_family.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_port.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_port.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_conn_port.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_data.html index 7eb54c2f..0b2fea53 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_data.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_data.html @@ -42,7 +42,7 @@ int BIO_get_shutdown(BIO *a);

    The BIO_set_data() function associates the custom data pointed to by ptr with the BIO. This data can subsequently be retrieved via a call to BIO_get_data(). This can be used by custom BIOs for storing implementation specific information.

    -

    The BIO_set_init() function sets the value of the BIO's "init" flag to indicate whether initialisation has been completed for this BIO or not. A non-zero value indicates that initialisation is complete, whilst zero indicates that it is not. Often initialisation will complete during initial construction of the BIO. For some BIOs however, initialisation may not complete until after additional steps have occurred (for example through calling custom ctrls). The BIO_get_init() function returns the value of the "init" flag.

    +

    The BIO_set_init() function sets the value of the BIO's "init" flag to indicate whether initialisation has been completed for this BIO or not. A nonzero value indicates that initialisation is complete, whilst zero indicates that it is not. Often initialisation will complete during initial construction of the BIO. For some BIOs however, initialisation may not complete until after additional steps have occurred (for example through calling custom ctrls). The BIO_get_init() function returns the value of the "init" flag.

    The BIO_set_shutdown() and BIO_get_shutdown() functions set and get the state of this BIO's shutdown (i.e. BIO_CLOSE) flag. If set then the underlying resource is also closed when the BIO is freed.

    @@ -64,7 +64,7 @@ int BIO_get_shutdown(BIO *a);

    COPYRIGHT

    -

    Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_fd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_fd.html new file mode 120000 index 00000000..93464df6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_fd.html @@ -0,0 +1 @@ +BIO_s_fd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_fp.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_fp.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_info_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_info_callback.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_info_callback.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_init.html new file mode 120000 index 00000000..825e8c0f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_init.html @@ -0,0 +1 @@ +BIO_get_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_md.html new file mode 120000 index 00000000..7021b6b6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_md.html @@ -0,0 +1 @@ +BIO_f_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_md_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_md_ctx.html new file mode 120000 index 00000000..7021b6b6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_md_ctx.html @@ -0,0 +1 @@ +BIO_f_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_mem_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_mem_data.html new file mode 120000 index 00000000..f3ea7015 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_mem_data.html @@ -0,0 +1 @@ +BIO_s_mem.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_mem_ptr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_mem_ptr.html new file mode 120000 index 00000000..f3ea7015 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_mem_ptr.html @@ -0,0 +1 @@ +BIO_s_mem.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_new_index.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_new_index.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_num_renegotiates.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_num_renegotiates.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_num_renegotiates.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_peer_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_peer_name.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_peer_name.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_peer_port.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_peer_port.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_peer_port.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_read_request.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_read_request.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_read_request.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_retry_BIO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_retry_BIO.html new file mode 120000 index 00000000..1df22d45 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_retry_BIO.html @@ -0,0 +1 @@ +BIO_should_retry.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_retry_reason.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_retry_reason.html new file mode 120000 index 00000000..1df22d45 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_retry_reason.html @@ -0,0 +1 @@ +BIO_should_retry.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_shutdown.html new file mode 120000 index 00000000..825e8c0f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_shutdown.html @@ -0,0 +1 @@ +BIO_get_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_ssl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_ssl.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_ssl.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_write_buf_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_write_buf_size.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_write_buf_size.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_write_guarantee.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_write_guarantee.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_get_write_guarantee.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_gets.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_gets.html new file mode 120000 index 00000000..abb8fc58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_gets.html @@ -0,0 +1 @@ +BIO_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_hostserv_priorities.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_hostserv_priorities.html new file mode 120000 index 00000000..5099617f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_hostserv_priorities.html @@ -0,0 +1 @@ +BIO_parse_hostserv.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_info_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_info_cb.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_info_cb.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_int_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_int_ctrl.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_int_ctrl.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_listen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_listen.html new file mode 120000 index 00000000..31fcee2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_listen.html @@ -0,0 +1 @@ +BIO_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup_ex.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup_ex.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup_type.html new file mode 120000 index 00000000..6eec1756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_lookup_type.html @@ -0,0 +1 @@ +BIO_ADDRINFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_make_bio_pair.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_make_bio_pair.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_make_bio_pair.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_free.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_free.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_callback_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_callback_ctrl.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_callback_ctrl.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_create.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_create.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_create.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_ctrl.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_ctrl.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_destroy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_destroy.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_destroy.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_gets.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_gets.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_gets.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_puts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_puts.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_puts.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_read.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_read.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_read.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_read_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_read_ex.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_read_ex.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_write.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_write.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_write.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_write_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_write_ex.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_get_write_ex.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_callback_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_callback_ctrl.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_callback_ctrl.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_create.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_create.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_create.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_ctrl.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_ctrl.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_destroy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_destroy.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_destroy.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_gets.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_gets.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_gets.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_puts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_puts.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_puts.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_read.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_read.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_read.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_read_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_read_ex.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_read_ex.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_write.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_write.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_write.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_write_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_write_ex.html new file mode 120000 index 00000000..bdca18ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_meth_set_write_ex.html @@ -0,0 +1 @@ +BIO_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_method_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_method_type.html new file mode 120000 index 00000000..c5611398 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_method_type.html @@ -0,0 +1 @@ +BIO_find_type.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_accept.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_accept.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_accept.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_bio_pair.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_bio_pair.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_bio_pair.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_buffer_ssl_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_buffer_ssl_connect.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_buffer_ssl_connect.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_connect.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_connect.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_fd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_fd.html new file mode 120000 index 00000000..93464df6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_fd.html @@ -0,0 +1 @@ +BIO_s_fd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_file.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_file.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_fp.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_fp.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_mem_buf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_mem_buf.html new file mode 120000 index 00000000..f3ea7015 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_mem_buf.html @@ -0,0 +1 @@ +BIO_s_mem.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_socket.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_socket.html new file mode 120000 index 00000000..986cc360 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_socket.html @@ -0,0 +1 @@ +BIO_s_socket.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_ssl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_ssl.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_ssl.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_ssl_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_ssl_connect.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_new_ssl_connect.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_next.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_next.html new file mode 120000 index 00000000..c5611398 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_next.html @@ -0,0 +1 @@ +BIO_find_type.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_parse_hostserv.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_parse_hostserv.html index 3c75e8b4..f04286d6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_parse_hostserv.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_parse_hostserv.html @@ -36,7 +36,7 @@ int BIO_parse_hostserv(const char *hostserv, char **host, char **service,

    DESCRIPTION

    -

    BIO_parse_hostserv() will parse the information given in hostserv, create strings with the host name and service name and give those back via host and service. Those will need to be freed after they are used. hostserv_prio helps determine if hostserv shall be interpreted primarily as a host name or a service name in ambiguous cases.

    +

    BIO_parse_hostserv() will parse the information given in hostserv, create strings with the hostname and service name and give those back via host and service. Those will need to be freed after they are used. hostserv_prio helps determine if hostserv shall be interpreted primarily as a hostname or a service name in ambiguous cases.

    The syntax the BIO_parse_hostserv() recognises is:

    @@ -79,7 +79,7 @@ service => *host untouched, *service = "service"COPYRIGHT -

    Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_pending.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_pending.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_pending.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_pop.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_pop.html new file mode 120000 index 00000000..810fc2fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_pop.html @@ -0,0 +1 @@ +BIO_push.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ptr_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ptr_ctrl.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ptr_ctrl.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_push.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_push.html index 6c490997..98600b48 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_push.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_push.html @@ -31,50 +31,52 @@
    #include <openssl/bio.h>
     
    -BIO *BIO_push(BIO *b, BIO *append);
    +BIO *BIO_push(BIO *b, BIO *next);
     BIO *BIO_pop(BIO *b);
     void BIO_set_next(BIO *b, BIO *next);

    DESCRIPTION

    -

    The BIO_push() function appends the BIO append to b, it returns b.

    +

    BIO_push() pushes b on next. If b is NULL the function does nothing and returns next. Otherwise it prepends b, which may be a single BIO or a chain of BIOs, to next (unless next is NULL). It then makes a control call on b and returns b.

    -

    BIO_pop() removes the BIO b from a chain and returns the next BIO in the chain, or NULL if there is no next BIO. The removed BIO then becomes a single BIO with no association with the original chain, it can thus be freed or attached to a different chain.

    +

    BIO_pop() removes the BIO b from any chain is is part of. If b is NULL the function does nothing and returns NULL. Otherwise it makes a control call on b and returns the next BIO in the chain, or NULL if there is no next BIO. The removed BIO becomes a single BIO with no association with the original chain, it can thus be freed or be made part of a different chain.

    -

    BIO_set_next() replaces the existing next BIO in a chain with the BIO pointed to by next. The new chain may include some of the same BIOs from the old chain or it may be completely different.

    +

    BIO_set_next() replaces the existing next BIO in a chain with the BIO pointed to by next. The new chain may include some of the same BIOs from the old chain or it may be completely different.

    NOTES

    The names of these functions are perhaps a little misleading. BIO_push() joins two BIO chains whereas BIO_pop() deletes a single BIO from a chain, the deleted BIO does not need to be at the end of a chain.

    -

    The process of calling BIO_push() and BIO_pop() on a BIO may have additional consequences (a control call is made to the affected BIOs) any effects will be noted in the descriptions of individual BIOs.

    +

    The process of calling BIO_push() and BIO_pop() on a BIO may have additional consequences (a control call is made to the affected BIOs). Any effects will be noted in the descriptions of individual BIOs.

    RETURN VALUES

    -

    BIO_push() returns the end of the chain, b.

    +

    BIO_push() returns the head of the chain, which usually is b, or next if b is NULL.

    BIO_pop() returns the next BIO in the chain, or NULL if there is no next BIO.

    EXAMPLES

    -

    For these examples suppose md1 and md2 are digest BIOs, b64 is a base64 BIO and f is a file BIO.

    +

    For these examples suppose md1 and md2 are digest BIOs, b64 is a base64 BIO and f is a file BIO.

    If the call:

    BIO_push(b64, f);
    -

    is made then the new chain will be b64-f. After making the calls

    +

    is made then the new chain will be b64-f. After making the calls

    BIO_push(md2, b64);
     BIO_push(md1, md2);
    -

    the new chain is md1-md2-b64-f. Data written to md1 will be digested by md1 and md2, base64 encoded and written to f.

    +

    the new chain is md1-md2-b64-f. Data written to md1 will be digested by md1 and md2, base64 encoded, and finally written to f.

    -

    It should be noted that reading causes data to pass in the reverse direction, that is data is read from f, base64 decoded and digested by md1 and md2. If the call:

    +

    It should be noted that reading causes data to pass in the reverse direction, that is data is read from f, base64 decoded, and digested by md2 and then md1.

    + +

    The call:

    BIO_pop(md2);
    -

    The call will return b64 and the new chain will be md1-b64-f data can be written to md1 as before.

    +

    will return b64 and the new chain will be md1-b64-f. Data can be written to and read from md1 as before, except that md2 will no more be applied.

    SEE ALSO

    @@ -86,7 +88,7 @@ BIO_push(md1, md2);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_puts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_puts.html new file mode 120000 index 00000000..abb8fc58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_puts.html @@ -0,0 +1 @@ +BIO_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read.html index 05fce951..9105d963 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read.html @@ -60,7 +60,7 @@ int BIO_puts(BIO *b, const char *buf);

    NOTES

    -

    A 0 or -1 return is not necessarily an indication of an error. In particular when the source/sink is non-blocking or of a certain type it may merely be an indication that no data is currently available and that the application should retry the operation later.

    +

    A 0 or -1 return is not necessarily an indication of an error. In particular when the source/sink is nonblocking or of a certain type it may merely be an indication that no data is currently available and that the application should retry the operation later.

    One technique sometimes used with blocking sockets is to use a system call (such as select(), poll() or equivalent) to determine when data is available and then call read() to read the data. The equivalent with BIOs (that is call select() on the underlying I/O structure and then call BIO_read() to read the data) should not be used because a single call to BIO_read() can cause several reads (and writes in the case of SSL BIOs) on the underlying I/O structure and may block as a result. Instead select() (or equivalent) should be combined with non blocking I/O so successive reads will request a retry instead of blocking.

    @@ -78,7 +78,7 @@ int BIO_puts(BIO *b, const char *buf);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read_ex.html new file mode 120000 index 00000000..abb8fc58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read_ex.html @@ -0,0 +1 @@ +BIO_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read_filename.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read_filename.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_read_filename.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_reset.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_reset.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_reset.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_retry_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_retry_type.html new file mode 120000 index 00000000..1df22d45 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_retry_type.html @@ -0,0 +1 @@ +BIO_should_retry.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_rw_filename.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_rw_filename.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_rw_filename.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_accept.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_accept.html index 23ad9cde..67ca8ca5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_accept.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_accept.html @@ -98,7 +98,7 @@ int BIO_do_accept(BIO *b);

    If only a single connection will be processed it is possible to perform I/O using the accept BIO itself. This is often undesirable however because the accept BIO will still accept additional incoming connections. This can be resolved by using BIO_pop() (see above) and freeing up the accept BIO after the initial connection.

    -

    If the underlying accept socket is non-blocking and BIO_do_accept() is called to await an incoming connection it is possible for BIO_should_io_special() with the reason BIO_RR_ACCEPT. If this happens then it is an indication that an accept attempt would block: the application should take appropriate action to wait until the underlying socket has accepted a connection and retry the call.

    +

    If the underlying accept socket is nonblocking and BIO_do_accept() is called to await an incoming connection it is possible for BIO_should_io_special() with the reason BIO_RR_ACCEPT. If this happens then it is an indication that an accept attempt would block: the application should take appropriate action to wait until the underlying socket has accepted a connection and retry the call.

    BIO_set_accept_name(), BIO_get_accept_name(), BIO_set_accept_port(), BIO_get_accept_port(), BIO_set_nbio_accept(), BIO_set_accept_bios(), BIO_get_peer_name(), BIO_get_peer_port(), BIO_get_accept_ip_family(), BIO_set_accept_ip_family(), BIO_set_bind_mode(), BIO_get_bind_mode() and BIO_do_accept() are macros.

    @@ -163,7 +163,7 @@ BIO_free(cbio2);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_bio.html index 4d6cd528..63b513a9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_bio.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_bio.html @@ -109,7 +109,7 @@ int BIO_ctrl_reset_read_request(BIO *b); ... BIO_new_bio_pair(&internal_bio, 0, &network_bio, 0); SSL_set_bio(ssl, internal_bio, internal_bio); -SSL_operations(); /* e.g SSL_read and SSL_write */ +SSL_operations(); /* e.g. SSL_read and SSL_write */ ... application | TLS-engine @@ -131,7 +131,7 @@ application | TLS-engine BIO_free(network_bio); ... -

    As the BIO pair will only buffer the data and never directly access the connection, it behaves non-blocking and will return as soon as the write buffer is full or the read buffer is drained. Then the application has to flush the write buffer and/or fill the read buffer.

    +

    As the BIO pair will only buffer the data and never directly access the connection, it behaves nonblocking and will return as soon as the write buffer is full or the read buffer is drained. Then the application has to flush the write buffer and/or fill the read buffer.

    Use the BIO_ctrl_pending(), to find out whether data is buffered in the BIO and must be transferred to the network. Use BIO_ctrl_get_read_request() to find out, how many bytes must be written into the buffer before the SSL_operation() can successfully be continued.

    @@ -145,7 +145,7 @@ application | TLS-engine

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_connect.html index 1c28920a..695f1927 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_connect.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_connect.html @@ -90,7 +90,7 @@ int BIO_do_connect(BIO *b);

    If blocking I/O is set then a non positive return value from any I/O call is caused by an error condition, although a zero return will normally mean that the connection was closed.

    -

    If the port name is supplied as part of the host name then this will override any value set with BIO_set_conn_port(). This may be undesirable if the application does not wish to allow connection to arbitrary ports. This can be avoided by checking for the presence of the ':' character in the passed hostname and either indicating an error or truncating the string at that point.

    +

    If the port name is supplied as part of the hostname then this will override any value set with BIO_set_conn_port(). This may be undesirable if the application does not wish to allow connection to arbitrary ports. This can be avoided by checking for the presence of the ':' character in the passed hostname and either indicating an error or truncating the string at that point.

    The values returned by BIO_get_conn_hostname(), BIO_get_conn_address(), and BIO_get_conn_port() are updated when a connection attempt is made. Before any connection attempt the values returned are those set by the application itself.

    @@ -159,7 +159,7 @@ BIO_free(out);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_file.html index 31246e59..13d7271e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_file.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_file.html @@ -79,7 +79,7 @@ int BIO_rw_filename(BIO *b, char *name)

    Because the file BIO calls the underlying stdio functions any quirks in stdio behaviour will be mirrored by the corresponding BIO.

    -

    On Windows BIO_new_files reserves for the filename argument to be UTF-8 encoded. In other words if you have to make it work in multi- lingual environment, encode file names in UTF-8.

    +

    On Windows BIO_new_files reserves for the filename argument to be UTF-8 encoded. In other words if you have to make it work in multi- lingual environment, encode filenames in UTF-8.

    RETURN VALUES

    @@ -147,7 +147,7 @@ BIO_free(out);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_secmem.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_secmem.html new file mode 120000 index 00000000..f3ea7015 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_s_secmem.html @@ -0,0 +1 @@ +BIO_s_mem.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_seek.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_seek.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_seek.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_bios.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_bios.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_bios.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_ip_family.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_ip_family.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_ip_family.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_name.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_name.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_port.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_port.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_accept_port.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_bind_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_bind_mode.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_bind_mode.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_buffer_read_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_buffer_read_data.html new file mode 120000 index 00000000..8f8127a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_buffer_read_data.html @@ -0,0 +1 @@ +BIO_f_buffer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_buffer_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_buffer_size.html new file mode 120000 index 00000000..8f8127a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_buffer_size.html @@ -0,0 +1 @@ +BIO_f_buffer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback.html index 025db3a7..af51ffde 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback.html @@ -48,7 +48,7 @@ long BIO_debug_callback(BIO *bio, int cmd, const char *argp, int argi,

    DESCRIPTION

    -

    BIO_set_callback_ex() and BIO_get_callback_ex() set and retrieve the BIO callback. The callback is called during most high level BIO operations. It can be used for debugging purposes to trace operations on a BIO or to modify its operation.

    +

    BIO_set_callback_ex() and BIO_get_callback_ex() set and retrieve the BIO callback. The callback is called during most high-level BIO operations. It can be used for debugging purposes to trace operations on a BIO or to modify its operation.

    BIO_set_callback() and BIO_get_callback() set and retrieve the old format BIO callback. New code should not use these functions, but they are retained for backwards compatibility. Any callback set via BIO_set_callback_ex() will get called in preference to any set by BIO_set_callback().

    @@ -239,7 +239,7 @@ long BIO_debug_callback(BIO *bio, int cmd, const char *argp, int argi,

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback_arg.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback_arg.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback_ex.html new file mode 120000 index 00000000..a5661614 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_callback_ex.html @@ -0,0 +1 @@ +BIO_set_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_cipher.html new file mode 120000 index 00000000..5eca86f0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_cipher.html @@ -0,0 +1 @@ +BIO_f_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_close.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_close.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_close.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_address.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_address.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_address.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_hostname.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_hostname.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_hostname.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_ip_family.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_ip_family.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_ip_family.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_port.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_port.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_conn_port.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_data.html new file mode 120000 index 00000000..825e8c0f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_data.html @@ -0,0 +1 @@ +BIO_get_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_fd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_fd.html new file mode 120000 index 00000000..93464df6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_fd.html @@ -0,0 +1 @@ +BIO_s_fd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_fp.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_fp.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_info_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_info_callback.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_info_callback.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_init.html new file mode 120000 index 00000000..825e8c0f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_init.html @@ -0,0 +1 @@ +BIO_get_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_md.html new file mode 120000 index 00000000..7021b6b6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_md.html @@ -0,0 +1 @@ +BIO_f_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_mem_buf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_mem_buf.html new file mode 120000 index 00000000..f3ea7015 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_mem_buf.html @@ -0,0 +1 @@ +BIO_s_mem.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_mem_eof_return.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_mem_eof_return.html new file mode 120000 index 00000000..f3ea7015 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_mem_eof_return.html @@ -0,0 +1 @@ +BIO_s_mem.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_nbio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_nbio.html new file mode 120000 index 00000000..6c6f132c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_nbio.html @@ -0,0 +1 @@ +BIO_s_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_nbio_accept.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_nbio_accept.html new file mode 120000 index 00000000..a78e9729 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_nbio_accept.html @@ -0,0 +1 @@ +BIO_s_accept.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_next.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_next.html new file mode 120000 index 00000000..810fc2fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_next.html @@ -0,0 +1 @@ +BIO_push.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_read_buffer_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_read_buffer_size.html new file mode 120000 index 00000000..8f8127a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_read_buffer_size.html @@ -0,0 +1 @@ +BIO_f_buffer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_retry_reason.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_retry_reason.html new file mode 120000 index 00000000..1df22d45 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_retry_reason.html @@ -0,0 +1 @@ +BIO_should_retry.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_shutdown.html new file mode 120000 index 00000000..825e8c0f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_shutdown.html @@ -0,0 +1 @@ +BIO_get_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_mode.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_mode.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_renegotiate_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_renegotiate_bytes.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_renegotiate_bytes.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_renegotiate_timeout.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_renegotiate_timeout.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_ssl_renegotiate_timeout.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_write_buf_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_write_buf_size.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_write_buf_size.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_write_buffer_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_write_buffer_size.html new file mode 120000 index 00000000..8f8127a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_set_write_buffer_size.html @@ -0,0 +1 @@ +BIO_f_buffer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_io_special.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_io_special.html new file mode 120000 index 00000000..1df22d45 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_io_special.html @@ -0,0 +1 @@ +BIO_should_retry.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_read.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_read.html new file mode 120000 index 00000000..1df22d45 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_read.html @@ -0,0 +1 @@ +BIO_should_retry.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_write.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_write.html new file mode 120000 index 00000000..1df22d45 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_should_write.html @@ -0,0 +1 @@ +BIO_should_retry.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_shutdown_wr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_shutdown_wr.html new file mode 120000 index 00000000..05662c10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_shutdown_wr.html @@ -0,0 +1 @@ +BIO_s_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_snprintf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_snprintf.html new file mode 120000 index 00000000..dc1d9d6e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_snprintf.html @@ -0,0 +1 @@ +BIO_printf.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_socket.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_socket.html new file mode 120000 index 00000000..31fcee2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_socket.html @@ -0,0 +1 @@ +BIO_connect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ssl_copy_session_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ssl_copy_session_id.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ssl_copy_session_id.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ssl_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ssl_shutdown.html new file mode 120000 index 00000000..201471c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_ssl_shutdown.html @@ -0,0 +1 @@ +BIO_f_ssl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_tell.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_tell.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_tell.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_up_ref.html new file mode 120000 index 00000000..3e54c9f3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_up_ref.html @@ -0,0 +1 @@ +BIO_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vfree.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vfree.html new file mode 120000 index 00000000..3e54c9f3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vfree.html @@ -0,0 +1 @@ +BIO_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vprintf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vprintf.html new file mode 120000 index 00000000..dc1d9d6e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vprintf.html @@ -0,0 +1 @@ +BIO_printf.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vsnprintf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vsnprintf.html new file mode 120000 index 00000000..dc1d9d6e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_vsnprintf.html @@ -0,0 +1 @@ +BIO_printf.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_wpending.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_wpending.html new file mode 120000 index 00000000..f1ad7eea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_wpending.html @@ -0,0 +1 @@ +BIO_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write.html new file mode 120000 index 00000000..abb8fc58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write.html @@ -0,0 +1 @@ +BIO_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write_ex.html new file mode 120000 index 00000000..abb8fc58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write_ex.html @@ -0,0 +1 @@ +BIO_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write_filename.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write_filename.html new file mode 120000 index 00000000..325ebbb5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BIO_write_filename.html @@ -0,0 +1 @@ +BIO_s_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_convert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_convert.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_convert.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_convert_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_convert_ex.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_convert_ex.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_create_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_create_param.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_create_param.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_free.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_free.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_get_flags.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_get_flags.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_invert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_invert.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_invert.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_invert_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_invert_ex.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_invert_ex.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_is_current_thread.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_is_current_thread.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_is_current_thread.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_lock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_lock.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_lock.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_set_current_thread.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_set_current_thread.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_set_current_thread.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_set_flags.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_set_flags.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_unlock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_unlock.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_unlock.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_update.html new file mode 120000 index 00000000..530f85d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_BLINDING_update.html @@ -0,0 +1 @@ +BN_BLINDING_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_end.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_end.html new file mode 120000 index 00000000..5d529579 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_end.html @@ -0,0 +1 @@ +BN_CTX_start.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_free.html new file mode 120000 index 00000000..925c9ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_free.html @@ -0,0 +1 @@ +BN_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_get.html new file mode 120000 index 00000000..5d529579 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_get.html @@ -0,0 +1 @@ +BN_CTX_start.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_secure_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_secure_new.html new file mode 120000 index 00000000..925c9ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_CTX_secure_new.html @@ -0,0 +1 @@ +BN_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_call.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_call.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_call.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_free.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_free.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_get_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_get_arg.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_get_arg.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_new.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_new.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_set.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_set.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_set_old.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_set_old.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_GENCB_set_old.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_copy.html new file mode 120000 index 00000000..369c4b3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_copy.html @@ -0,0 +1 @@ +BN_mod_mul_montgomery.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_free.html new file mode 120000 index 00000000..369c4b3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_free.html @@ -0,0 +1 @@ +BN_mod_mul_montgomery.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_new.html new file mode 120000 index 00000000..369c4b3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_new.html @@ -0,0 +1 @@ +BN_mod_mul_montgomery.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_set.html new file mode 120000 index 00000000..369c4b3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_MONT_CTX_set.html @@ -0,0 +1 @@ +BN_mod_mul_montgomery.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_free.html new file mode 120000 index 00000000..2d4c99f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_free.html @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_new.html new file mode 120000 index 00000000..2d4c99f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_new.html @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_set.html new file mode 120000 index 00000000..2d4c99f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_RECP_CTX_set.html @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_abs_is_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_abs_is_word.html new file mode 120000 index 00000000..b6485f17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_abs_is_word.html @@ -0,0 +1 @@ +BN_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_add.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_add.html index 94cd8a60..26439dcc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_add.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_add.html @@ -22,7 +22,7 @@

    NAME

    -

    BN_add, BN_sub, BN_mul, BN_sqr, BN_div, BN_mod, BN_nnmod, BN_mod_add, BN_mod_sub, BN_mod_mul, BN_mod_sqr, BN_exp, BN_mod_exp, BN_gcd - arithmetic operations on BIGNUMs

    +

    BN_add, BN_sub, BN_mul, BN_sqr, BN_div, BN_mod, BN_nnmod, BN_mod_add, BN_mod_sub, BN_mod_mul, BN_mod_sqr, BN_mod_sqrt, BN_exp, BN_mod_exp, BN_gcd - arithmetic operations on BIGNUMs

    SYNOPSIS

    @@ -54,6 +54,8 @@ int BN_mod_mul(BIGNUM *r, BIGNUM *a, BIGNUM *b, const BIGNUM *m, int BN_mod_sqr(BIGNUM *r, BIGNUM *a, const BIGNUM *m, BN_CTX *ctx); +BIGNUM *BN_mod_sqrt(BIGNUM *in, BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); + int BN_exp(BIGNUM *r, BIGNUM *a, BIGNUM *p, BN_CTX *ctx); int BN_mod_exp(BIGNUM *r, BIGNUM *a, const BIGNUM *p, @@ -75,16 +77,18 @@ int BN_gcd(BIGNUM *r, BIGNUM *a, BIGNUM *b, BN_CTX *ctx);

    BN_mod() corresponds to BN_div() with dv set to NULL.

    -

    BN_nnmod() reduces a modulo m and places the non-negative remainder in r.

    +

    BN_nnmod() reduces a modulo m and places the nonnegative remainder in r.

    -

    BN_mod_add() adds a to b modulo m and places the non-negative result in r.

    +

    BN_mod_add() adds a to b modulo m and places the nonnegative result in r.

    -

    BN_mod_sub() subtracts b from a modulo m and places the non-negative result in r.

    +

    BN_mod_sub() subtracts b from a modulo m and places the nonnegative result in r.

    -

    BN_mod_mul() multiplies a by b and finds the non-negative remainder respective to modulus m (r=(a*b) mod m). r may be the same BIGNUM as a or b. For more efficient algorithms for repeated computations using the same modulus, see BN_mod_mul_montgomery(3) and BN_mod_mul_reciprocal(3).

    +

    BN_mod_mul() multiplies a by b and finds the nonnegative remainder respective to modulus m (r=(a*b) mod m). r may be the same BIGNUM as a or b. For more efficient algorithms for repeated computations using the same modulus, see BN_mod_mul_montgomery(3) and BN_mod_mul_reciprocal(3).

    BN_mod_sqr() takes the square of a modulo m and places the result in r.

    +

    BN_mod_sqrt() returns the modular square root of a such that in^2 = a (mod p). The modulus p must be a prime, otherwise an error or an incorrect "result" will be returned. The result is stored into in which can be NULL. The result will be newly allocated in that case.

    +

    BN_exp() raises a to the p-th power and places the result in r (r=a^p). This function is faster than repeated applications of BN_mul().

    BN_mod_exp() computes a to the p-th power modulo m (r=a^p % m). This function uses less time and space than BN_exp(). Do not call this function when m is even and any of the parameters have the BN_FLG_CONSTTIME flag set.

    @@ -97,7 +101,9 @@ int BN_gcd(BIGNUM *r, BIGNUM *a, BIGNUM *b, BN_CTX *ctx);

    RETURN VALUES

    -

    For all functions, 1 is returned for success, 0 on error. The return value should always be checked (e.g., if (!BN_add(r,a,b)) goto err;). The error codes can be obtained by ERR_get_error(3).

    +

    The BN_mod_sqrt() returns the result (possibly incorrect if p is not a prime), or NULL.

    + +

    For all remaining functions, 1 is returned for success, 0 on error. The return value should always be checked (e.g., if (!BN_add(r,a,b)) goto err;). The error codes can be obtained by ERR_get_error(3).

    SEE ALSO

    @@ -105,7 +111,7 @@ int BN_gcd(BIGNUM *r, BIGNUM *a, BIGNUM *b, BN_CTX *ctx);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bin2bn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bin2bn.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bin2bn.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2bin.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2bin.html index 62dc51c2..fec2aad0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2bin.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2bin.html @@ -50,7 +50,7 @@ BIGNUM *BN_mpi2bn(unsigned char *s, int len, BIGNUM *ret);

    BN_bn2bin() converts the absolute value of a into big-endian form and stores it at to. to must point to BN_num_bytes(a) bytes of memory.

    -

    BN_bn2binpad() also converts the absolute value of a into big-endian form and stores it at to. tolen indicates the length of the output buffer to. The result is padded with zeroes if necessary. If tolen is less than BN_num_bytes(a) an error is returned.

    +

    BN_bn2binpad() also converts the absolute value of a into big-endian form and stores it at to. tolen indicates the length of the output buffer to. The result is padded with zeros if necessary. If tolen is less than BN_num_bytes(a) an error is returned.

    BN_bin2bn() converts the positive integer in big-endian form of length len at s into a BIGNUM and places it in ret. If ret is NULL, a new BIGNUM is created.

    @@ -88,7 +88,7 @@ BIGNUM *BN_mpi2bn(unsigned char *s, int len, BIGNUM *ret);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2binpad.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2binpad.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2binpad.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2dec.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2dec.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2dec.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2hex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2hex.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2hex.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2lebinpad.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2lebinpad.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2lebinpad.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2mpi.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2mpi.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_bn2mpi.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear.html new file mode 120000 index 00000000..f7169377 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear.html @@ -0,0 +1 @@ +BN_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear_bit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear_bit.html new file mode 120000 index 00000000..1f71a059 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear_bit.html @@ -0,0 +1 @@ +BN_set_bit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear_free.html new file mode 120000 index 00000000..f7169377 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_clear_free.html @@ -0,0 +1 @@ +BN_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_cmp.html index 71e45612..17e2c227 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_cmp.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_cmp.html @@ -16,42 +16,46 @@
  • SYNOPSIS
  • DESCRIPTION
  • RETURN VALUES
  • +
  • HISTORY
  • COPYRIGHT
  • NAME

    -

    BN_cmp, BN_ucmp, BN_is_zero, BN_is_one, BN_is_word, BN_is_odd - BIGNUM comparison and test functions

    +

    BN_cmp, BN_ucmp, BN_is_zero, BN_is_one, BN_is_word, BN_abs_is_word, BN_is_odd - BIGNUM comparison and test functions

    SYNOPSIS

    #include <openssl/bn.h>
     
    -int BN_cmp(BIGNUM *a, BIGNUM *b);
    -int BN_ucmp(BIGNUM *a, BIGNUM *b);
    +int BN_cmp(const BIGNUM *a, const BIGNUM *b);
    +int BN_ucmp(const BIGNUM *a, const BIGNUM *b);
     
    -int BN_is_zero(BIGNUM *a);
    -int BN_is_one(BIGNUM *a);
    -int BN_is_word(BIGNUM *a, BN_ULONG w);
    -int BN_is_odd(BIGNUM *a);
    +int BN_is_zero(const BIGNUM *a); +int BN_is_one(const BIGNUM *a); +int BN_is_word(const BIGNUM *a, const BN_ULONG w); +int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w); +int BN_is_odd(const BIGNUM *a);

    DESCRIPTION

    -

    BN_cmp() compares the numbers a and b. BN_ucmp() compares their absolute values.

    +

    BN_cmp() compares the numbers a and b. BN_ucmp() compares their absolute values.

    -

    BN_is_zero(), BN_is_one() and BN_is_word() test if a equals 0, 1, or w respectively. BN_is_odd() tests if a is odd.

    - -

    BN_is_zero(), BN_is_one(), BN_is_word() and BN_is_odd() are macros.

    +

    BN_is_zero(), BN_is_one(), BN_is_word() and BN_abs_is_word() test if a equals 0, 1, w, or |w| respectively. BN_is_odd() tests if a is odd.

    RETURN VALUES

    -

    BN_cmp() returns -1 if a < b, 0 if a == b and 1 if a > b. BN_ucmp() is the same using the absolute values of a and b.

    +

    BN_cmp() returns -1 if a < b, 0 if a == b and 1 if a > b. BN_ucmp() is the same using the absolute values of a and b.

    -

    BN_is_zero(), BN_is_one() BN_is_word() and BN_is_odd() return 1 if the condition is true, 0 otherwise.

    +

    BN_is_zero(), BN_is_one() BN_is_word(), BN_abs_is_word() and BN_is_odd() return 1 if the condition is true, 0 otherwise.

    + +

    HISTORY

    + +

    Prior to OpenSSL 1.1.0, BN_is_zero(), BN_is_one(), BN_is_word(), BN_abs_is_word() and BN_is_odd() were macros.

    COPYRIGHT

    -

    Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_dec2bn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_dec2bn.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_dec2bn.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div_recp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div_recp.html new file mode 120000 index 00000000..2d4c99f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div_recp.html @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div_word.html new file mode 120000 index 00000000..85a00b4b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_div_word.html @@ -0,0 +1 @@ +BN_add_word.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_dup.html new file mode 120000 index 00000000..0f200c98 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_dup.html @@ -0,0 +1 @@ +BN_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_exp.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_exp.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_free.html new file mode 120000 index 00000000..f7169377 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_free.html @@ -0,0 +1 @@ +BN_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_from_montgomery.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_from_montgomery.html new file mode 120000 index 00000000..369c4b3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_from_montgomery.html @@ -0,0 +1 @@ +BN_mod_mul_montgomery.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_gcd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_gcd.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_gcd.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_generate_prime.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_generate_prime.html index bdb2ff7d..fb79820a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_generate_prime.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_generate_prime.html @@ -107,7 +107,7 @@ int BN_is_prime_fasttest(const BIGNUM *a, int checks,

    When the source of the prime is not random or not trusted, the number of checks needs to be much higher to reach the same level of assurance: It should equal half of the targeted security level in bits (rounded up to the next integer if necessary). For instance, to reach the 128 bit security level, nchecks should be set to 64.

    -

    If cb is not NULL, BN_GENCB_call(cb, 1, j) is called after the j-th iteration (j = 0, 1, ...). ctx is a pre-allocated BN_CTX (to save the overhead of allocating and freeing the structure in a loop), or NULL.

    +

    If cb is not NULL, BN_GENCB_call(cb, 1, j) is called after the j-th iteration (j = 0, 1, ...). ctx is a preallocated BN_CTX (to save the overhead of allocating and freeing the structure in a loop), or NULL.

    BN_GENCB_call() calls the callback function held in the BN_GENCB structure and passes the ints a and b as arguments. There are two types of BN_GENCB structure that are supported: "new" style and "old" style. New programs should prefer the "new" style, whilst the "old" style is provided for backwards compatibility purposes.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_generate_prime_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_generate_prime_ex.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_generate_prime_ex.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_192.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_192.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_192.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_224.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_224.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_224.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_256.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_256.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_384.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_384.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_384.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_521.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_521.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get0_nist_prime_521.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc2409_prime_1024.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc2409_prime_1024.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc2409_prime_1024.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc2409_prime_768.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc2409_prime_768.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc2409_prime_768.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_1536.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_1536.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_1536.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_2048.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_2048.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_2048.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_3072.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_3072.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_3072.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_4096.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_4096.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_4096.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_6144.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_6144.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_6144.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_8192.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_8192.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_rfc3526_prime_8192.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_word.html new file mode 120000 index 00000000..6dc36805 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_get_word.html @@ -0,0 +1 @@ +BN_zero.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_hex2bn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_hex2bn.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_hex2bn.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_bit_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_bit_set.html new file mode 120000 index 00000000..1f71a059 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_bit_set.html @@ -0,0 +1 @@ +BN_set_bit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_odd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_odd.html new file mode 120000 index 00000000..b6485f17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_odd.html @@ -0,0 +1 @@ +BN_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_one.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_one.html new file mode 120000 index 00000000..b6485f17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_one.html @@ -0,0 +1 @@ +BN_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_ex.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_ex.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_fasttest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_fasttest.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_fasttest.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_fasttest_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_fasttest_ex.html new file mode 120000 index 00000000..5f858250 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_prime_fasttest_ex.html @@ -0,0 +1 @@ +BN_generate_prime.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_word.html new file mode 120000 index 00000000..b6485f17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_word.html @@ -0,0 +1 @@ +BN_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_zero.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_zero.html new file mode 120000 index 00000000..b6485f17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_is_zero.html @@ -0,0 +1 @@ +BN_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lebin2bn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lebin2bn.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lebin2bn.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lshift.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lshift.html new file mode 120000 index 00000000..1f71a059 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lshift.html @@ -0,0 +1 @@ +BN_set_bit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lshift1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lshift1.html new file mode 120000 index 00000000..1f71a059 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_lshift1.html @@ -0,0 +1 @@ +BN_set_bit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mask_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mask_bits.html new file mode 120000 index 00000000..1f71a059 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mask_bits.html @@ -0,0 +1 @@ +BN_set_bit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_add.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_add.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_add.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_exp.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_exp.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_mul.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_mul.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_mul.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_mul_montgomery.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_mul_montgomery.html index 825b3ed1..ee8da36f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_mul_montgomery.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_mul_montgomery.html @@ -61,7 +61,7 @@ int BN_to_montgomery(BIGNUM *r, BIGNUM *a, BN_MONT_CTX *mont,

    BN_from_montgomery() performs the Montgomery reduction r = a*R^-1.

    -

    BN_to_montgomery() computes Mont(a,R^2), i.e. a*R. Note that a must be non-negative and smaller than the modulus.

    +

    BN_to_montgomery() computes Mont(a,R^2), i.e. a*R. Note that a must be nonnegative and smaller than the modulus.

    For all functions, ctx is a previously allocated BN_CTX used for temporary variables.

    @@ -87,7 +87,7 @@ int BN_to_montgomery(BIGNUM *r, BIGNUM *a, BN_MONT_CTX *mont,

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sqr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sqr.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sqr.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sqrt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sqrt.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sqrt.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sub.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sub.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_sub.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_word.html new file mode 120000 index 00000000..85a00b4b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mod_word.html @@ -0,0 +1 @@ +BN_add_word.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mpi2bn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mpi2bn.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mpi2bn.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mul.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mul.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mul.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mul_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mul_word.html new file mode 120000 index 00000000..85a00b4b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_mul_word.html @@ -0,0 +1 @@ +BN_add_word.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_nnmod.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_nnmod.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_nnmod.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_num_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_num_bits.html new file mode 120000 index 00000000..f3ea63f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_num_bits.html @@ -0,0 +1 @@ +BN_num_bytes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_num_bits_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_num_bits_word.html new file mode 120000 index 00000000..f3ea63f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_num_bits_word.html @@ -0,0 +1 @@ +BN_num_bytes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_one.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_one.html new file mode 120000 index 00000000..6dc36805 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_one.html @@ -0,0 +1 @@ +BN_zero.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_print.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_print.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_print_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_print_fp.html new file mode 120000 index 00000000..43c6c9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_print_fp.html @@ -0,0 +1 @@ +BN_bn2bin.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_priv_rand.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_priv_rand.html new file mode 120000 index 00000000..d2e540c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_priv_rand.html @@ -0,0 +1 @@ +BN_rand.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_priv_rand_range.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_priv_rand_range.html new file mode 120000 index 00000000..d2e540c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_priv_rand_range.html @@ -0,0 +1 @@ +BN_rand.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_pseudo_rand.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_pseudo_rand.html new file mode 120000 index 00000000..d2e540c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_pseudo_rand.html @@ -0,0 +1 @@ +BN_rand.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_pseudo_rand_range.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_pseudo_rand_range.html new file mode 120000 index 00000000..d2e540c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_pseudo_rand_range.html @@ -0,0 +1 @@ +BN_rand.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rand.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rand.html index 6f99cbbd..11e7314d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rand.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rand.html @@ -44,7 +44,7 @@ int BN_pseudo_rand_range(BIGNUM *rnd, BIGNUM *range);

    DESCRIPTION

    -

    BN_rand() generates a cryptographically strong pseudo-random number of bits in length and stores it in rnd. If bits is less than zero, or too small to accommodate the requirements specified by the top and bottom parameters, an error is returned. The top parameters specifies requirements on the most significant bit of the generated number. If it is BN_RAND_TOP_ANY, there is no constraint. If it is BN_RAND_TOP_ONE, the top bit must be one. If it is BN_RAND_TOP_TWO, the two most significant bits of the number will be set to 1, so that the product of two such random numbers will always have 2*bits length. If bottom is BN_RAND_BOTTOM_ODD, the number will be odd; if it is BN_RAND_BOTTOM_ANY it can be odd or even. If bits is 1 then top cannot also be BN_RAND_FLG_TOPTWO.

    +

    BN_rand() generates a cryptographically strong pseudo-random number of bits in length and stores it in rnd. If bits is less than zero, or too small to accommodate the requirements specified by the top and bottom parameters, an error is returned. The top parameters specifies requirements on the most significant bit of the generated number. If it is BN_RAND_TOP_ANY, there is no constraint. If it is BN_RAND_TOP_ONE, the top bit must be one. If it is BN_RAND_TOP_TWO, the two most significant bits of the number will be set to 1, so that the product of two such random numbers will always have 2*bits length. If bottom is BN_RAND_BOTTOM_ODD, the number will be odd; if it is BN_RAND_BOTTOM_ANY it can be odd or even. If bits is 1 then top cannot also be BN_RAND_TOP_TWO.

    BN_rand_range() generates a cryptographically strong pseudo-random number rnd in the range 0 <= rnd < range.

    @@ -76,7 +76,7 @@ int BN_pseudo_rand_range(BIGNUM *rnd, BIGNUM *range);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rand_range.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rand_range.html new file mode 120000 index 00000000..d2e540c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rand_range.html @@ -0,0 +1 @@ +BN_rand.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rshift.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rshift.html new file mode 120000 index 00000000..1f71a059 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rshift.html @@ -0,0 +1 @@ +BN_set_bit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rshift1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rshift1.html new file mode 120000 index 00000000..1f71a059 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_rshift1.html @@ -0,0 +1 @@ +BN_set_bit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_secure_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_secure_new.html new file mode 120000 index 00000000..f7169377 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_secure_new.html @@ -0,0 +1 @@ +BN_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_set_bit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_set_bit.html index 9a6c6fc0..6ef44e28 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_set_bit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_set_bit.html @@ -49,11 +49,11 @@ int BN_rshift1(BIGNUM *r, BIGNUM *a);

    BN_is_bit_set() tests if bit n in a is set.

    -

    BN_mask_bits() truncates a to an n bit number (a&=~((~0)>>n)). An error occurs if a already is shorter than n bits.

    +

    BN_mask_bits() truncates a to an n bit number (a&=~((~0)<<n)). An error occurs if a already is shorter than n bits.

    -

    BN_lshift() shifts a left by n bits and places the result in r (r=a*2^n). Note that n must be non-negative. BN_lshift1() shifts a left by one and places the result in r (r=2*a).

    +

    BN_lshift() shifts a left by n bits and places the result in r (r=a*2^n). Note that n must be nonnegative. BN_lshift1() shifts a left by one and places the result in r (r=2*a).

    -

    BN_rshift() shifts a right by n bits and places the result in r (r=a/2^n). Note that n must be non-negative. BN_rshift1() shifts a right by one and places the result in r (r=a/2).

    +

    BN_rshift() shifts a right by n bits and places the result in r (r=a/2^n). Note that n must be nonnegative. BN_rshift1() shifts a right by one and places the result in r (r=a/2).

    For the shift functions, r and a may be the same variable.

    @@ -69,7 +69,7 @@ int BN_rshift1(BIGNUM *r, BIGNUM *a);

    COPYRIGHT

    -

    Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_set_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_set_word.html new file mode 120000 index 00000000..6dc36805 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_set_word.html @@ -0,0 +1 @@ +BN_zero.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sqr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sqr.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sqr.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sub.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sub.html new file mode 120000 index 00000000..a4fd0b59 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sub.html @@ -0,0 +1 @@ +BN_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sub_word.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sub_word.html new file mode 120000 index 00000000..85a00b4b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_sub_word.html @@ -0,0 +1 @@ +BN_add_word.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_ASN1_ENUMERATED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_ASN1_ENUMERATED.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_ASN1_ENUMERATED.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_ASN1_INTEGER.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_ASN1_INTEGER.html new file mode 120000 index 00000000..7e6e6528 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_ASN1_INTEGER.html @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_montgomery.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_montgomery.html new file mode 120000 index 00000000..369c4b3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_to_montgomery.html @@ -0,0 +1 @@ +BN_mod_mul_montgomery.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_ucmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_ucmp.html new file mode 120000 index 00000000..b6485f17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_ucmp.html @@ -0,0 +1 @@ +BN_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_value_one.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_value_one.html new file mode 120000 index 00000000..6dc36805 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_value_one.html @@ -0,0 +1 @@ +BN_zero.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_with_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_with_flags.html new file mode 120000 index 00000000..0f200c98 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BN_with_flags.html @@ -0,0 +1 @@ +BN_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_free.html new file mode 120000 index 00000000..4a33c008 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_free.html @@ -0,0 +1 @@ +BUF_MEM_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_grow.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_grow.html new file mode 120000 index 00000000..4a33c008 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_grow.html @@ -0,0 +1 @@ +BUF_MEM_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_grow_clean.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_grow_clean.html new file mode 120000 index 00000000..4a33c008 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_grow_clean.html @@ -0,0 +1 @@ +BUF_MEM_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_new_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_new_ex.html new file mode 120000 index 00000000..4a33c008 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_MEM_new_ex.html @@ -0,0 +1 @@ +BUF_MEM_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_reverse.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_reverse.html new file mode 120000 index 00000000..4a33c008 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/BUF_reverse.html @@ -0,0 +1 @@ +BUF_MEM_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CERTIFICATEPOLICIES_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CERTIFICATEPOLICIES_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CERTIFICATEPOLICIES_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CERTIFICATEPOLICIES_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CERTIFICATEPOLICIES_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CERTIFICATEPOLICIES_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_print_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_print_ctx.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ContentInfo_print_ctx.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_create0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_create0.html new file mode 120000 index 00000000..bb32380f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_create0.html @@ -0,0 +1 @@ +CMS_get1_ReceiptRequest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_get0_values.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_get0_values.html new file mode 120000 index 00000000..bb32380f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_get0_values.html @@ -0,0 +1 @@ +CMS_get1_ReceiptRequest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_ReceiptRequest_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_decrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_decrypt.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_decrypt.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_encrypt.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_encrypt.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_kekri_get0_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_kekri_get0_id.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_kekri_get0_id.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_kekri_id_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_kekri_id_cmp.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_kekri_id_cmp.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_ktri_cert_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_ktri_cert_cmp.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_ktri_cert_cmp.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_ktri_get0_signer_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_ktri_get0_signer_id.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_ktri_get0_signer_id.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_set0_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_set0_key.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_set0_key.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_set0_pkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_set0_pkey.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_set0_pkey.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_type.html new file mode 120000 index 00000000..57660497 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_RecipientInfo_type.html @@ -0,0 +1 @@ +CMS_get0_RecipientInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_cert_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_cert_cmp.html new file mode 120000 index 00000000..6b045f70 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_cert_cmp.html @@ -0,0 +1 @@ +CMS_get0_SignerInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_get0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_get0_signature.html new file mode 120000 index 00000000..6b045f70 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_get0_signature.html @@ -0,0 +1 @@ +CMS_get0_SignerInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_get0_signer_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_get0_signer_id.html new file mode 120000 index 00000000..6b045f70 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_get0_signer_id.html @@ -0,0 +1 @@ +CMS_get0_SignerInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_set1_signer_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_set1_signer_cert.html new file mode 120000 index 00000000..6b045f70 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_set1_signer_cert.html @@ -0,0 +1 @@ +CMS_get0_SignerInfos.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_sign.html new file mode 120000 index 00000000..e139e3c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_SignerInfo_sign.html @@ -0,0 +1 @@ +CMS_add1_signer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_cert.html index 963021b2..8ffc9c2c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_cert.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_cert.html @@ -39,19 +39,21 @@ STACK_OF(X509_CRL) *CMS_get1_crls(CMS_ContentInfo *cms);

    DESCRIPTION

    -

    CMS_add0_cert() and CMS_add1_cert() add certificate cert to cms. must be of type signed data or enveloped data.

    +

    CMS_add0_cert() and CMS_add1_cert() add certificate cert to cms. cms must be of type signed data or (authenticated) enveloped data. For signed data, such a certificate can be used when signing or verifying to fill in the signer certificate or to provide an extra CA certificate that may be needed for chain building in certificate validation.

    -

    CMS_get1_certs() returns all certificates in cms.

    +

    CMS_get1_certs() returns all certificates in cms.

    -

    CMS_add0_crl() and CMS_add1_crl() add CRL crl to cms. CMS_get1_crls() returns any CRLs in cms.

    +

    CMS_add0_crl() and CMS_add1_crl() add CRL crl to cms. cms must be of type signed data or (authenticated) enveloped data. For signed data, such a CRL may be used in certificate validation. It may be given both for inclusion when signing a CMS message and when verifying a signed CMS message.

    + +

    CMS_get1_crls() returns all CRLs in cms.

    NOTES

    -

    The CMS_ContentInfo structure cms must be of type signed data or enveloped data or an error will be returned.

    +

    The CMS_ContentInfo structure cms must be of type signed data or enveloped data or an error will be returned.

    -

    For signed data certificates and CRLs are added to the certificates and crls fields of SignedData structure. For enveloped data they are added to OriginatorInfo.

    +

    For signed data certificates and CRLs are added to the certificates and crls fields of SignedData structure. For enveloped data they are added to OriginatorInfo.

    -

    As the 0 implies CMS_add0_cert() adds cert internally to cms and it must not be freed up after the call as opposed to CMS_add1_cert() where cert must be freed up.

    +

    As the 0 implies CMS_add0_cert() adds cert internally to cms and it must not be freed up after the call as opposed to CMS_add1_cert() where cert must be freed up.

    The same certificate or CRL must not be added to the same cms structure more than once.

    @@ -59,7 +61,7 @@ STACK_OF(X509_CRL) *CMS_get1_crls(CMS_ContentInfo *cms);

    CMS_add0_cert(), CMS_add1_cert() and CMS_add0_crl() and CMS_add1_crl() return 1 for success and 0 for failure.

    -

    CMS_get1_certs() and CMS_get1_crls() return the STACK of certificates or CRLs or NULL if there are none or an error occurs. The only error which will occur in practice is if the cms type is invalid.

    +

    CMS_get1_certs() and CMS_get1_crls() return the STACK of certificates or CRLs or NULL if there are none or an error occurs. The only error which will occur in practice is if the cms type is invalid.

    SEE ALSO

    @@ -67,7 +69,7 @@ STACK_OF(X509_CRL) *CMS_get1_crls(CMS_ContentInfo *cms);

    COPYRIGHT

    -

    Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2008-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_crl.html new file mode 120000 index 00000000..9dbe674f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_crl.html @@ -0,0 +1 @@ +CMS_add0_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_recipient_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_recipient_key.html new file mode 120000 index 00000000..fe9bdb03 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add0_recipient_key.html @@ -0,0 +1 @@ +CMS_add1_recipient_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_ReceiptRequest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_ReceiptRequest.html new file mode 120000 index 00000000..bb32380f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_ReceiptRequest.html @@ -0,0 +1 @@ +CMS_get1_ReceiptRequest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_cert.html new file mode 120000 index 00000000..9dbe674f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_cert.html @@ -0,0 +1 @@ +CMS_add0_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_crl.html new file mode 120000 index 00000000..9dbe674f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_add1_crl.html @@ -0,0 +1 @@ +CMS_add0_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_content.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_content.html new file mode 120000 index 00000000..d015e646 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_content.html @@ -0,0 +1 @@ +CMS_get0_type.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_eContentType.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_eContentType.html new file mode 120000 index 00000000..d015e646 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_eContentType.html @@ -0,0 +1 @@ +CMS_get0_type.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_signers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_signers.html new file mode 120000 index 00000000..0f5e052a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get0_signers.html @@ -0,0 +1 @@ +CMS_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get1_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get1_certs.html new file mode 120000 index 00000000..9dbe674f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get1_certs.html @@ -0,0 +1 @@ +CMS_add0_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get1_crls.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get1_crls.html new file mode 120000 index 00000000..9dbe674f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_get1_crls.html @@ -0,0 +1 @@ +CMS_add0_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_set1_eContentType.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_set1_eContentType.html new file mode 120000 index 00000000..d015e646 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_set1_eContentType.html @@ -0,0 +1 @@ +CMS_get0_type.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_verify.html index 8f37373c..bdde36a0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_verify.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CMS_verify.html @@ -38,35 +38,33 @@ STACK_OF(X509) *CMS_get0_signers(CMS_ContentInfo *cms);

    DESCRIPTION

    -

    CMS_verify() verifies a CMS SignedData structure. cms is the CMS_ContentInfo structure to verify. certs is a set of certificates in which to search for the signing certificate(s). store is a trusted certificate store used for chain verification. indata is the detached content if the content is not present in cms. The content is written to out if it is not NULL.

    +

    CMS_verify() is very similar to PKCS7_verify(3). It verifies a CMS SignedData structure contained in a structure of type CMS_ContentInfo. cms points to the CMS_ContentInfo structure to verify. The optional certs parameter refers to a set of certificates in which to search for signing certificates. cms may contain extra untrusted CA certificates that may be used for chain building as well as CRLs that may be used for certificate validation. store may be NULL or point to the trusted certificate store to use for chain verification. indata refers to the signed data if the content is detached from cms. Otherwise indata should be NULL and the signed data must be in cms. The content is written to the BIO out unless it is NULL. flags is an optional set of flags, which can be used to modify the operation.

    -

    flags is an optional set of flags, which can be used to modify the verify operation.

    - -

    CMS_get0_signers() retrieves the signing certificate(s) from cms, it must be called after a successful CMS_verify() operation.

    +

    CMS_get0_signers() retrieves the signing certificate(s) from cms, it may only be called after a successful CMS_verify() operation.

    VERIFY PROCESS

    Normally the verify process proceeds as follows.

    -

    Initially some sanity checks are performed on cms. The type of cms must be SignedData. There must be at least one signature on the data and if the content is detached indata cannot be NULL.

    +

    Initially some sanity checks are performed on cms. The type of cms must be SignedData. There must be at least one signature on the data and if the content is detached indata cannot be NULL.

    -

    An attempt is made to locate all the signing certificate(s), first looking in the certs parameter (if it is not NULL) and then looking in any certificates contained in the cms structure itself. If any signing certificate cannot be located the operation fails.

    +

    An attempt is made to locate all the signing certificate(s), first looking in the certs parameter (if it is not NULL) and then looking in any certificates contained in the cms structure unless CMS_NOINTERN is set. If any signing certificate cannot be located the operation fails.

    -

    Each signing certificate is chain verified using the smimesign purpose and the supplied trusted certificate store. Any internal certificates in the message are used as untrusted CAs. If CRL checking is enabled in store any internal CRLs are used in addition to attempting to look them up in store. If any chain verify fails an error code is returned.

    +

    Each signing certificate is chain verified using the smimesign purpose and using the trusted certificate store store if supplied. Any internal certificates in the message, which may have been added using CMS_add1_cert(3), are used as untrusted CAs. If CRL checking is enabled in store and CMS_NOCRL is not set, any internal CRLs, which may have been added using CMS_add1_crl(3), are used in addition to attempting to look them up in store. If store is not NULL and any chain verify fails an error code is returned.

    -

    Finally the signed content is read (and written to out if it is not NULL) and the signature's checked.

    +

    Finally the signed content is read (and written to out unless it is NULL) and the signature is checked.

    -

    If all signature's verify correctly then the function is successful.

    +

    If all signatures verify correctly then the function is successful.

    -

    Any of the following flags (ored together) can be passed in the flags parameter to change the default verify behaviour.

    +

    Any of the following flags (ored together) can be passed in the flags parameter to change the default verify behaviour.

    -

    If CMS_NOINTERN is set the certificates in the message itself are not searched when locating the signing certificate(s). This means that all the signing certificates must be in the certs parameter.

    +

    If CMS_NOINTERN is set the certificates in the message itself are not searched when locating the signing certificate(s). This means that all the signing certificates must be in the certs parameter.

    -

    If CMS_NOCRL is set and CRL checking is enabled in store then any CRLs in the message itself are ignored.

    +

    If CMS_NOCRL is set and CRL checking is enabled in store then any CRLs in the message itself are ignored.

    If the CMS_TEXT flag is set MIME headers for type text/plain are deleted from the content. If the content is not of type text/plain then an error is returned.

    -

    If CMS_NO_SIGNER_CERT_VERIFY is set the signing certificates are not verified.

    +

    If CMS_NO_SIGNER_CERT_VERIFY is set the signing certificates are not chain verified.

    If CMS_NO_ATTR_VERIFY is set the signed attributes signature is not verified.

    @@ -74,17 +72,17 @@ STACK_OF(X509) *CMS_get0_signers(CMS_ContentInfo *cms);

    NOTES

    -

    One application of CMS_NOINTERN is to only accept messages signed by a small number of certificates. The acceptable certificates would be passed in the certs parameter. In this case if the signer is not one of the certificates supplied in certs then the verify will fail because the signer cannot be found.

    +

    One application of CMS_NOINTERN is to only accept messages signed by a small number of certificates. The acceptable certificates would be passed in the certs parameter. In this case if the signer certificate is not one of the certificates supplied in certs then the verify will fail because the signer cannot be found.

    -

    In some cases the standard techniques for looking up and validating certificates are not appropriate: for example an application may wish to lookup certificates in a database or perform customised verification. This can be achieved by setting and verifying the signers certificates manually using the signed data utility functions.

    +

    In some cases the standard techniques for looking up and validating certificates are not appropriate: for example an application may wish to lookup certificates in a database or perform customised verification. This can be achieved by setting and verifying the signer certificates manually using the signed data utility functions.

    -

    Care should be taken when modifying the default verify behaviour, for example setting CMS_NO_CONTENT_VERIFY will totally disable all content verification and any modified content will be considered valid. This combination is however useful if one merely wishes to write the content to out and its validity is not considered important.

    +

    Care should be taken when modifying the default verify behaviour, for example setting CMS_NO_CONTENT_VERIFY will totally disable all content verification and any modified content will be considered valid. This combination is however useful if one merely wishes to write the content to out and its validity is not considered important.

    -

    Chain verification should arguably be performed using the signing time rather than the current time. However since the signing time is supplied by the signer it cannot be trusted without additional evidence (such as a trusted timestamp).

    +

    Chain verification should arguably be performed using the signing time rather than the current time. However, since the signing time is supplied by the signer it cannot be trusted without additional evidence (such as a trusted timestamp).

    RETURN VALUES

    -

    CMS_verify() returns 1 for a successful verification and zero if an error occurred.

    +

    CMS_verify() returns 1 for a successful verification and 0 if an error occurred.

    CMS_get0_signers() returns all signers or NULL if an error occurred.

    @@ -92,17 +90,17 @@ STACK_OF(X509) *CMS_get0_signers(CMS_ContentInfo *cms);

    BUGS

    -

    The trusted certificate store is not searched for the signing certificate, this is primarily due to the inadequacies of the current X509_STORE functionality.

    +

    The trusted certificate store is not searched for the signing certificate. This is primarily due to the inadequacies of the current X509_STORE functionality.

    The lack of single pass processing means that the signed content must all be held in memory if it is not detached.

    SEE ALSO

    -

    ERR_get_error(3), CMS_sign(3)

    +

    PKCS7_verify(3), CMS_add1_cert(3), CMS_add1_crl(3), OSSL_ESS_check_signing_certs(3), ERR_get_error(3), CMS_sign(3)

    COPYRIGHT

    -

    Copyright 2008-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2008-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_finish.html new file mode 120000 index 00000000..f2b0e861 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_finish.html @@ -0,0 +1 @@ +CONF_modules_free.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_load.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_load.html new file mode 120000 index 00000000..ca135f03 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_load.html @@ -0,0 +1 @@ +CONF_modules_load_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_unload.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_unload.html new file mode 120000 index 00000000..f2b0e861 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CONF_modules_unload.html @@ -0,0 +1 @@ +CONF_modules_free.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRL_DIST_POINTS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRL_DIST_POINTS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRL_DIST_POINTS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRL_DIST_POINTS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRL_DIST_POINTS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRL_DIST_POINTS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_dup.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_dup.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_free.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_free.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_new.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_EX_new.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_lock_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_lock_free.html new file mode 120000 index 00000000..b247071c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_lock_free.html @@ -0,0 +1 @@ +CRYPTO_THREAD_run_once.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_lock_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_lock_new.html new file mode 120000 index 00000000..b247071c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_lock_new.html @@ -0,0 +1 @@ +CRYPTO_THREAD_run_once.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_read_lock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_read_lock.html new file mode 120000 index 00000000..b247071c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_read_lock.html @@ -0,0 +1 @@ +CRYPTO_THREAD_run_once.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_run_once.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_run_once.html index 8a519eaa..54bc5f88 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_run_once.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_run_once.html @@ -85,7 +85,7 @@ int CRYPTO_atomic_add(int *val, int amount, int *ret, CRYPTO_RWLOCK *lock);NOTES -

    On Windows platforms the CRYPTO_THREAD_* types and functions in the openssl/crypto.h header are dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore it is defined as an application developer's responsibility to include windows.h prior to crypto.h where use of CRYPTO_THREAD_* types and functions is required.

    +

    On Windows platforms the CRYPTO_THREAD_* types and functions in the openssl/crypto.h header are dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore, it is defined as an application developer's responsibility to include windows.h prior to crypto.h where use of CRYPTO_THREAD_* types and functions is required.

    EXAMPLES

    @@ -147,7 +147,7 @@ int serialized(void)

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_unlock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_unlock.html new file mode 120000 index 00000000..b247071c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_unlock.html @@ -0,0 +1 @@ +CRYPTO_THREAD_run_once.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_write_lock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_write_lock.html new file mode 120000 index 00000000..b247071c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_THREAD_write_lock.html @@ -0,0 +1 @@ +CRYPTO_THREAD_run_once.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_atomic_add.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_atomic_add.html new file mode 120000 index 00000000..b247071c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_atomic_add.html @@ -0,0 +1 @@ +CRYPTO_THREAD_run_once.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_clear_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_clear_free.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_clear_free.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_clear_realloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_clear_realloc.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_clear_realloc.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free_ex_data.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free_ex_data.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free_ex_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free_ex_index.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_free_ex_index.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_alloc_counts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_alloc_counts.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_alloc_counts.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_ex_data.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_ex_data.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_mem_functions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_mem_functions.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_get_mem_functions.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_malloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_malloc.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_malloc.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_ctrl.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_ctrl.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_debug_pop.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_debug_pop.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_debug_pop.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_debug_push.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_debug_push.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_debug_push.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks_cb.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks_cb.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks_fp.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_mem_leaks_fp.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_memcmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_memcmp.html index 31a0228a..cd9bd385 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_memcmp.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_memcmp.html @@ -36,15 +36,15 @@ int CRYPTO_memcmp(const void *a, const void *b, size_t len);

    RETURN VALUES

    -

    CRYPTO_memcmp() returns 0 if the memory regions are equal and non-zero otherwise.

    +

    CRYPTO_memcmp() returns 0 if the memory regions are equal and nonzero otherwise.

    NOTES

    -

    Unlike memcmp(2), this function cannot be used to order the two memory regions as the return value when they differ is undefined, other than being non-zero.

    +

    Unlike memcmp(2), this function cannot be used to order the two memory regions as the return value when they differ is undefined, other than being nonzero.

    COPYRIGHT

    -

    Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2019-2020 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.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_new_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_new_ex_data.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_new_ex_data.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_realloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_realloc.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_realloc.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_allocated.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_allocated.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_allocated.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_clear_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_clear_free.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_clear_free.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_free.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_free.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_done.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_done.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_done.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_init.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_init.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_initialized.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_initialized.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_malloc_initialized.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_used.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_used.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_used.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_zalloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_zalloc.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_secure_zalloc.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_ex_data.html new file mode 120000 index 00000000..6ee6c38a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_ex_data.html @@ -0,0 +1 @@ +CRYPTO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_mem_debug.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_mem_debug.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_mem_debug.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_mem_functions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_mem_functions.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_set_mem_functions.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_strdup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_strdup.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_strdup.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_strndup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_strndup.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_strndup.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_zalloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_zalloc.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CRYPTO_zalloc.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_free.html new file mode 120000 index 00000000..c31801ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_free.html @@ -0,0 +1 @@ +CTLOG_STORE_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_load_default_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_load_default_file.html new file mode 120000 index 00000000..c31801ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_load_default_file.html @@ -0,0 +1 @@ +CTLOG_STORE_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_load_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_load_file.html new file mode 120000 index 00000000..c31801ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_STORE_load_file.html @@ -0,0 +1 @@ +CTLOG_STORE_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_free.html new file mode 120000 index 00000000..a3575435 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_free.html @@ -0,0 +1 @@ +CTLOG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_log_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_log_id.html new file mode 120000 index 00000000..a3575435 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_log_id.html @@ -0,0 +1 @@ +CTLOG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_name.html new file mode 120000 index 00000000..a3575435 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_name.html @@ -0,0 +1 @@ +CTLOG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_public_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_public_key.html new file mode 120000 index 00000000..a3575435 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_get0_public_key.html @@ -0,0 +1 @@ +CTLOG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_new_from_base64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_new_from_base64.html new file mode 120000 index 00000000..a3575435 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CTLOG_new_from_base64.html @@ -0,0 +1 @@ +CTLOG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_free.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_free.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_cert.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_cert.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_issuer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_issuer.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_issuer.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_log_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_log_store.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get0_log_store.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get_time.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_get_time.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set1_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set1_cert.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set1_cert.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set1_issuer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set1_issuer.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set1_issuer.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set_shared_CTLOG_STORE.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set_time.html new file mode 120000 index 00000000..e3cb2fb3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/CT_POLICY_EVAL_CTX_set_time.html @@ -0,0 +1 @@ +CT_POLICY_EVAL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_ASN1_FUNCTIONS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_ASN1_FUNCTIONS.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_ASN1_FUNCTIONS.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_LHASH_OF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_LHASH_OF.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_LHASH_OF.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_PEM_rw.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_PEM_rw.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DECLARE_PEM_rw.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_SPECIAL_STACK_OF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_SPECIAL_STACK_OF.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_SPECIAL_STACK_OF.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_SPECIAL_STACK_OF_CONST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_SPECIAL_STACK_OF_CONST.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_SPECIAL_STACK_OF_CONST.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_STACK_OF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_STACK_OF.html index 9cc97517..f6841c60 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_STACK_OF.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_STACK_OF.html @@ -167,7 +167,7 @@ STACK_OF(TYPE) *sk_TYPE_new_reserve(sk_TYPE_compfunc compare, int n);sk_TYPE_pop(), sk_TYPE_shift(), sk_TYPE_delete() and sk_TYPE_delete_ptr() return a pointer to the deleted element or NULL on error.

    -

    sk_TYPE_insert(), sk_TYPE_push() and sk_TYPE_unshift() return the total number of elements in the stack and 0 if an error occurred.

    +

    sk_TYPE_insert(), sk_TYPE_push() and sk_TYPE_unshift() return the total number of elements in the stack and 0 if an error occurred. sk_TYPE_push() further returns -1 if sk is NULL.

    sk_TYPE_set() returns a pointer to the replacement element or NULL on error.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_STACK_OF_CONST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_STACK_OF_CONST.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DEFINE_STACK_OF_CONST.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cbc_cksum.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cbc_cksum.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cbc_cksum.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cfb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cfb64_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cfb64_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cfb_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cfb_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_cfb_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_crypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_crypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_crypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb2_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb2_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb2_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb3_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb3_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb3_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ecb_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_cbc_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_cbc_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_cbc_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_cfb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_cfb64_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_cfb64_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_ofb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_ofb64_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede2_ofb64_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_cbc_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_cbc_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_cbc_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_cfb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_cfb64_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_cfb64_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_ofb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_ofb64_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ede3_ofb64_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_fcrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_fcrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_fcrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_is_weak_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_is_weak_key.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_is_weak_key.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_key_sched.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_key_sched.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_key_sched.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ncbc_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ncbc_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ncbc_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ofb64_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ofb64_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ofb64_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ofb_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ofb_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_ofb_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_pcbc_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_pcbc_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_pcbc_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_quad_cksum.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_quad_cksum.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_quad_cksum.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_random_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_random_key.html index 086cbefc..18a65582 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_random_key.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_random_key.html @@ -119,7 +119,7 @@ char *DES_crypt(const char *buf, const char *salt);

    DES_set_key_checked() will check that the key passed is of odd parity and is not a weak or semi-weak key. If the parity is wrong, then -1 is returned. If the key is a weak key, then -2 is returned. If an error is returned, the key schedule is not generated.

    -

    DES_set_key() works like DES_set_key_checked() if the DES_check_key flag is non-zero, otherwise like DES_set_key_unchecked(). These functions are available for compatibility; it is recommended to use a function that does not depend on a global variable.

    +

    DES_set_key() works like DES_set_key_checked() if the DES_check_key flag is nonzero, otherwise like DES_set_key_unchecked(). These functions are available for compatibility; it is recommended to use a function that does not depend on a global variable.

    DES_set_odd_parity() sets the parity of the passed key to odd.

    @@ -127,13 +127,13 @@ char *DES_crypt(const char *buf, const char *salt);

    The following routines mostly operate on an input and output stream of DES_cblocks.

    -

    DES_ecb_encrypt() is the basic DES encryption routine that encrypts or decrypts a single 8-byte DES_cblock in electronic code book (ECB) mode. It always transforms the input data, pointed to by input, into the output data, pointed to by the output argument. If the encrypt argument is non-zero (DES_ENCRYPT), the input (cleartext) is encrypted in to the output (ciphertext) using the key_schedule specified by the schedule argument, previously set via DES_set_key. If encrypt is zero (DES_DECRYPT), the input (now ciphertext) is decrypted into the output (now cleartext). Input and output may overlap. DES_ecb_encrypt() does not return a value.

    +

    DES_ecb_encrypt() is the basic DES encryption routine that encrypts or decrypts a single 8-byte DES_cblock in electronic code book (ECB) mode. It always transforms the input data, pointed to by input, into the output data, pointed to by the output argument. If the encrypt argument is nonzero (DES_ENCRYPT), the input (cleartext) is encrypted in to the output (ciphertext) using the key_schedule specified by the schedule argument, previously set via DES_set_key. If encrypt is zero (DES_DECRYPT), the input (now ciphertext) is decrypted into the output (now cleartext). Input and output may overlap. DES_ecb_encrypt() does not return a value.

    DES_ecb3_encrypt() encrypts/decrypts the input block by using three-key Triple-DES encryption in ECB mode. This involves encrypting the input with ks1, decrypting with the key schedule ks2, and then encrypting with ks3. This routine greatly reduces the chances of brute force breaking of DES and has the advantage of if ks1, ks2 and ks3 are the same, it is equivalent to just encryption using ECB mode and ks1 as the key.

    The macro DES_ecb2_encrypt() is provided to perform two-key Triple-DES encryption by using ks1 for the final encryption.

    -

    DES_ncbc_encrypt() encrypts/decrypts using the cipher-block-chaining (CBC) mode of DES. If the encrypt argument is non-zero, the routine cipher-block-chain encrypts the cleartext data pointed to by the input argument into the ciphertext pointed to by the output argument, using the key schedule provided by the schedule argument, and initialization vector provided by the ivec argument. If the length argument is not an integral multiple of eight bytes, the last block is copied to a temporary area and zero filled. The output is always an integral multiple of eight bytes.

    +

    DES_ncbc_encrypt() encrypts/decrypts using the cipher-block-chaining (CBC) mode of DES. If the encrypt argument is nonzero, the routine cipher-block-chain encrypts the cleartext data pointed to by the input argument into the ciphertext pointed to by the output argument, using the key schedule provided by the schedule argument, and initialization vector provided by the ivec argument. If the length argument is not an integral multiple of eight bytes, the last block is copied to a temporary area and zero filled. The output is always an integral multiple of eight bytes.

    DES_xcbc_encrypt() is RSA's DESX mode of DES. It uses inw and outw to 'whiten' the encryption. inw and outw are secret (unlike the iv) and are as such, part of the key. So the key is sort of 24 bytes. This is much better than CBC DES.

    @@ -205,7 +205,7 @@ char *DES_crypt(const char *buf, const char *salt);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key_checked.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key_checked.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key_checked.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key_unchecked.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key_unchecked.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_key_unchecked.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_odd_parity.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_odd_parity.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_set_odd_parity.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_string_to_2keys.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_string_to_2keys.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_string_to_2keys.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_string_to_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_string_to_key.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_string_to_key.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_xcbc_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_xcbc_encrypt.html new file mode 120000 index 00000000..b408aa16 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DES_xcbc_encrypt.html @@ -0,0 +1 @@ +DES_random_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_OpenSSL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_OpenSSL.html new file mode 120000 index 00000000..bb7e1511 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_OpenSSL.html @@ -0,0 +1 @@ +DH_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_bits.html new file mode 120000 index 00000000..c8509104 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_bits.html @@ -0,0 +1 @@ +DH_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check.html new file mode 120000 index 00000000..f542f1a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check.html @@ -0,0 +1 @@ +DH_generate_parameters.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_ex.html new file mode 120000 index 00000000..f542f1a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_ex.html @@ -0,0 +1 @@ +DH_generate_parameters.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_params.html new file mode 120000 index 00000000..f542f1a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_params.html @@ -0,0 +1 @@ +DH_generate_parameters.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_params_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_params_ex.html new file mode 120000 index 00000000..f542f1a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_params_ex.html @@ -0,0 +1 @@ +DH_generate_parameters.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_pub_key_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_pub_key_ex.html new file mode 120000 index 00000000..f542f1a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_check_pub_key_ex.html @@ -0,0 +1 @@ +DH_generate_parameters.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_clear_flags.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_clear_flags.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_compute_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_compute_key.html new file mode 120000 index 00000000..66846d95 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_compute_key.html @@ -0,0 +1 @@ +DH_generate_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_compute_key_padded.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_compute_key_padded.html new file mode 120000 index 00000000..66846d95 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_compute_key_padded.html @@ -0,0 +1 @@ +DH_generate_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_free.html new file mode 120000 index 00000000..8f0af9cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_free.html @@ -0,0 +1 @@ +DH_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_generate_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_generate_key.html index 07b78000..74b9b1f4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_generate_key.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_generate_key.html @@ -17,12 +17,13 @@
  • DESCRIPTION
  • RETURN VALUES
  • SEE ALSO
  • +
  • HISTORY
  • COPYRIGHT
  • NAME

    -

    DH_generate_key, DH_compute_key - perform Diffie-Hellman key exchange

    +

    DH_generate_key, DH_compute_key, DH_compute_key_padded - perform Diffie-Hellman key exchange

    SYNOPSIS

    @@ -30,15 +31,19 @@ int DH_generate_key(DH *dh); -int DH_compute_key(unsigned char *key, BIGNUM *pub_key, DH *dh); +int DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh); + +int DH_compute_key_padded(unsigned char *key, const BIGNUM *pub_key, DH *dh);

    DESCRIPTION

    -

    DH_generate_key() performs the first step of a Diffie-Hellman key exchange by generating private and public DH values. By calling DH_compute_key(), these are combined with the other party's public value to compute the shared key.

    +

    DH_generate_key() performs the first step of a Diffie-Hellman key exchange by generating private and public DH values. By calling DH_compute_key() or DH_compute_key_padded(), these are combined with the other party's public value to compute the shared key.

    DH_generate_key() expects dh to contain the shared parameters dh->p and dh->g. It generates a random private DH value unless dh->priv_key is already set, and computes the corresponding public value dh->pub_key, which can then be published.

    -

    DH_compute_key() computes the shared secret from the private DH value in dh and the other party's public value in pub_key and stores it in key. key must point to DH_size(dh) bytes of memory.

    +

    DH_compute_key() computes the shared secret from the private DH value in dh and the other party's public value in pub_key and stores it in key. key must point to DH_size(dh) bytes of memory. The padding style is RFC 5246 (8.1.2) that strips leading zero bytes. It is not constant time due to the leading zero bytes being stripped. The return value should be considered public.

    + +

    DH_compute_key_padded() is similar but stores a fixed number of bytes. The padding style is NIST SP 800-56A (C.1) that retains leading zero bytes. It is constant time due to the leading zero bytes being retained. The return value should be considered public.

    RETURN VALUES

    @@ -46,15 +51,21 @@ int DH_compute_key(unsigned char *key, BIGNUM *pub_key, DH *dh);

    DH_compute_key() returns the size of the shared secret on success, -1 on error.

    +

    DH_compute_key_padded() returns DH_size(dh) on success, -1 on error.

    +

    The error codes can be obtained by ERR_get_error(3).

    SEE ALSO

    DH_new(3), ERR_get_error(3), RAND_bytes(3), DH_size(3)

    +

    HISTORY

    + +

    DH_compute_key_padded() was added in OpenSSL 1.0.2.

    +

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_generate_parameters_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_generate_parameters_ex.html new file mode 120000 index 00000000..f542f1a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_generate_parameters_ex.html @@ -0,0 +1 @@ +DH_generate_parameters.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_engine.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_engine.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_g.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_g.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_g.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_key.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_key.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_p.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_p.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_p.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_pqg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_pqg.html index abeb59f0..223c06d9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_pqg.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_pqg.html @@ -66,7 +66,7 @@ int DH_set_length(DH *dh, long length);

    DH_get0_engine() returns a handle to the ENGINE that has been set for this DH object, or NULL if no such ENGINE has been set.

    -

    The DH_get_length() and DH_set_length() functions get and set the optional length parameter associated with this DH object. If the length is non-zero then it is used, otherwise it is ignored. The length parameter indicates the length of the secret exponent (private key) in bits.

    +

    The DH_get_length() and DH_set_length() functions get and set the optional length parameter associated with this DH object. If the length is nonzero then it is used, otherwise it is ignored. The length parameter indicates the length of the secret exponent (private key) in bits.

    NOTES

    @@ -94,7 +94,7 @@ int DH_set_length(DH *dh, long length);

    COPYRIGHT

    -

    Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_priv_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_priv_key.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_priv_key.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_pub_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_pub_key.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_pub_key.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_q.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_q.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get0_q.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_2048_224.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_2048_224.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_2048_224.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_2048_256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_2048_256.html new file mode 120000 index 00000000..cda713b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_2048_256.html @@ -0,0 +1 @@ +DH_get_1024_160.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_default_method.html new file mode 120000 index 00000000..bb7e1511 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_default_method.html @@ -0,0 +1 @@ +DH_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_length.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_length.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_nid.html new file mode 120000 index 00000000..a39b79af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_get_nid.html @@ -0,0 +1 @@ +DH_new_by_nid.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_dup.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_dup.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_free.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_free.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get0_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get0_app_data.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get0_app_data.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get0_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get0_name.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get0_name.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_bn_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_bn_mod_exp.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_bn_mod_exp.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_compute_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_compute_key.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_compute_key.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_finish.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_finish.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_flags.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_flags.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_generate_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_generate_key.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_generate_key.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_generate_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_generate_params.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_generate_params.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_init.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_get_init.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set0_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set0_app_data.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set0_app_data.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set1_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set1_name.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set1_name.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_bn_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_bn_mod_exp.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_bn_mod_exp.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_compute_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_compute_key.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_compute_key.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_finish.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_finish.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_flags.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_flags.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_generate_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_generate_key.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_generate_key.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_generate_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_generate_params.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_generate_params.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_init.html new file mode 120000 index 00000000..8f1677d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_meth_set_init.html @@ -0,0 +1 @@ +DH_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_new_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_new_method.html new file mode 120000 index 00000000..bb7e1511 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_new_method.html @@ -0,0 +1 @@ +DH_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_security_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_security_bits.html new file mode 120000 index 00000000..c8509104 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_security_bits.html @@ -0,0 +1 @@ +DH_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set0_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set0_key.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set0_key.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set0_pqg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set0_pqg.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set0_pqg.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_default_method.html new file mode 120000 index 00000000..bb7e1511 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_default_method.html @@ -0,0 +1 @@ +DH_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_flags.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_flags.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_length.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_length.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_method.html index 252a6480..da4e885b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_method.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_set_method.html @@ -48,7 +48,7 @@ const DH_METHOD *DH_OpenSSL(void);

    DH_get_default_method() returns a pointer to the current default DH_METHOD. However, the meaningfulness of this result is dependent on whether the ENGINE API is being used, so this function is no longer recommended.

    -

    DH_set_method() selects meth to perform all operations using the key dh. This will replace the DH_METHOD used by the DH key and if the previous method was supplied by an ENGINE, the handle to that ENGINE will be released during the change. It is possible to have DH keys that only work with certain DH_METHOD implementations (eg. from an ENGINE module that supports embedded hardware-protected keys), and in such cases attempting to change the DH_METHOD for the key can have unexpected results.

    +

    DH_set_method() selects meth to perform all operations using the key dh. This will replace the DH_METHOD used by the DH key and if the previous method was supplied by an ENGINE, the handle to that ENGINE will be released during the change. It is possible to have DH keys that only work with certain DH_METHOD implementations (e.g. from an ENGINE module that supports embedded hardware-protected keys), and in such cases attempting to change the DH_METHOD for the key can have unexpected results.

    DH_new_method() allocates and initializes a DH structure so that engine will be used for the DH operations. If engine is NULL, the default ENGINE for DH operations is used, and if no default ENGINE is set, the DH_METHOD controlled by DH_set_default_method() is used.

    @@ -60,7 +60,7 @@ const DH_METHOD *DH_OpenSSL(void);

    DH_set_default_method() returns no value.

    -

    DH_set_method() returns non-zero if the provided meth was successfully set as the method for dh (including unloading the ENGINE handle if the previous method was supplied by an ENGINE).

    +

    DH_set_method() returns nonzero if the provided meth was successfully set as the method for dh (including unloading the ENGINE handle if the previous method was supplied by an ENGINE).

    DH_new_method() returns NULL and sets an error code that can be obtained by ERR_get_error(3) if the allocation fails. Otherwise it returns a pointer to the newly allocated structure.

    @@ -70,7 +70,7 @@ const DH_METHOD *DH_OpenSSL(void);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_test_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_test_flags.html new file mode 120000 index 00000000..d17bff2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DH_test_flags.html @@ -0,0 +1 @@ +DH_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DHparams_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DHparams_print.html new file mode 120000 index 00000000..a46aa617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DHparams_print.html @@ -0,0 +1 @@ +RSA_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DHparams_print_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DHparams_print_fp.html new file mode 120000 index 00000000..a46aa617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DHparams_print_fp.html @@ -0,0 +1 @@ +RSA_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIRECTORYSTRING_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIRECTORYSTRING_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIRECTORYSTRING_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIRECTORYSTRING_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIRECTORYSTRING_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIRECTORYSTRING_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DISPLAYTEXT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DISPLAYTEXT_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DISPLAYTEXT_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DISPLAYTEXT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DISPLAYTEXT_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DISPLAYTEXT_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_NAME_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_NAME_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_NAME_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_NAME_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_NAME_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_NAME_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DIST_POINT_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_OpenSSL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_OpenSSL.html new file mode 120000 index 00000000..bb836656 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_OpenSSL.html @@ -0,0 +1 @@ +DSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_free.html new file mode 120000 index 00000000..51ad1beb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_free.html @@ -0,0 +1 @@ +DSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_get0.html new file mode 120000 index 00000000..51ad1beb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_get0.html @@ -0,0 +1 @@ +DSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_set0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_set0.html new file mode 120000 index 00000000..51ad1beb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_SIG_set0.html @@ -0,0 +1 @@ +DSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_bits.html new file mode 120000 index 00000000..d9ae0881 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_bits.html @@ -0,0 +1 @@ +DSA_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_clear_flags.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_clear_flags.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_do_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_do_verify.html new file mode 120000 index 00000000..9414ed57 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_do_verify.html @@ -0,0 +1 @@ +DSA_do_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_free.html new file mode 120000 index 00000000..477b1010 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_free.html @@ -0,0 +1 @@ +DSA_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_generate_parameters_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_generate_parameters_ex.html new file mode 120000 index 00000000..99ccfbd2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_generate_parameters_ex.html @@ -0,0 +1 @@ +DSA_generate_parameters.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_engine.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_engine.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_g.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_g.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_g.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_key.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_key.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_p.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_p.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_p.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_priv_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_priv_key.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_priv_key.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_pub_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_pub_key.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_pub_key.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_q.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_q.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get0_q.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_default_method.html new file mode 120000 index 00000000..bb836656 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_default_method.html @@ -0,0 +1 @@ +DSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_dup.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_dup.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_free.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_free.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get0_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get0_app_data.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get0_app_data.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get0_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get0_name.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get0_name.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_bn_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_bn_mod_exp.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_bn_mod_exp.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_finish.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_finish.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_flags.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_flags.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_init.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_init.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_keygen.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_keygen.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_mod_exp.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_mod_exp.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_paramgen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_paramgen.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_paramgen.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_sign.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_sign.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_sign_setup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_sign_setup.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_sign_setup.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_verify.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_get_verify.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set0_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set0_app_data.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set0_app_data.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set1_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set1_name.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set1_name.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_bn_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_bn_mod_exp.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_bn_mod_exp.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_finish.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_finish.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_flags.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_flags.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_init.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_init.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_keygen.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_keygen.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_mod_exp.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_mod_exp.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_paramgen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_paramgen.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_paramgen.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_sign.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_sign.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_sign_setup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_sign_setup.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_sign_setup.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_verify.html new file mode 120000 index 00000000..38ce6182 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_meth_set_verify.html @@ -0,0 +1 @@ +DSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_new_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_new_method.html new file mode 120000 index 00000000..bb836656 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_new_method.html @@ -0,0 +1 @@ +DSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_print.html new file mode 120000 index 00000000..a46aa617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_print.html @@ -0,0 +1 @@ +RSA_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_print_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_print_fp.html new file mode 120000 index 00000000..a46aa617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_print_fp.html @@ -0,0 +1 @@ +RSA_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_security_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_security_bits.html new file mode 120000 index 00000000..d9ae0881 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_security_bits.html @@ -0,0 +1 @@ +DSA_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set0_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set0_key.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set0_key.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set0_pqg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set0_pqg.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set0_pqg.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_default_method.html new file mode 120000 index 00000000..bb836656 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_default_method.html @@ -0,0 +1 @@ +DSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_flags.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_flags.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_method.html index 35e36fd6..e32025a0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_method.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_set_method.html @@ -48,7 +48,7 @@ DSA_METHOD *DSA_OpenSSL(void);

    DSA_get_default_method() returns a pointer to the current default DSA_METHOD. However, the meaningfulness of this result is dependent on whether the ENGINE API is being used, so this function is no longer recommended.

    -

    DSA_set_method() selects meth to perform all operations using the key rsa. This will replace the DSA_METHOD used by the DSA key and if the previous method was supplied by an ENGINE, the handle to that ENGINE will be released during the change. It is possible to have DSA keys that only work with certain DSA_METHOD implementations (eg. from an ENGINE module that supports embedded hardware-protected keys), and in such cases attempting to change the DSA_METHOD for the key can have unexpected results. See DSA_meth_new for information on constructing custom DSA_METHOD objects;

    +

    DSA_set_method() selects meth to perform all operations using the key rsa. This will replace the DSA_METHOD used by the DSA key and if the previous method was supplied by an ENGINE, the handle to that ENGINE will be released during the change. It is possible to have DSA keys that only work with certain DSA_METHOD implementations (e.g. from an ENGINE module that supports embedded hardware-protected keys), and in such cases attempting to change the DSA_METHOD for the key can have unexpected results. See DSA_meth_new for information on constructing custom DSA_METHOD objects;

    DSA_new_method() allocates and initializes a DSA structure so that engine will be used for the DSA operations. If engine is NULL, the default engine for DSA operations is used, and if no default ENGINE is set, the DSA_METHOD controlled by DSA_set_default_method() is used.

    @@ -58,7 +58,7 @@ DSA_METHOD *DSA_OpenSSL(void);

    DSA_set_default_method() returns no value.

    -

    DSA_set_method() returns non-zero if the provided meth was successfully set as the method for dsa (including unloading the ENGINE handle if the previous method was supplied by an ENGINE).

    +

    DSA_set_method() returns nonzero if the provided meth was successfully set as the method for dsa (including unloading the ENGINE handle if the previous method was supplied by an ENGINE).

    DSA_new_method() returns NULL and sets an error code that can be obtained by ERR_get_error(3) if the allocation fails. Otherwise it returns a pointer to the newly allocated structure.

    @@ -68,7 +68,7 @@ DSA_METHOD *DSA_OpenSSL(void);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_sign_setup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_sign_setup.html new file mode 120000 index 00000000..e259321f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_sign_setup.html @@ -0,0 +1 @@ +DSA_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_test_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_test_flags.html new file mode 120000 index 00000000..0c70337f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_test_flags.html @@ -0,0 +1 @@ +DSA_get0_pqg.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_verify.html new file mode 120000 index 00000000..e259321f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSA_verify.html @@ -0,0 +1 @@ +DSA_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_print.html new file mode 120000 index 00000000..a46aa617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_print.html @@ -0,0 +1 @@ +RSA_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_print_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_print_fp.html new file mode 120000 index 00000000..a46aa617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DSAparams_print_fp.html @@ -0,0 +1 @@ +RSA_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_timer_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_timer_cb.html new file mode 120000 index 00000000..c0e29705 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLS_timer_cb.html @@ -0,0 +1 @@ +DTLS_set_timer_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_2_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_listen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_listen.html index 616c36f9..1e2da4fb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_listen.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_listen.html @@ -41,7 +41,7 @@ int DTLSv1_listen(SSL *ssl, BIO_ADDR *peer);

    Some transport protocols (such as UDP) can be susceptible to amplification attacks. Unlike TCP there is no initial connection setup in UDP that validates that the client can actually receive messages on its advertised source address. An attacker could forge its source IP address and then send handshake initiation messages to the server. The server would then send its response to the forged source IP. If the response messages are larger than the original message then the amplification attack has succeeded.

    -

    If DTLS is used over UDP (or any datagram based protocol that does not validate the source IP) then it is susceptible to this type of attack. TLSv1.3 is designed to operate over a stream-based transport protocol (such as TCP). If TCP is being used then there is no need to use SSL_stateless(). However some stream-based transport protocols (e.g. QUIC) may not validate the source address. In this case a TLSv1.3 application would be susceptible to this attack.

    +

    If DTLS is used over UDP (or any datagram based protocol that does not validate the source IP) then it is susceptible to this type of attack. TLSv1.3 is designed to operate over a stream-based transport protocol (such as TCP). If TCP is being used then there is no need to use SSL_stateless(). However, some stream-based transport protocols (e.g. QUIC) may not validate the source address. In this case a TLSv1.3 application would be susceptible to this attack.

    As a countermeasure to this issue TLSv1.3 and DTLS include a stateless cookie mechanism. The idea is that when a client attempts to connect to a server it sends a ClientHello message. The server responds with a HelloRetryRequest (in TLSv1.3) or a HelloVerifyRequest (in DTLS) which contains a unique cookie. The client then resends the ClientHello, but this time includes the cookie in the message thus proving that the client is capable of receiving messages sent to that address. All of this can be done by the server without allocating any state, and thus without consuming expensive resources.

    @@ -65,7 +65,7 @@ int DTLSv1_listen(SSL *ssl, BIO_ADDR *peer);

    For DTLSv1_listen() a return value of >= 1 indicates success. The ssl object will be set up ready to continue the handshake. the peer value will also be filled in.

    -

    A return value of 0 indicates a non-fatal error. This could (for example) be because of non-blocking IO, or some invalid message having been received from a peer. Errors may be placed on the OpenSSL error queue with further information if appropriate. Typically user code is expected to retry the call to DTLSv1_listen() in the event of a non-fatal error.

    +

    A return value of 0 indicates a non-fatal error. This could (for example) be because of nonblocking IO, or some invalid message having been received from a peer. Errors may be placed on the OpenSSL error queue with further information if appropriate. Typically user code is expected to retry the call to DTLSv1_listen() in the event of a non-fatal error.

    A return value of <0 indicates a fatal error. This could (for example) be because of a failure to allocate sufficient memory for the operation.

    @@ -83,7 +83,7 @@ int DTLSv1_listen(SSL *ssl, BIO_ADDR *peer);

    COPYRIGHT

    -

    Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/DTLSv1_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDH_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_free.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_free.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0_r.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0_r.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0_r.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0_s.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0_s.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_get0_s.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_new.html index 67ed3ab4..a3b7cf08 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_new.html @@ -24,7 +24,7 @@

    NAME

    -

    ECDSA_SIG_get0, ECDSA_SIG_get0_r, ECDSA_SIG_get0_s, ECDSA_SIG_set0, ECDSA_SIG_new, ECDSA_SIG_free, ECDSA_size, ECDSA_sign, ECDSA_do_sign, ECDSA_verify, ECDSA_do_verify, ECDSA_sign_setup, ECDSA_sign_ex, ECDSA_do_sign_ex - low level elliptic curve digital signature algorithm (ECDSA) functions

    +

    ECDSA_SIG_get0, ECDSA_SIG_get0_r, ECDSA_SIG_get0_s, ECDSA_SIG_set0, ECDSA_SIG_new, ECDSA_SIG_free, ECDSA_size, ECDSA_sign, ECDSA_do_sign, ECDSA_verify, ECDSA_do_verify, ECDSA_sign_setup, ECDSA_sign_ex, ECDSA_do_sign_ex - low-level elliptic curve digital signature algorithm (ECDSA) functions

    SYNOPSIS

    @@ -58,7 +58,7 @@ int ECDSA_sign_ex(int type, const unsigned char *dgst, int dgstlen,

    DESCRIPTION

    -

    Note: these functions provide a low level interface to ECDSA. Most applications should use the higher level EVP interface such as EVP_DigestSignInit(3) or EVP_DigestVerifyInit(3) instead.

    +

    Note: these functions provide a low-level interface to ECDSA. Most applications should use the higher level EVP interface such as EVP_DigestSignInit(3) or EVP_DigestVerifyInit(3) instead.

    ECDSA_SIG is an opaque structure consisting of two BIGNUMs for the r and s value of an ECDSA signature (see X9.62 or FIPS 186-2).

    @@ -168,7 +168,7 @@ else

    COPYRIGHT

    -

    Copyright 2004-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2004-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_set0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_set0.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_SIG_set0.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_sign.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_sign.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_sign_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_sign_ex.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_sign_ex.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_verify.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_do_verify.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign_ex.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign_ex.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign_setup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign_setup.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_sign_setup.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_size.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_size.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_verify.html new file mode 120000 index 00000000..f5ea88c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECDSA_verify.html @@ -0,0 +1 @@ +ECDSA_SIG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPARAMETERS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPARAMETERS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPARAMETERS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPARAMETERS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPARAMETERS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPARAMETERS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKPARAMETERS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKPARAMETERS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKPARAMETERS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKPARAMETERS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKPARAMETERS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKPARAMETERS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKParameters_print_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKParameters_print_fp.html new file mode 120000 index 00000000..4dae723d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ECPKParameters_print_fp.html @@ -0,0 +1 @@ +ECPKParameters_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GF2m_simple_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GF2m_simple_method.html new file mode 120000 index 00000000..71f7f5e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GF2m_simple_method.html @@ -0,0 +1 @@ +EC_GFp_simple_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_mont_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_mont_method.html new file mode 120000 index 00000000..71f7f5e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_mont_method.html @@ -0,0 +1 @@ +EC_GFp_simple_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nist_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nist_method.html new file mode 120000 index 00000000..71f7f5e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nist_method.html @@ -0,0 +1 @@ +EC_GFp_simple_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp224_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp224_method.html new file mode 120000 index 00000000..71f7f5e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp224_method.html @@ -0,0 +1 @@ +EC_GFp_simple_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp256_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp256_method.html new file mode 120000 index 00000000..71f7f5e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp256_method.html @@ -0,0 +1 @@ +EC_GFp_simple_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp521_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp521_method.html new file mode 120000 index 00000000..71f7f5e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GFp_nistp521_method.html @@ -0,0 +1 @@ +EC_GFp_simple_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_check.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_check.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_check_discriminant.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_check_discriminant.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_check_discriminant.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_clear_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_clear_free.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_clear_free.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_cmp.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_cmp.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_dup.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_dup.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_free.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_free.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_cofactor.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_cofactor.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_cofactor.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_generator.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_generator.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_generator.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_order.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_order.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_order.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_seed.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_seed.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get0_seed.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_asn1_flag.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_asn1_flag.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_asn1_flag.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_basis_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_basis_type.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_basis_type.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_cofactor.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_cofactor.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_cofactor.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_GF2m.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_GF2m.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_GF2m.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_GFp.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_GFp.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_name.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_curve_name.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_degree.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_degree.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_degree.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_ecparameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_ecparameters.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_ecparameters.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_ecpkparameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_ecpkparameters.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_ecpkparameters.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_order.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_order.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_order.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_pentanomial_basis.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_pentanomial_basis.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_pentanomial_basis.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_point_conversion_form.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_point_conversion_form.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_point_conversion_form.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_seed_len.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_seed_len.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_seed_len.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_trinomial_basis.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_trinomial_basis.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_get_trinomial_basis.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_have_precompute_mult.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_have_precompute_mult.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_have_precompute_mult.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_method_of.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_method_of.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_method_of.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new.html index ab1f5d05..505ef73f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new.html @@ -72,7 +72,7 @@ size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);

    A new curve can be constructed by calling EC_GROUP_new(), using the implementation provided by meth (see EC_GFp_simple_method(3)). It is then necessary to call EC_GROUP_set_curve() to set the curve parameters. EC_GROUP_new_from_ecparameters() will create a group from the specified params and EC_GROUP_new_from_ecpkparameters() will create a group from the specific PK params.

    -

    EC_GROUP_set_curve() sets the curve parameters p, a and b. For a curve over Fp p is the prime for the field. For a curve over F2^m p represents the irreducible polynomial - each bit represents a term in the polynomial. Therefore there will either be three or five bits set dependent on whether the polynomial is a trinomial or a pentanomial. In either case, a and b represents the coefficients a and b from the relevant equation introduced above.

    +

    EC_GROUP_set_curve() sets the curve parameters p, a and b. For a curve over Fp p is the prime for the field. For a curve over F2^m p represents the irreducible polynomial - each bit represents a term in the polynomial. Therefore, there will either be three or five bits set dependent on whether the polynomial is a trinomial or a pentanomial. In either case, a and b represents the coefficients a and b from the relevant equation introduced above.

    EC_group_get_curve() obtains the previously set curve parameters.

    @@ -111,7 +111,7 @@ size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);

    COPYRIGHT

    -

    Copyright 2013-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2013-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_by_curve_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_by_curve_name.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_by_curve_name.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_curve_GF2m.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_curve_GF2m.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_curve_GF2m.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_curve_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_curve_GFp.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_curve_GFp.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_from_ecparameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_from_ecparameters.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_from_ecparameters.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_from_ecpkparameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_from_ecpkparameters.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_new_from_ecpkparameters.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_order_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_order_bits.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_order_bits.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_precompute_mult.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_precompute_mult.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_precompute_mult.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_asn1_flag.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_asn1_flag.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_asn1_flag.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_GF2m.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_GF2m.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_GF2m.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_GFp.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_GFp.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_name.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_curve_name.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_generator.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_generator.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_generator.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_point_conversion_form.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_point_conversion_form.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_point_conversion_form.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_seed.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_seed.html new file mode 120000 index 00000000..698ce05b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_GROUP_set_seed.html @@ -0,0 +1 @@ +EC_GROUP_copy.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_check_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_check_key.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_check_key.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_clear_flags.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_clear_flags.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_copy.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_copy.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_decoded_from_explicit_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_decoded_from_explicit_params.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_decoded_from_explicit_params.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_dup.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_dup.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_free.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_free.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_generate_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_generate_key.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_generate_key.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_engine.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_engine.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_group.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_group.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_group.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_private_key.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_private_key.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_public_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_public_key.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get0_public_key.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_conv_form.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_conv_form.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_conv_form.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_flags.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_flags.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_method.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_get_method.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_key2buf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_key2buf.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_key2buf.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_new.html index 1919e81e..67e14347 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_new.html @@ -22,7 +22,7 @@

    NAME

    -

    EC_KEY_get_method, EC_KEY_set_method, EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_flags, EC_KEY_clear_flags, EC_KEY_new_by_curve_name, EC_KEY_free, EC_KEY_copy, EC_KEY_dup, EC_KEY_up_ref, EC_KEY_get0_engine, EC_KEY_get0_group, EC_KEY_set_group, EC_KEY_get0_private_key, EC_KEY_set_private_key, EC_KEY_get0_public_key, EC_KEY_set_public_key, EC_KEY_get_conv_form, EC_KEY_set_conv_form, EC_KEY_set_asn1_flag, EC_KEY_precompute_mult, EC_KEY_generate_key, EC_KEY_check_key, EC_KEY_set_public_key_affine_coordinates, EC_KEY_oct2key, EC_KEY_key2buf, EC_KEY_oct2priv, EC_KEY_priv2oct, EC_KEY_priv2buf - Functions for creating, destroying and manipulating EC_KEY objects

    +

    EC_KEY_get_method, EC_KEY_set_method, EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_flags, EC_KEY_clear_flags, EC_KEY_new_by_curve_name, EC_KEY_free, EC_KEY_copy, EC_KEY_dup, EC_KEY_up_ref, EC_KEY_get0_engine, EC_KEY_get0_group, EC_KEY_set_group, EC_KEY_get0_private_key, EC_KEY_set_private_key, EC_KEY_get0_public_key, EC_KEY_set_public_key, EC_KEY_get_conv_form, EC_KEY_set_conv_form, EC_KEY_set_asn1_flag, EC_KEY_decoded_from_explicit_params, EC_KEY_precompute_mult, EC_KEY_generate_key, EC_KEY_check_key, EC_KEY_set_public_key_affine_coordinates, EC_KEY_oct2key, EC_KEY_key2buf, EC_KEY_oct2priv, EC_KEY_priv2oct, EC_KEY_priv2buf - Functions for creating, destroying and manipulating EC_KEY objects

    SYNOPSIS

    @@ -41,12 +41,13 @@ ENGINE *EC_KEY_get0_engine(const EC_KEY *eckey); const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key); int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group); const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); -int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv); +int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key); const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub); point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key); void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform); void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); +int EC_KEY_decoded_from_explicit_params(const EC_KEY *key); int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx); int EC_KEY_generate_key(EC_KEY *key); int EC_KEY_check_key(const EC_KEY *key); @@ -85,7 +86,7 @@ size_t EC_KEY_priv2buf(const EC_KEY *eckey, unsigned char **pbuf);

    EC_KEY_set_public_key_affine_coordinates() sets the public key for key based on its affine co-ordinates; i.e., it constructs an EC_POINT object based on the supplied x and y values and sets the public key to be this EC_POINT. It also performs certain sanity checks on the key to confirm that it is valid.

    -

    The functions EC_KEY_get0_group(), EC_KEY_set_group(), EC_KEY_get0_private_key(), EC_KEY_set_private_key(), EC_KEY_get0_public_key(), and EC_KEY_set_public_key() get and set the EC_GROUP object, the private key, and the EC_POINT public key for the key respectively.

    +

    The functions EC_KEY_get0_group(), EC_KEY_set_group(), EC_KEY_get0_private_key(), EC_KEY_set_private_key(), EC_KEY_get0_public_key(), and EC_KEY_set_public_key() get and set the EC_GROUP object, the private key, and the EC_POINT public key for the key respectively. The function EC_KEY_set_private_key() accepts NULL as the priv_key argument to securely clear the private key component from the EC_KEY.

    The functions EC_KEY_get_conv_form() and EC_KEY_set_conv_form() get and set the point_conversion_form for the key. For a description of point_conversion_forms please see EC_POINT_new(3).

    @@ -93,9 +94,11 @@ size_t EC_KEY_priv2buf(const EC_KEY *eckey, unsigned char **pbuf);

    EC_KEY_set_asn1_flag() sets the asn1_flag on the underlying EC_GROUP object (if set). Refer to EC_GROUP_copy(3) for further information on the asn1_flag.

    +

    EC_KEY_decoded_from_explicit_params() returns 1 if the group of the key was decoded from data with explicitly encoded group parameters, -1 if the key is NULL or the group parameters are missing, and 0 otherwise.

    +

    EC_KEY_precompute_mult() stores multiples of the underlying EC_GROUP generator for faster point multiplication. See also EC_POINT_add(3).

    -

    EC_KEY_oct2key() and EC_KEY_key2buf() are identical to the functions EC_POINT_oct2point() and EC_KEY_point2buf() except they use the public key EC_POINT in eckey.

    +

    EC_KEY_oct2key() and EC_KEY_key2buf() are identical to the functions EC_POINT_oct2point() and EC_POINT_point2buf() except they use the public key EC_POINT in eckey.

    EC_KEY_oct2priv() and EC_KEY_priv2oct() convert between the private key component of eckey and octet form. The octet form consists of the content octets of the privateKey OCTET STRING in an ECPrivateKey ASN.1 structure.

    @@ -115,7 +118,9 @@ size_t EC_KEY_priv2buf(const EC_KEY *eckey, unsigned char **pbuf);

    EC_KEY_get0_engine() returns a pointer to an ENGINE, or NULL if it wasn't set.

    -

    EC_KEY_up_ref(), EC_KEY_set_group(), EC_KEY_set_private_key(), EC_KEY_set_public_key(), EC_KEY_precompute_mult(), EC_KEY_generate_key(), EC_KEY_check_key(), EC_KEY_set_public_key_affine_coordinates(), EC_KEY_oct2key() and EC_KEY_oct2priv() return 1 on success or 0 on error.

    +

    EC_KEY_up_ref(), EC_KEY_set_group(), EC_KEY_set_public_key(), EC_KEY_precompute_mult(), EC_KEY_generate_key(), EC_KEY_check_key(), EC_KEY_set_public_key_affine_coordinates(), EC_KEY_oct2key() and EC_KEY_oct2priv() return 1 on success or 0 on error.

    + +

    EC_KEY_set_private_key() returns 1 on success or 0 on error except when the priv_key argument is NULL, in that case it returns 0, for legacy compatibility, and should not be treated as an error.

    EC_KEY_get0_group() returns the EC_GROUP associated with the EC_KEY.

    @@ -131,7 +136,7 @@ size_t EC_KEY_priv2buf(const EC_KEY *eckey, unsigned char **pbuf);

    COPYRIGHT

    -

    Copyright 2013-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2013-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_new_by_curve_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_new_by_curve_name.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_new_by_curve_name.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_oct2key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_oct2key.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_oct2key.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_oct2priv.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_oct2priv.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_oct2priv.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_precompute_mult.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_precompute_mult.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_precompute_mult.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_priv2buf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_priv2buf.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_priv2buf.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_priv2oct.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_priv2oct.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_priv2oct.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_asn1_flag.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_asn1_flag.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_asn1_flag.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_conv_form.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_conv_form.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_conv_form.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_enc_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_enc_flags.html new file mode 120000 index 00000000..c98537c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_enc_flags.html @@ -0,0 +1 @@ +EC_KEY_get_enc_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_flags.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_flags.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_group.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_group.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_group.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_method.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_method.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_private_key.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_private_key.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_public_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_public_key.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_public_key.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_public_key_affine_coordinates.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_public_key_affine_coordinates.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_set_public_key_affine_coordinates.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_up_ref.html new file mode 120000 index 00000000..a264ad08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_KEY_up_ref.html @@ -0,0 +1 @@ +EC_KEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_METHOD_get_field_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_METHOD_get_field_type.html new file mode 120000 index 00000000..71f7f5e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_METHOD_get_field_type.html @@ -0,0 +1 @@ +EC_GFp_simple_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_bn2point.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_bn2point.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_bn2point.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_clear_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_clear_free.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_clear_free.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_cmp.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_cmp.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_copy.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_copy.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_dbl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_dbl.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_dbl.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_dup.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_dup.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_free.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_free.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_Jprojective_coordinates_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_Jprojective_coordinates_GFp.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_Jprojective_coordinates_GFp.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates_GF2m.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates_GF2m.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates_GF2m.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates_GFp.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_get_affine_coordinates_GFp.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_hex2point.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_hex2point.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_hex2point.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_invert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_invert.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_invert.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_is_at_infinity.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_is_at_infinity.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_is_at_infinity.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_is_on_curve.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_is_on_curve.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_is_on_curve.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_make_affine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_make_affine.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_make_affine.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_method_of.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_method_of.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_method_of.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_mul.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_mul.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_mul.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_new.html index 3d2cf8a7..df4781ce 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_new.html @@ -113,7 +113,7 @@ EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, const char *hex,

    As well as the affine co-ordinates, a point can alternatively be described in terms of its Jacobian projective co-ordinates (for Fp curves only). Jacobian projective co-ordinates are expressed as three values x, y and z. Working in this co-ordinate system provides more efficient point multiplication operations. A mapping exists between Jacobian projective co-ordinates and affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written as an affine co-ordinate as (x/(z^2), y/(z^3)). Conversion to Jacobian projective from affine co-ordinates is simple. The co-ordinate (x, y) is mapped to (x, y, 1). To set or get the projective co-ordinates use EC_POINT_set_Jprojective_coordinates_GFp() and EC_POINT_get_Jprojective_coordinates_GFp() respectively.

    -

    Points can also be described in terms of their compressed co-ordinates. For a point (x, y), for any given value for x such that the point is on the curve there will only ever be two possible values for y. Therefore a point can be set using the EC_POINT_set_compressed_coordinates() function where x is the x co-ordinate and y_bit is a value 0 or 1 to identify which of the two possible values for y should be used.

    +

    Points can also be described in terms of their compressed co-ordinates. For a point (x, y), for any given value for x such that the point is on the curve there will only ever be two possible values for y. Therefore, a point can be set using the EC_POINT_set_compressed_coordinates() function where x is the x co-ordinate and y_bit is a value 0 or 1 to identify which of the two possible values for y should be used.

    The functions EC_POINT_set_compressed_coordinates_GFp() and EC_POINT_set_compressed_coordinates_GF2m() are synonyms for EC_POINT_set_compressed_coordinates(). They are defined for backwards compatibility only and should not be used.

    @@ -157,7 +157,7 @@ EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, const char *hex,

    COPYRIGHT

    -

    Copyright 2013-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2013-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_oct2point.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_oct2point.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_oct2point.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2bn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2bn.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2bn.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2buf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2buf.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2buf.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2hex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2hex.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2hex.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2oct.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2oct.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_point2oct.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_Jprojective_coordinates_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_Jprojective_coordinates_GFp.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_Jprojective_coordinates_GFp.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates_GF2m.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates_GF2m.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates_GF2m.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates_GFp.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_affine_coordinates_GFp.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates_GF2m.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates_GF2m.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates_GF2m.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates_GFp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates_GFp.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_compressed_coordinates_GFp.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_to_infinity.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_to_infinity.html new file mode 120000 index 00000000..f7ef3437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINT_set_to_infinity.html @@ -0,0 +1 @@ +EC_POINT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINTs_make_affine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINTs_make_affine.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINTs_make_affine.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINTs_mul.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINTs_mul.html new file mode 120000 index 00000000..2080f42d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_POINTs_mul.html @@ -0,0 +1 @@ +EC_POINT_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_get_builtin_curves.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_get_builtin_curves.html new file mode 120000 index 00000000..b8199b63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EC_get_builtin_curves.html @@ -0,0 +1 @@ +EC_GROUP_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EDIPARTYNAME_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EDIPARTYNAME_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EDIPARTYNAME_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EDIPARTYNAME_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EDIPARTYNAME_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EDIPARTYNAME_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_add.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_add.html index 52d622ad..d14b37b2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_add.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_add.html @@ -166,7 +166,7 @@ key-loading - loading public and/or private EVP_PKEY keys

    Reference counting and handles

    -

    Due to the modular nature of the ENGINE API, pointers to ENGINEs need to be treated as handles - ie. not only as pointers, but also as references to the underlying ENGINE object. Ie. one should obtain a new reference when making copies of an ENGINE pointer if the copies will be used (and released) independently.

    +

    Due to the modular nature of the ENGINE API, pointers to ENGINEs need to be treated as handles - i.e. not only as pointers, but also as references to the underlying ENGINE object. Ie. one should obtain a new reference when making copies of an ENGINE pointer if the copies will be used (and released) independently.

    ENGINE objects have two levels of reference-counting to match the way in which the objects are used. At the most basic level, each ENGINE pointer is inherently a structural reference - a structural reference is required to use the pointer value at all, as this kind of reference is a guarantee that the structure can not be deallocated until the reference is released.

    @@ -186,15 +186,15 @@ key-loading - loading public and/or private EVP_PKEY keys

    As mentioned, functional references exist when the cryptographic functionality of an ENGINE is required to be available. A functional reference can be obtained in one of two ways; from an existing structural reference to the required ENGINE, or by asking OpenSSL for the default operational ENGINE for a given cryptographic purpose.

    -

    To obtain a functional reference from an existing structural reference, call the ENGINE_init() function. This returns zero if the ENGINE was not already operational and couldn't be successfully initialised (eg. lack of system drivers, no special hardware attached, etc), otherwise it will return non-zero to indicate that the ENGINE is now operational and will have allocated a new functional reference to the ENGINE. All functional references are released by calling ENGINE_finish() (which removes the implicit structural reference as well).

    +

    To obtain a functional reference from an existing structural reference, call the ENGINE_init() function. This returns zero if the ENGINE was not already operational and couldn't be successfully initialised (e.g. lack of system drivers, no special hardware attached, etc), otherwise it will return nonzero to indicate that the ENGINE is now operational and will have allocated a new functional reference to the ENGINE. All functional references are released by calling ENGINE_finish() (which removes the implicit structural reference as well).

    -

    The second way to get a functional reference is by asking OpenSSL for a default implementation for a given task, eg. by ENGINE_get_default_RSA(), ENGINE_get_default_cipher_engine(), etc. These are discussed in the next section, though they are not usually required by application programmers as they are used automatically when creating and using the relevant algorithm-specific types in OpenSSL, such as RSA, DSA, EVP_CIPHER_CTX, etc.

    +

    The second way to get a functional reference is by asking OpenSSL for a default implementation for a given task, e.g. by ENGINE_get_default_RSA(), ENGINE_get_default_cipher_engine(), etc. These are discussed in the next section, though they are not usually required by application programmers as they are used automatically when creating and using the relevant algorithm-specific types in OpenSSL, such as RSA, DSA, EVP_CIPHER_CTX, etc.

    Default implementations

    For each supported abstraction, the ENGINE code maintains an internal table of state to control which implementations are available for a given abstraction and which should be used by default. These implementations are registered in the tables and indexed by an 'nid' value, because abstractions like EVP_CIPHER and EVP_DIGEST support many distinct algorithms and modes, and ENGINEs can support arbitrarily many of them. In the case of other abstractions like RSA, DSA, etc, there is only one "algorithm" so all implementations implicitly register using the same 'nid' index.

    -

    When a default ENGINE is requested for a given abstraction/algorithm/mode, (eg. when calling RSA_new_method(NULL)), a "get_default" call will be made to the ENGINE subsystem to process the corresponding state table and return a functional reference to an initialised ENGINE whose implementation should be used. If no ENGINE should (or can) be used, it will return NULL and the caller will operate with a NULL ENGINE handle - this usually equates to using the conventional software implementation. In the latter case, OpenSSL will from then on behave the way it used to before the ENGINE API existed.

    +

    When a default ENGINE is requested for a given abstraction/algorithm/mode, (e.g. when calling RSA_new_method(NULL)), a "get_default" call will be made to the ENGINE subsystem to process the corresponding state table and return a functional reference to an initialised ENGINE whose implementation should be used. If no ENGINE should (or can) be used, it will return NULL and the caller will operate with a NULL ENGINE handle - this usually equates to using the conventional software implementation. In the latter case, OpenSSL will from then on behave the way it used to before the ENGINE API existed.

    Each state table has a flag to note whether it has processed this "get_default" query since the table was last modified, because to process this question it must iterate across all the registered ENGINEs in the table trying to initialise each of them in turn, in case one of them is operational. If it returns a functional reference to an ENGINE, it will also cache another reference to speed up processing future queries (without needing to iterate across the table). Likewise, it will cache a NULL response if no ENGINE was available so that future queries won't repeat the same iteration unless the state table changes. This behaviour can also be changed; if the ENGINE_TABLE_FLAG_NOINIT flag is set (using ENGINE_set_table_flags()), no attempted initialisations will take place, instead the only way for the state table to return a non-NULL ENGINE to the "get_default" query will be if one is expressly set in the table. Eg. ENGINE_set_default_RSA() does the same job as ENGINE_register_RSA() except that it also sets the state table's cached response for the "get_default" query. In the case of abstractions like EVP_CIPHER, where implementations are indexed by 'nid', these flags and cached-responses are distinct for each 'nid' value.

    @@ -202,7 +202,7 @@ key-loading - loading public and/or private EVP_PKEY keys

    This section will explain the basic things an application programmer should support to make the most useful elements of the ENGINE functionality available to the user. The first thing to consider is whether the programmer wishes to make alternative ENGINE modules available to the application and user. OpenSSL maintains an internal linked list of "visible" ENGINEs from which it has to operate - at start-up, this list is empty and in fact if an application does not call any ENGINE API calls and it uses static linking against openssl, then the resulting application binary will not contain any alternative ENGINE code at all. So the first consideration is whether any/all available ENGINE implementations should be made visible to OpenSSL - this is controlled by calling the various "load" functions.

    -

    The fact that ENGINEs are made visible to OpenSSL (and thus are linked into the program and loaded into memory at run-time) does not mean they are "registered" or called into use by OpenSSL automatically - that behaviour is something for the application to control. Some applications will want to allow the user to specify exactly which ENGINE they want used if any is to be used at all. Others may prefer to load all support and have OpenSSL automatically use at run-time any ENGINE that is able to successfully initialise - ie. to assume that this corresponds to acceleration hardware attached to the machine or some such thing. There are probably numerous other ways in which applications may prefer to handle things, so we will simply illustrate the consequences as they apply to a couple of simple cases and leave developers to consider these and the source code to openssl's builtin utilities as guides.

    +

    The fact that ENGINEs are made visible to OpenSSL (and thus are linked into the program and loaded into memory at run-time) does not mean they are "registered" or called into use by OpenSSL automatically - that behaviour is something for the application to control. Some applications will want to allow the user to specify exactly which ENGINE they want used if any is to be used at all. Others may prefer to load all support and have OpenSSL automatically use at run-time any ENGINE that is able to successfully initialise - i.e. to assume that this corresponds to acceleration hardware attached to the machine or some such thing. There are probably numerous other ways in which applications may prefer to handle things, so we will simply illustrate the consequences as they apply to a couple of simple cases and leave developers to consider these and the source code to openssl's builtin utilities as guides.

    If no ENGINE API functions are called within an application, then OpenSSL will not allocate any internal resources. Prior to OpenSSL 1.1.0, however, if any ENGINEs are loaded, even if not registered or used, it was necessary to call ENGINE_cleanup() before the program exits.

    @@ -250,7 +250,7 @@ ENGINE_register_all_complete();

    There is a mechanism supported by the ENGINE framework that allows each ENGINE implementation to define an arbitrary set of configuration "commands" and expose them to OpenSSL and any applications based on OpenSSL. This mechanism is entirely based on the use of name-value pairs and assumes ASCII input (no unicode or UTF for now!), so it is ideal if applications want to provide a transparent way for users to provide arbitrary configuration "directives" directly to such ENGINEs. It is also possible for the application to dynamically interrogate the loaded ENGINE implementations for the names, descriptions, and input flags of their available "control commands", providing a more flexible configuration scheme. However, if the user is expected to know which ENGINE device he/she is using (in the case of specialised hardware, this goes without saying) then applications may not need to concern themselves with discovering the supported control commands and simply prefer to pass settings into ENGINEs exactly as they are provided by the user.

    -

    Before illustrating how control commands work, it is worth mentioning what they are typically used for. Broadly speaking there are two uses for control commands; the first is to provide the necessary details to the implementation (which may know nothing at all specific to the host system) so that it can be initialised for use. This could include the path to any driver or config files it needs to load, required network addresses, smart-card identifiers, passwords to initialise protected devices, logging information, etc etc. This class of commands typically needs to be passed to an ENGINE before attempting to initialise it, ie. before calling ENGINE_init(). The other class of commands consist of settings or operations that tweak certain behaviour or cause certain operations to take place, and these commands may work either before or after ENGINE_init(), or in some cases both. ENGINE implementations should provide indications of this in the descriptions attached to builtin control commands and/or in external product documentation.

    +

    Before illustrating how control commands work, it is worth mentioning what they are typically used for. Broadly speaking there are two uses for control commands; the first is to provide the necessary details to the implementation (which may know nothing at all specific to the host system) so that it can be initialised for use. This could include the path to any driver or config files it needs to load, required network addresses, smart-card identifiers, passwords to initialise protected devices, logging information, etc etc. This class of commands typically needs to be passed to an ENGINE before attempting to initialise it, i.e. before calling ENGINE_init(). The other class of commands consist of settings or operations that tweak certain behaviour or cause certain operations to take place, and these commands may work either before or after ENGINE_init(), or in some cases both. ENGINE implementations should provide indications of this in the descriptions attached to builtin control commands and/or in external product documentation.

    Issuing control commands to an ENGINE

    @@ -295,11 +295,11 @@ ENGINE_register_all_complete(); return 1; } -

    Note that ENGINE_ctrl_cmd_string() accepts a boolean argument that can relax the semantics of the function - if set non-zero it will only return failure if the ENGINE supported the given command name but failed while executing it, if the ENGINE doesn't support the command name it will simply return success without doing anything. In this case we assume the user is only supplying commands specific to the given ENGINE so we set this to FALSE.

    +

    Note that ENGINE_ctrl_cmd_string() accepts a boolean argument that can relax the semantics of the function - if set nonzero it will only return failure if the ENGINE supported the given command name but failed while executing it, if the ENGINE doesn't support the command name it will simply return success without doing anything. In this case we assume the user is only supplying commands specific to the given ENGINE so we set this to FALSE.

    Discovering supported control commands

    -

    It is possible to discover at run-time the names, numerical-ids, descriptions and input parameters of the control commands supported by an ENGINE using a structural reference. Note that some control commands are defined by OpenSSL itself and it will intercept and handle these control commands on behalf of the ENGINE, ie. the ENGINE's ctrl() handler is not used for the control command. openssl/engine.h defines an index, ENGINE_CMD_BASE, that all control commands implemented by ENGINEs should be numbered from. Any command value lower than this symbol is considered a "generic" command is handled directly by the OpenSSL core routines.

    +

    It is possible to discover at run-time the names, numerical-ids, descriptions and input parameters of the control commands supported by an ENGINE using a structural reference. Note that some control commands are defined by OpenSSL itself and it will intercept and handle these control commands on behalf of the ENGINE, i.e. the ENGINE's ctrl() handler is not used for the control command. openssl/engine.h defines an index, ENGINE_CMD_BASE, that all control commands implemented by ENGINEs should be numbered from. Any command value lower than this symbol is considered a "generic" command is handled directly by the OpenSSL core routines.

    It is using these "core" control commands that one can discover the control commands implemented by a given ENGINE, specifically the commands:

    @@ -332,7 +332,7 @@ ENGINE_CMD_FLAG_STRING ENGINE_CMD_FLAG_NO_INPUT ENGINE_CMD_FLAG_INTERNAL -

    If the ENGINE_CMD_FLAG_INTERNAL flag is set, then any other flags are purely informational to the caller - this flag will prevent the command being usable for any higher-level ENGINE functions such as ENGINE_ctrl_cmd_string(). "INTERNAL" commands are not intended to be exposed to text-based configuration by applications, administrations, users, etc. These can support arbitrary operations via ENGINE_ctrl(), including passing to and/or from the control commands data of any arbitrary type. These commands are supported in the discovery mechanisms simply to allow applications to determine if an ENGINE supports certain specific commands it might want to use (eg. application "foo" might query various ENGINEs to see if they implement "FOO_GET_VENDOR_LOGO_GIF" - and ENGINE could therefore decide whether or not to support this "foo"-specific extension).

    +

    If the ENGINE_CMD_FLAG_INTERNAL flag is set, then any other flags are purely informational to the caller - this flag will prevent the command being usable for any higher-level ENGINE functions such as ENGINE_ctrl_cmd_string(). "INTERNAL" commands are not intended to be exposed to text-based configuration by applications, administrations, users, etc. These can support arbitrary operations via ENGINE_ctrl(), including passing to and/or from the control commands data of any arbitrary type. These commands are supported in the discovery mechanisms simply to allow applications to determine if an ENGINE supports certain specific commands it might want to use (e.g. application "foo" might query various ENGINEs to see if they implement "FOO_GET_VENDOR_LOGO_GIF" - and ENGINE could therefore decide whether or not to support this "foo"-specific extension).

    ENVIRONMENT

    @@ -366,7 +366,7 @@ ENGINE_CMD_FLAG_INTERNAL

    All ENGINE_register_TYPE() functions return 1 on success or 0 on error.

    -

    ENGINE_register_complete() and ENGINE_register_all_complete() return 1 on success or 0 on error.

    +

    ENGINE_register_complete() and ENGINE_register_all_complete() always return 1.

    ENGINE_ctrl() returns a positive value on success or others on error.

    @@ -376,7 +376,7 @@ ENGINE_CMD_FLAG_INTERNAL

    ENGINE_new() returns a valid ENGINE structure on success or NULL if an error occurred.

    -

    ENGINE_free() returns 1 on success or 0 on error.

    +

    ENGINE_free() always returns 1.

    ENGINE_up_ref() returns 1 on success or 0 on error.

    @@ -410,7 +410,7 @@ ENGINE_CMD_FLAG_INTERNAL

    COPYRIGHT

    -

    Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2002-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_add_conf_module.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_add_conf_module.html new file mode 120000 index 00000000..4a8db77c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_add_conf_module.html @@ -0,0 +1 @@ +OPENSSL_load_builtin_modules.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_by_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_by_id.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_by_id.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_cleanup.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_cleanup.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_cmd_is_executable.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_cmd_is_executable.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_cmd_is_executable.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl_cmd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl_cmd.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl_cmd.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl_cmd_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl_cmd_string.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_ctrl_cmd_string.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_finish.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_finish.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_free.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_free.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_DH.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_DH.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_DSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_DSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_RAND.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_RAND.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_RAND.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_RSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_RSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cipher.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cipher.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cipher_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cipher_engine.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cipher_engine.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ciphers.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ciphers.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cmd_defns.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cmd_defns.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_cmd_defns.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ctrl_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ctrl_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ctrl_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_DH.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_DH.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_DSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_DSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_RAND.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_RAND.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_RAND.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_RSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_default_RSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_destroy_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_destroy_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_destroy_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digest.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digest.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digest_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digest_engine.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digest_engine.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digests.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digests.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_digests.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_finish_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_finish_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_finish_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_first.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_first.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_first.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_flags.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_flags.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_id.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_id.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_init_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_init_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_init_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_last.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_last.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_last.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_load_privkey_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_load_privkey_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_load_privkey_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_load_pubkey_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_load_pubkey_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_load_pubkey_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_name.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_name.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_next.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_next.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_next.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_prev.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_prev.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_prev.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_table_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_table_flags.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_get_table_flags.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_init.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_init.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_builtin_engines.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_builtin_engines.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_builtin_engines.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_private_key.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_private_key.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_public_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_public_key.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_load_public_key.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_new.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_new.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_DH.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_DH.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_DSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_DSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_RAND.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_RAND.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_RAND.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_RSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_RSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_DH.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_DH.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_DSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_DSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_RAND.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_RAND.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_RAND.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_RSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_RSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_ciphers.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_ciphers.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_complete.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_complete.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_complete.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_digests.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_digests.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_all_digests.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_ciphers.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_ciphers.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_complete.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_complete.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_complete.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_digests.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_digests.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_register_digests.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_remove.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_remove.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_remove.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_DH.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_DH.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_DSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_DSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_RAND.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_RAND.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_RAND.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_RSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_RSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ciphers.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ciphers.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_cmd_defns.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_cmd_defns.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_cmd_defns.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ctrl_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ctrl_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ctrl_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_DH.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_DH.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_DSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_DSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_RAND.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_RAND.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_RAND.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_RSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_RSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_ciphers.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_ciphers.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_digests.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_digests.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_digests.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_string.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_default_string.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_destroy_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_destroy_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_destroy_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_digests.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_digests.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_digests.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_finish_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_finish_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_finish_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_flags.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_flags.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_id.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_id.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_init_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_init_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_init_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_load_privkey_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_load_privkey_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_load_privkey_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_load_pubkey_function.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_load_pubkey_function.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_load_pubkey_function.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_name.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_name.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_table_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_table_flags.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_set_table_flags.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_DH.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_DH.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_DSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_DSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_RAND.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_RAND.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_RAND.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_RSA.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_RSA.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_ciphers.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_ciphers.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_digests.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_digests.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_unregister_digests.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_up_ref.html new file mode 120000 index 00000000..3f52f1d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ENGINE_up_ref.html @@ -0,0 +1 @@ +ENGINE_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_FATAL_ERROR.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_FATAL_ERROR.html new file mode 120000 index 00000000..dc94cf44 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_FATAL_ERROR.html @@ -0,0 +1 @@ +ERR_GET_LIB.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_GET_FUNC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_GET_FUNC.html new file mode 120000 index 00000000..dc94cf44 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_GET_FUNC.html @@ -0,0 +1 @@ +ERR_GET_LIB.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_GET_REASON.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_GET_REASON.html new file mode 120000 index 00000000..dc94cf44 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_GET_REASON.html @@ -0,0 +1 @@ +ERR_GET_LIB.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_PACK.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_PACK.html new file mode 120000 index 00000000..4f06d08f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_PACK.html @@ -0,0 +1 @@ +ERR_load_strings.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_add_error_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_add_error_data.html new file mode 120000 index 00000000..4fc35617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_add_error_data.html @@ -0,0 +1 @@ +ERR_put_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_add_error_vdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_add_error_vdata.html new file mode 120000 index 00000000..4fc35617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_add_error_vdata.html @@ -0,0 +1 @@ +ERR_put_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_error_string_n.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_error_string_n.html new file mode 120000 index 00000000..f54a5d9f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_error_string_n.html @@ -0,0 +1 @@ +ERR_error_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_free_strings.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_free_strings.html new file mode 120000 index 00000000..5dd87d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_free_strings.html @@ -0,0 +1 @@ +ERR_load_crypto_strings.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_func_error_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_func_error_string.html new file mode 120000 index 00000000..f54a5d9f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_func_error_string.html @@ -0,0 +1 @@ +ERR_error_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error.html index bb244e7c..4814539e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error.html @@ -53,7 +53,7 @@ unsigned long ERR_peek_last_error_line_data(const char **file, int *line,

    See ERR_GET_LIB(3) for obtaining information about location and reason of the error, and ERR_error_string(3) for human-readable error messages.

    -

    ERR_get_error_line(), ERR_peek_error_line() and ERR_peek_last_error_line() are the same as the above, but they additionally store the file name and line number where the error occurred in *file and *line, unless these are NULL.

    +

    ERR_get_error_line(), ERR_peek_error_line() and ERR_peek_last_error_line() are the same as the above, but they additionally store the filename and line number where the error occurred in *file and *line, unless these are NULL.

    ERR_get_error_line_data(), ERR_peek_error_line_data() and ERR_peek_last_error_line_data() store additional data and flags associated with the error code in *data and *flags, unless these are NULL. *data contains a string if *flags&ERR_TXT_STRING is true.

    @@ -69,7 +69,7 @@ unsigned long ERR_peek_last_error_line_data(const char **file, int *line,

    COPYRIGHT

    -

    Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error_line.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error_line.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error_line.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error_line_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error_line_data.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_error_line_data.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_next_error_library.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_next_error_library.html new file mode 120000 index 00000000..4f06d08f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_get_next_error_library.html @@ -0,0 +1 @@ +ERR_load_strings.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_lib_error_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_lib_error_string.html new file mode 120000 index 00000000..f54a5d9f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_lib_error_string.html @@ -0,0 +1 @@ +ERR_error_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_load_strings.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_load_strings.html index 69fb1bb3..a5026657 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_load_strings.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_load_strings.html @@ -28,7 +28,7 @@
    #include <openssl/err.h>
     
    -void ERR_load_strings(int lib, ERR_STRING_DATA str[]);
    +int ERR_load_strings(int lib, ERR_STRING_DATA *str);
     
     int ERR_get_next_error_library(void);
     
    @@ -54,7 +54,7 @@ unsigned long ERR_PACK(int lib, int func, int reason);

    RETURN VALUES

    -

    ERR_load_strings() returns no value. ERR_PACK() return the error code. ERR_get_next_error_library() returns zero on failure, otherwise a new library number.

    +

    ERR_load_strings() returns 1 for success and 0 for failure. ERR_PACK() returns the error code. ERR_get_next_error_library() returns zero on failure, otherwise a new library number.

    SEE ALSO

    @@ -62,7 +62,7 @@ unsigned long ERR_PACK(int lib, int func, int reason);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error_line.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error_line.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error_line.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error_line_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error_line_data.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_error_line_data.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error_line.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error_line.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error_line.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error_line_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error_line_data.html new file mode 120000 index 00000000..38ec3ca8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_peek_last_error_line_data.html @@ -0,0 +1 @@ +ERR_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_pop_to_mark.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_pop_to_mark.html new file mode 120000 index 00000000..b883dde2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_pop_to_mark.html @@ -0,0 +1 @@ +ERR_set_mark.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors.html index 9a8d5543..6ed2299b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors.html @@ -42,7 +42,7 @@ void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u), void *

    The error strings will have the following format:

    -
    [pid]:error:[error code]:[library name]:[function name]:[reason string]:[file name]:[line]:[optional text message]
    +
    [pid]:error:[error code]:[library name]:[function name]:[reason string]:[filename]:[line]:[optional text message]

    error code is an 8 digit hexadecimal number. library name, function name and reason string are ASCII text, as is optional text message if one was set for the respective error code.

    @@ -58,7 +58,7 @@ void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u), void *

    COPYRIGHT

    -

    Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors_cb.html new file mode 120000 index 00000000..39316bd5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors_cb.html @@ -0,0 +1 @@ +ERR_print_errors.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors_fp.html new file mode 120000 index 00000000..39316bd5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_print_errors_fp.html @@ -0,0 +1 @@ +ERR_print_errors.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_put_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_put_error.html index f158c6f8..64ff24ee 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_put_error.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_put_error.html @@ -51,9 +51,9 @@ void ERR_add_error_vdata(int num, va_list arg);
    SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);
    -

    Function and reason codes should consist of upper case characters, numbers and underscores only. The error file generation script translates function codes into function names by looking in the header files for an appropriate function name, if none is found it just uses the capitalized form such as "SSL3_READ_BYTES" in the above example.

    +

    Function and reason codes should consist of uppercase characters, numbers and underscores only. The error file generation script translates function codes into function names by looking in the header files for an appropriate function name, if none is found it just uses the capitalized form such as "SSL3_READ_BYTES" in the above example.

    -

    The trailing section of a reason code (after the "_R_") is translated into lower case and underscores changed to spaces.

    +

    The trailing section of a reason code (after the "_R_") is translated into lowercase and underscores changed to spaces.

    Although a library will normally report errors using its own specific XXXerr macro, another library's macro can be used. This is normally only done when a library wants to include ASN1 code which must use the ASN1err() macro.

    @@ -67,7 +67,7 @@ void ERR_add_error_vdata(int num, va_list arg);

    COPYRIGHT

    -

    Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_reason_error_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_reason_error_string.html new file mode 120000 index 00000000..f54a5d9f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_reason_error_string.html @@ -0,0 +1 @@ +ERR_error_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_remove_thread_state.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_remove_thread_state.html new file mode 120000 index 00000000..668af6dc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ERR_remove_thread_state.html @@ -0,0 +1 @@ +ERR_remove_state.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_CERT_ID_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_ISSUER_SERIAL_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ESS_SIGNING_CERT_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_block_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_block_size.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_block_size.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_cipher.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_cipher.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_ctrl.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_ctrl.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_flags.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_flags.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_free.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_free.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_get_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_get_app_data.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_get_app_data.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_iv_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_iv_length.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_iv_length.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_key_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_key_length.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_key_length.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_mode.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_mode.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_new.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_new.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_nid.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_nid.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_reset.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_reset.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_reset.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_app_data.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_app_data.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_cipher_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_cipher_data.html new file mode 120000 index 00000000..10ffb1e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_cipher_data.html @@ -0,0 +1 @@ +EVP_CIPHER_CTX_get_cipher_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_key_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_key_length.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_key_length.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_padding.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_padding.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_set_padding.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_type.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_CTX_type.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_asn1_to_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_asn1_to_param.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_asn1_to_param.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_block_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_block_size.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_block_size.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_flags.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_flags.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_iv_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_iv_length.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_iv_length.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_key_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_key_length.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_key_length.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_dup.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_dup.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_free.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_free.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_cleanup.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_cleanup.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_ctrl.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_ctrl.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_do_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_do_cipher.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_do_cipher.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_get_asn1_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_get_asn1_params.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_get_asn1_params.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_init.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_init.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_set_asn1_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_set_asn1_params.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_get_set_asn1_params.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_cleanup.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_cleanup.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_ctrl.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_ctrl.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_do_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_do_cipher.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_do_cipher.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_flags.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_flags.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_get_asn1_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_get_asn1_params.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_get_asn1_params.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_impl_ctx_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_impl_ctx_size.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_impl_ctx_size.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_init.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_init.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_iv_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_iv_length.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_iv_length.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_set_asn1_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_set_asn1_params.html new file mode 120000 index 00000000..f441b745 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_meth_set_set_asn1_params.html @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_mode.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_mode.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_nid.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_nid.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_param_to_asn1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_param_to_asn1.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_param_to_asn1.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_type.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CIPHER_type.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherFinal.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherFinal.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherFinal_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherFinal_ex.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherFinal_ex.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherInit.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherInit.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherInit_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherInit_ex.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherInit_ex.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherUpdate.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_CipherUpdate.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeBlock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeBlock.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeBlock.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeFinal.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeFinal.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeInit.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeInit.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeUpdate.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecodeUpdate.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptFinal.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptFinal.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptFinal_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptFinal_ex.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptFinal_ex.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptInit.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptInit.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptInit_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptInit_ex.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptInit_ex.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptUpdate.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DecryptUpdate.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_Digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_Digest.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_Digest.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinal.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinal.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinalXOF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinalXOF.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinalXOF.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinal_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinal_ex.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestFinal_ex.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestInit.html index 3f48d1e4..4ffa7129 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestInit.html @@ -83,7 +83,7 @@ void EVP_MD_CTX_set_pkey_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pctx);

    DESCRIPTION

    -

    The EVP digest routines are a high level interface to message digests, and should be used instead of the cipher-specific functions.

    +

    The EVP digest routines are a high-level interface to message digests, and should be used instead of the cipher-specific functions.

    @@ -353,7 +353,7 @@ void EVP_MD_CTX_set_pkey_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pctx);

    NOTES

    -

    The EVP interface to message digests should almost always be used in preference to the low level interfaces. This is because the code then becomes transparent to the digest used and much more flexible.

    +

    The EVP interface to message digests should almost always be used in preference to the low-level interfaces. This is because the code then becomes transparent to the digest used and much more flexible.

    New applications should use the SHA-2 (such as EVP_sha256(3)) or the SHA-3 digest algorithms (such as EVP_sha3_512(3)). The other digest algorithms are still in common use.

    @@ -430,7 +430,7 @@ int main(int argc, char *argv[])

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestInit_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestInit_ex.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestInit_ex.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSign.html new file mode 120000 index 00000000..d8f078dd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSign.html @@ -0,0 +1 @@ +EVP_DigestSignInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignFinal.html new file mode 120000 index 00000000..d8f078dd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignFinal.html @@ -0,0 +1 @@ +EVP_DigestSignInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignInit.html index 3f44a370..cc53a30d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignInit.html @@ -41,7 +41,7 @@ int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,

    DESCRIPTION

    -

    The EVP signature routines are a high level interface to digital signatures.

    +

    The EVP signature routines are a high-level interface to digital signatures.

    EVP_DigestSignInit() sets up signing context ctx to use digest type from ENGINE e and private key pkey. ctx must be created with EVP_MD_CTX_new() before calling this function. If pctx is not NULL, the EVP_PKEY_CTX of the signing operation will be written to *pctx: this can be used to set alternative signing options. Note that any existing value in *pctx is overwritten. The EVP_PKEY_CTX value returned must not be freed directly by the application if ctx is not assigned an EVP_PKEY_CTX value before being passed to EVP_DigestSignInit() (which means the EVP_PKEY_CTX is created inside EVP_DigestSignInit() and it will be freed automatically when the EVP_MD_CTX is freed).

    @@ -121,7 +121,7 @@ int EVP_DigestSign(EVP_MD_CTX *ctx, unsigned char *sigret,

    NOTES

    -

    The EVP interface to digital signatures should almost always be used in preference to the low level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    +

    The EVP interface to digital signatures should almost always be used in preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    EVP_DigestSign() is a one shot operation which signs a single block of data in one function. For algorithms that support streaming it is equivalent to calling EVP_DigestSignUpdate() and EVP_DigestSignFinal(). For algorithms which do not support streaming (e.g. PureEdDSA) it is the only way to sign data.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignUpdate.html new file mode 120000 index 00000000..d8f078dd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestSignUpdate.html @@ -0,0 +1 @@ +EVP_DigestSignInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestUpdate.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestUpdate.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerify.html new file mode 120000 index 00000000..2d1cd135 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerify.html @@ -0,0 +1 @@ +EVP_DigestVerifyInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyFinal.html new file mode 120000 index 00000000..2d1cd135 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyFinal.html @@ -0,0 +1 @@ +EVP_DigestVerifyInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyInit.html index 39ee47aa..59e38805 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyInit.html @@ -40,7 +40,7 @@ int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,

    DESCRIPTION

    -

    The EVP signature routines are a high level interface to digital signatures.

    +

    The EVP signature routines are a high-level interface to digital signatures.

    EVP_DigestVerifyInit() sets up verification context ctx to use digest type from ENGINE e and public key pkey. ctx must be created with EVP_MD_CTX_new() before calling this function. If pctx is not NULL, the EVP_PKEY_CTX of the verification operation will be written to *pctx: this can be used to set alternative verification options. Note that any existing value in *pctx is overwritten. The EVP_PKEY_CTX value returned must not be freed directly by the application if ctx is not assigned an EVP_PKEY_CTX value before being passed to EVP_DigestVerifyInit() (which means the EVP_PKEY_CTX is created inside EVP_DigestVerifyInit() and it will be freed automatically when the EVP_MD_CTX is freed).

    @@ -62,7 +62,7 @@ int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,

    NOTES

    -

    The EVP interface to digital signatures should almost always be used in preference to the low level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    +

    The EVP interface to digital signatures should almost always be used in preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    EVP_DigestVerify() is a one shot operation which verifies a single block of data in one function. For algorithms that support streaming it is equivalent to calling EVP_DigestVerifyUpdate() and EVP_DigestVerifyFinal(). For algorithms which do not support streaming (e.g. PureEdDSA) it is the only way to verify data.

    @@ -84,7 +84,7 @@ int EVP_DigestVerify(EVP_MD_CTX *ctx, const unsigned char *sigret,

    COPYRIGHT

    -

    Copyright 2006-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2006-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyUpdate.html new file mode 120000 index 00000000..2d1cd135 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_DigestVerifyUpdate.html @@ -0,0 +1 @@ +EVP_DigestVerifyInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_copy.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_copy.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_free.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_free.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_new.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_new.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_num.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_num.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_ENCODE_CTX_num.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeBlock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeBlock.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeBlock.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeFinal.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeFinal.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeInit.html index 8301e17b..8666578f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeInit.html @@ -46,7 +46,7 @@ int EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n);DESCRIPTION -

    The EVP encode routines provide a high level interface to base 64 encoding and decoding. Base 64 encoding converts binary data into a printable form that uses the characters A-Z, a-z, 0-9, "+" and "/" to represent the data. For every 3 bytes of binary data provided 4 bytes of base 64 encoded data will be produced plus some occasional newlines (see below). If the input data length is not a multiple of 3 then the output data will be padded at the end using the "=" character.

    +

    The EVP encode routines provide a high-level interface to base 64 encoding and decoding. Base 64 encoding converts binary data into a printable form that uses the characters A-Z, a-z, 0-9, "+" and "/" to represent the data. For every 3 bytes of binary data provided 4 bytes of base 64 encoded data will be produced plus some occasional newlines (see below). If the input data length is not a multiple of 3 then the output data will be padded at the end using the "=" character.

    EVP_ENCODE_CTX_new() allocates, initializes and returns a context to be used for the encode/decode functions.

    @@ -64,7 +64,7 @@ int EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n);EVP_ENCODE_CTX_num() will return the number of as yet unprocessed bytes still to be encoded or decoded that are pending in the ctx object.

    -

    EVP_EncodeBlock() encodes a full block of input data in f and of length dlen and stores it in t. For every 3 bytes of input provided 4 bytes of output data will be produced. If dlen is not divisible by 3 then the block is encoded as a final block of data and the output is padded such that it is always divisible by 4. Additionally a NUL terminator character will be added. For example if 16 bytes of input data is provided then 24 bytes of encoded data is created plus 1 byte for a NUL terminator (i.e. 25 bytes in total). The length of the data generated without the NUL terminator is returned from the function.

    +

    EVP_EncodeBlock() encodes a full block of input data in f and of length n and stores it in t. For every 3 bytes of input provided 4 bytes of output data will be produced. If n is not divisible by 3 then the block is encoded as a final block of data and the output is padded such that it is always divisible by 4. Additionally a NUL terminator character will be added. For example if 16 bytes of input data is provided then 24 bytes of encoded data is created plus 1 byte for a NUL terminator (i.e. 25 bytes in total). The length of the data generated without the NUL terminator is returned from the function.

    EVP_DecodeInit() initialises ctx for the start of a new decoding operation.

    @@ -96,7 +96,7 @@ int EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n);COPYRIGHT -

    Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeUpdate.html new file mode 120000 index 00000000..5c4e4f14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncodeUpdate.html @@ -0,0 +1 @@ +EVP_EncodeInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptFinal.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptFinal.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptFinal_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptFinal_ex.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptFinal_ex.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptInit.html index 9f820dd4..5b77d785 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptInit.html @@ -106,7 +106,7 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);

    DESCRIPTION

    -

    The EVP cipher routines are a high level interface to certain symmetric ciphers.

    +

    The EVP cipher routines are a high-level interface to certain symmetric ciphers.

    EVP_CIPHER_CTX_new() creates a cipher context.

    @@ -114,7 +114,7 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);

    EVP_EncryptInit_ex() sets up cipher context ctx for encryption with cipher type from ENGINE impl. ctx must be created before calling this function. type is normally supplied by a function such as EVP_aes_256_cbc(). If impl is NULL then the default implementation is used. key is the symmetric key to use and iv is the IV to use (if necessary), the actual number of bytes used for the key and IV depends on the cipher. It is possible to set all parameters to NULL except type in an initial call and supply the remaining parameters in subsequent calls, all of which have type set to NULL. This is done when the default cipher parameters are not appropriate.

    -

    EVP_EncryptUpdate() encrypts inl bytes from the buffer in and writes the encrypted version to out. This function can be called multiple times to encrypt successive blocks of data. The amount of data written depends on the block alignment of the encrypted data: as a result the amount of data written may be anything from zero bytes to (inl + cipher_block_size - 1) so out should contain sufficient room. The actual number of bytes written is placed in outl. It also checks if in and out are partially overlapping, and if they are 0 is returned to indicate failure.

    +

    EVP_EncryptUpdate() encrypts inl bytes from the buffer in and writes the encrypted version to out. This function can be called multiple times to encrypt successive blocks of data. The amount of data written depends on the block alignment of the encrypted data. For most ciphers and modes, the amount of data written can be anything from zero bytes to (inl + cipher_block_size - 1) bytes. For wrap cipher modes, the amount of data written can be anything from zero bytes to (inl + cipher_block_size) bytes. For stream ciphers, the amount of data written can be anything from zero bytes to inl bytes. Thus, out should contain sufficient room for the operation being performed. The actual number of bytes written is placed in outl. It also checks if in and out are partially overlapping, and if they are 0 is returned to indicate failure.

    If padding is enabled (the default) then EVP_EncryptFinal_ex() encrypts the "final" data, that is any data that remains in a partial block. It uses standard block padding (aka PKCS padding) as described in the NOTES section, below. The encrypted final data is written to out which should have sufficient space for one cipher block. The number of bytes written is placed in outl. After this function is called the encryption operation is finished and no further calls to EVP_EncryptUpdate() should be made.

    @@ -180,7 +180,7 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);

    EVP_CIPHER_CTX_set_padding() always returns 1.

    -

    EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV length or zero if the cipher does not use an IV.

    +

    EVP_CIPHER_iv_length() and EVP_CIPHER_CTX_iv_length() return the IV length, zero if the cipher does not use an IV and a negative value on error.

    EVP_CIPHER_type() and EVP_CIPHER_CTX_type() return the NID of the cipher's OBJECT IDENTIFIER or NID_undef if it has no defined OBJECT IDENTIFIER.

    @@ -239,13 +239,13 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
    EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, taglen, tag)
    -

    Sets the expected tag to taglen bytes from tag. The tag length can only be set before specifying an IV. taglen must be between 1 and 16 inclusive.

    +

    When decrypting, this call sets the expected tag to taglen bytes from tag. taglen must be between 1 and 16 inclusive. The tag must be set prior to any call to EVP_DecryptFinal() or EVP_DecryptFinal_ex().

    For GCM, this call is only valid when decrypting data.

    -

    For OCB, this call is valid when decrypting data to set the expected tag, and before encryption to set the desired tag length.

    +

    For OCB, this call is valid when decrypting data to set the expected tag, and when encrypting to set the desired tag length.

    -

    In OCB mode, calling this before encryption with tag set to NULL sets the tag length. If this is not called prior to encryption, a default tag length is used.

    +

    In OCB mode, calling this when encrypting with tag set to NULL sets the tag length. The tag length can only be set before specifying an IV. If this is not called prior to setting the IV during encryption, then a default tag length is used.

    For OCB AES, the default tag length is 16 (i.e. 128 bits). It is also the maximum tag length for OCB.

    @@ -277,7 +277,7 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);
    EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, ivlen, NULL)
    -

    Sets the CCM nonce (IV) length. This call can only be made before specifying an nonce value. The nonce length is given by 15 - L so it is 7 by default for AES.

    +

    Sets the CCM nonce (IV) length. This call can only be made before specifying a nonce value. The nonce length is given by 15 - L so it is 7 by default for AES.

    @@ -312,7 +312,7 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);

    NOTES

    -

    Where possible the EVP interface to symmetric ciphers should be used in preference to the low level interfaces. This is because the code then becomes transparent to the cipher used and much more flexible. Additionally, the EVP interface will ensure the use of platform specific cryptographic acceleration such as AES-NI (the low level interfaces do not provide the guarantee).

    +

    Where possible the EVP interface to symmetric ciphers should be used in preference to the low-level interfaces. This is because the code then becomes transparent to the cipher used and much more flexible. Additionally, the EVP interface will ensure the use of platform specific cryptographic acceleration such as AES-NI (the low-level interfaces do not provide the guarantee).

    PKCS padding works by adding n padding bytes of value n to make the total length of the encrypted data a multiple of the block size. Padding is always added so if the data is already a multiple of the block size n will equal the block size. For example if the block size is 8 and 11 bytes are to be encrypted then 5 padding bytes of value 5 will be added.

    @@ -409,7 +409,7 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type); /* Don't set key or IV right away; we want to check lengths */ ctx = EVP_CIPHER_CTX_new(); - EVP_CipherInit_ex(&ctx, EVP_aes_128_cbc(), NULL, NULL, NULL, + EVP_CipherInit_ex(ctx, EVP_aes_128_cbc(), NULL, NULL, NULL, do_encrypt); OPENSSL_assert(EVP_CIPHER_CTX_key_length(ctx) == 16); OPENSSL_assert(EVP_CIPHER_CTX_iv_length(ctx) == 16); @@ -455,7 +455,7 @@ int EVP_CIPHER_asn1_to_param(EVP_CIPHER_CTX *c, ASN1_TYPE *type);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptInit_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptInit_ex.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptInit_ex.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptUpdate.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_EncryptUpdate.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_block_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_block_size.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_block_size.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_clear_flags.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_clear_flags.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_copy.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_copy.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_copy_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_copy_ex.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_copy_ex.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_ctrl.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_ctrl.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_free.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_free.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_md.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_md.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_md_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_md_data.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_md_data.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_new.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_new.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_pkey_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_pkey_ctx.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_pkey_ctx.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_reset.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_reset.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_reset.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_flags.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_flags.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_pkey_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_pkey_ctx.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_pkey_ctx.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_update_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_update_fn.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_set_update_fn.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_size.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_size.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_test_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_test_flags.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_test_flags.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_type.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_type.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_update_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_update_fn.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_CTX_update_fn.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_block_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_block_size.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_block_size.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_flags.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_flags.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_dup.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_dup.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_free.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_free.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_app_datasize.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_app_datasize.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_app_datasize.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_cleanup.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_cleanup.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_copy.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_copy.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_ctrl.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_ctrl.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_final.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_final.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_flags.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_flags.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_init.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_init.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_input_blocksize.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_input_blocksize.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_input_blocksize.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_result_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_result_size.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_result_size.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_update.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_get_update.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_app_datasize.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_app_datasize.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_app_datasize.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_cleanup.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_cleanup.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_copy.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_copy.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_ctrl.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_ctrl.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_final.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_final.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_flags.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_flags.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_init.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_init.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_input_blocksize.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_input_blocksize.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_input_blocksize.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_result_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_result_size.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_result_size.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_update.html new file mode 120000 index 00000000..4e78f1b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_meth_set_update.html @@ -0,0 +1 @@ +EVP_MD_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_pkey_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_pkey_type.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_pkey_type.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_size.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_size.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_type.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_MD_type.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenFinal.html new file mode 120000 index 00000000..cfd4e5ec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenFinal.html @@ -0,0 +1 @@ +EVP_OpenInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenInit.html index c1c73618..f0cfa8bb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenInit.html @@ -37,7 +37,7 @@ int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);

    DESCRIPTION -

    The EVP envelope routines are a high level interface to envelope decryption. They decrypt a public key encrypted symmetric key and then decrypt data using it.

    +

    The EVP envelope routines are a high-level interface to envelope decryption. They decrypt a public key encrypted symmetric key and then decrypt data using it.

    EVP_OpenInit() initializes a cipher context ctx for decryption with cipher type. It decrypts the encrypted symmetric key of length ekl bytes passed in the ek parameter using the private key priv. The IV is supplied in the iv parameter.

    @@ -63,7 +63,7 @@ int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);

    COPYRIGHT -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenUpdate.html new file mode 120000 index 00000000..cfd4e5ec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_OpenUpdate.html @@ -0,0 +1 @@ +EVP_OpenInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_add1_hkdf_info.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_add1_hkdf_info.html new file mode 120000 index 00000000..8821d0b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_add1_hkdf_info.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_add1_tls1_prf_seed.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_add1_tls1_prf_seed.html new file mode 120000 index 00000000..ce13cf24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_add1_tls1_prf_seed.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_tls1_prf_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl.html index 5c0108cd..c47a2090 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl.html @@ -188,7 +188,7 @@ int EVP_PKEY_CTX_get1_id_len(EVP_PKEY_CTX *ctx, size_t *id_len);

    The EVP_PKEY_CTX_set_dh_paramgen_type() macro sets the key type for DH parameter generation. Use 0 for PKCS#3 DH and 1 for X9.42 DH. The default is 0.

    -

    The EVP_PKEY_CTX_set_dh_pad() macro sets the DH padding mode. If pad is 1 the shared secret is padded with zeroes up to the size of the DH prime p. If pad is zero (the default) then no padding is performed.

    +

    The EVP_PKEY_CTX_set_dh_pad() macro sets the DH padding mode. If pad is 1 the shared secret is padded with zeros up to the size of the DH prime p. If pad is zero (the default) then no padding is performed.

    EVP_PKEY_CTX_set_dh_nid() sets the DH parameters to values corresponding to nid as defined in RFC7919. The nid parameter must be NID_ffdhe2048, NID_ffdhe3072, NID_ffdhe4096, NID_ffdhe6144, NID_ffdhe8192 or NID_undef to clear the stored value. This macro can be called during parameter or key generation. The nid parameter and the rfc5114 parameter are mutually exclusive.

    @@ -266,7 +266,7 @@ int EVP_PKEY_CTX_get1_id_len(EVP_PKEY_CTX *ctx, size_t *id_len);

    COPYRIGHT

    -

    Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2006-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl_str.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl_str.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl_str.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl_uint64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl_uint64.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_ctrl_uint64.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_dup.html new file mode 120000 index 00000000..0a87b653 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_dup.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_free.html new file mode 120000 index 00000000..0a87b653 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_free.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_dh_kdf_oid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_dh_kdf_oid.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_dh_kdf_oid.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_dh_kdf_ukm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_dh_kdf_ukm.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_dh_kdf_ukm.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_ecdh_kdf_ukm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_ecdh_kdf_ukm.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_ecdh_kdf_ukm.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_rsa_oaep_label.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_rsa_oaep_label.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get0_rsa_oaep_label.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get1_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get1_id.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get1_id.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get1_id_len.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get1_id_len.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get1_id_len.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_app_data.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_app_data.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_cb.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_cb.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_outlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_outlen.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_outlen.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_type.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_dh_kdf_type.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_cofactor_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_cofactor_mode.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_cofactor_mode.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_outlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_outlen.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_outlen.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_type.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_ecdh_kdf_type.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_keygen_info.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_keygen_info.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_keygen_info.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_mgf1_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_mgf1_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_mgf1_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_oaep_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_oaep_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_oaep_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_padding.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_padding.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_padding.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_pss_saltlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_pss_saltlen.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_rsa_pss_saltlen.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_signature_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_signature_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_get_signature_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_hkdf_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_hkdf_mode.html new file mode 120000 index 00000000..8821d0b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_hkdf_mode.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_new.html index 1e985841..d9c51ff8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_new.html @@ -47,7 +47,7 @@ void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx);

    NOTES

    -

    The EVP_PKEY_CTX structure is an opaque public key algorithm context used by the OpenSSL high level public key API. Contexts MUST NOT be shared between threads: that is it is not permissible to use the same context simultaneously in two threads.

    +

    The EVP_PKEY_CTX structure is an opaque public key algorithm context used by the OpenSSL high-level public key API. Contexts MUST NOT be shared between threads: that is it is not permissible to use the same context simultaneously in two threads.

    RETURN VALUES

    @@ -65,7 +65,7 @@ void EVP_PKEY_CTX_free(EVP_PKEY_CTX *ctx);

    COPYRIGHT

    -

    Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2006-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_new_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_new_id.html new file mode 120000 index 00000000..0a87b653 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_new_id.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_dh_kdf_oid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_dh_kdf_oid.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_dh_kdf_oid.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_dh_kdf_ukm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_dh_kdf_ukm.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_dh_kdf_ukm.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_ecdh_kdf_ukm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_ecdh_kdf_ukm.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_ecdh_kdf_ukm.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_rsa_oaep_label.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_rsa_oaep_label.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set0_rsa_oaep_label.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_hkdf_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_hkdf_key.html new file mode 120000 index 00000000..8821d0b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_hkdf_key.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_hkdf_salt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_hkdf_salt.html new file mode 120000 index 00000000..8821d0b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_hkdf_salt.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_id.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_id.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_scrypt_salt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_scrypt_salt.html new file mode 120000 index 00000000..0f72a5c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_scrypt_salt.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_tls1_prf_secret.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_tls1_prf_secret.html new file mode 120000 index 00000000..ce13cf24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set1_tls1_prf_secret.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_tls1_prf_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_app_data.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_app_data.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_cb.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_cb.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_outlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_outlen.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_outlen.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_type.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_kdf_type.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_nid.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_nid.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_pad.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_pad.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_pad.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_generator.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_generator.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_generator.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_prime_len.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_prime_len.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_prime_len.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_subprime_len.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_subprime_len.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_subprime_len.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_type.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_paramgen_type.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_rfc5114.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_rfc5114.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dh_rfc5114.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dhx_rfc5114.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dhx_rfc5114.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dhx_rfc5114.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_bits.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_bits.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_q_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_q_bits.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_dsa_paramgen_q_bits.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ec_param_enc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ec_param_enc.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ec_param_enc.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ec_paramgen_curve_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ec_paramgen_curve_nid.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ec_paramgen_curve_nid.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_cofactor_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_cofactor_mode.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_cofactor_mode.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_outlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_outlen.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_outlen.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_type.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_ecdh_kdf_type.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_mac_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_mac_key.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_mac_key.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_bits.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_bits.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_primes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_primes.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_primes.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_pubexp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_pubexp.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_keygen_pubexp.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_mgf1_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_mgf1_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_mgf1_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_oaep_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_oaep_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_oaep_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_padding.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_padding.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_padding.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md.html new file mode 120000 index 00000000..b006c2ff --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_rsa_pss_keygen_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen.html new file mode 120000 index 00000000..b006c2ff --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_rsa_pss_keygen_md.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_saltlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_saltlen.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_rsa_pss_saltlen.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_maxmem_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_maxmem_bytes.html new file mode 120000 index 00000000..0f72a5c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_maxmem_bytes.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_p.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_p.html new file mode 120000 index 00000000..0f72a5c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_p.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_r.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_r.html new file mode 120000 index 00000000..0f72a5c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_scrypt_r.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_signature_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_signature_md.html new file mode 120000 index 00000000..ce5e26f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_CTX_set_signature_md.html @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_METHOD.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_METHOD.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_METHOD.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_add0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_add0.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_add0.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_add_alias.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_add_alias.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_add_alias.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_copy.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_copy.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_find.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_find.html new file mode 120000 index 00000000..2b3a70f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_find.html @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_find_str.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_find_str.html new file mode 120000 index 00000000..2b3a70f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_find_str.html @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_free.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_free.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_get0.html new file mode 120000 index 00000000..2b3a70f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_get0.html @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_get0_info.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_get0_info.html new file mode 120000 index 00000000..2b3a70f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_get0_info.html @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_new.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_new.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_check.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_check.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_ctrl.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_ctrl.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_free.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_free.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_get_priv_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_get_priv_key.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_get_priv_key.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_get_pub_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_get_pub_key.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_get_pub_key.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_item.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_item.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_item.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_param.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_param.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_param_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_param_check.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_param_check.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_private.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_private.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_private.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_public.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_public.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_public.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_public_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_public_check.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_public_check.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_security_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_security_bits.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_security_bits.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_set_priv_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_set_priv_key.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_set_priv_key.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_set_pub_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_set_pub_key.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_set_pub_key.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_siginf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_siginf.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_asn1_set_siginf.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_DH.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_DH.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_DSA.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_DSA.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_EC_KEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_EC_KEY.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_EC_KEY.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_POLY1305.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_POLY1305.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_POLY1305.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_RSA.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_RSA.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_SIPHASH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_SIPHASH.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_assign_SIPHASH.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_base_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_base_id.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_base_id.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_bits.html new file mode 120000 index 00000000..fc73112f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_bits.html @@ -0,0 +1 @@ +EVP_PKEY_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_check.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_check.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_cmp_parameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_cmp_parameters.html new file mode 120000 index 00000000..9ee805bd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_cmp_parameters.html @@ -0,0 +1 @@ +EVP_PKEY_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_copy_parameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_copy_parameters.html new file mode 120000 index 00000000..9ee805bd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_copy_parameters.html @@ -0,0 +1 @@ +EVP_PKEY_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_decrypt_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_decrypt_init.html new file mode 120000 index 00000000..9b840c61 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_decrypt_init.html @@ -0,0 +1 @@ +EVP_PKEY_decrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_derive_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_derive_init.html new file mode 120000 index 00000000..9f9a1fd8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_derive_init.html @@ -0,0 +1 @@ +EVP_PKEY_derive.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_derive_set_peer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_derive_set_peer.html new file mode 120000 index 00000000..9f9a1fd8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_derive_set_peer.html @@ -0,0 +1 @@ +EVP_PKEY_derive.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_encrypt_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_encrypt_init.html new file mode 120000 index 00000000..cd252871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_encrypt_init.html @@ -0,0 +1 @@ +EVP_PKEY_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_free.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_free.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_gen_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_gen_cb.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_gen_cb.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_DH.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_DH.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_DSA.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_DSA.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_EC_KEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_EC_KEY.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_EC_KEY.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_RSA.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_RSA.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_asn1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_asn1.html new file mode 120000 index 00000000..660161e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_asn1.html @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_engine.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_engine.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_hmac.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_hmac.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_hmac.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_poly1305.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_poly1305.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_poly1305.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_siphash.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_siphash.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get0_siphash.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_DH.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_DH.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_DSA.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_DSA.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_EC_KEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_EC_KEY.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_EC_KEY.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_RSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_RSA.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get1_RSA.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get_raw_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get_raw_private_key.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get_raw_private_key.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get_raw_public_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get_raw_public_key.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_get_raw_public_key.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_id.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_id.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_keygen.html index 671b7a3a..1ce44f44 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_keygen.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_keygen.html @@ -60,7 +60,7 @@ int EVP_PKEY_param_check(EVP_PKEY_CTX *ctx);

    The function EVP_PKEY_set_cb() sets the key or parameter generation callback to cb. The function EVP_PKEY_CTX_get_cb() returns the key or parameter generation callback.

    -

    The function EVP_PKEY_CTX_get_keygen_info() returns parameters associated with the generation operation. If idx is -1 the total number of parameters available is returned. Any non negative value returns the value of that parameter. EVP_PKEY_CTX_gen_keygen_info() with a non-negative value for idx should only be called within the generation callback.

    +

    The function EVP_PKEY_CTX_get_keygen_info() returns parameters associated with the generation operation. If idx is -1 the total number of parameters available is returned. Any non negative value returns the value of that parameter. EVP_PKEY_CTX_gen_keygen_info() with a nonnegative value for idx should only be called within the generation callback.

    If the callback returns 0 then the key generation operation is aborted and an error occurs. This might occur during a time consuming operation where a user clicks on a "cancel" button.

    @@ -169,7 +169,7 @@ static int genpkey_cb(EVP_PKEY_CTX *ctx)

    COPYRIGHT

    -

    Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2006-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_keygen_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_keygen_init.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_keygen_init.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_add0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_add0.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_add0.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_copy.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_copy.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_find.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_find.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_find.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_free.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_free.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get0.html new file mode 120000 index 00000000..58efab31 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get0.html @@ -0,0 +1 @@ +EVP_PKEY_meth_get_count.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get0_info.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get0_info.html new file mode 120000 index 00000000..58efab31 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get0_info.html @@ -0,0 +1 @@ +EVP_PKEY_meth_get_count.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_check.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_check.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_cleanup.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_cleanup.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_copy.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_copy.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_ctrl.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_ctrl.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_decrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_decrypt.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_decrypt.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_derive.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_derive.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_derive.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digest_custom.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digest_custom.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digest_custom.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digestsign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digestsign.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digestsign.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digestverify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digestverify.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_digestverify.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_encrypt.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_encrypt.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_init.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_init.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_keygen.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_keygen.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_param_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_param_check.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_param_check.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_paramgen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_paramgen.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_paramgen.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_public_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_public_check.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_public_check.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_sign.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_sign.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_signctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_signctx.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_signctx.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verify.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verify.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verify_recover.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verify_recover.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verify_recover.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verifyctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verifyctx.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_get_verifyctx.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_remove.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_remove.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_remove.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_check.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_check.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_cleanup.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_cleanup.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_copy.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_copy.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_ctrl.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_ctrl.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_decrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_decrypt.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_decrypt.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_derive.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_derive.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_derive.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digest_custom.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digest_custom.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digest_custom.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digestsign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digestsign.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digestsign.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digestverify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digestverify.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_digestverify.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_encrypt.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_encrypt.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_init.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_init.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_keygen.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_keygen.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_param_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_param_check.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_param_check.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_paramgen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_paramgen.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_paramgen.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_public_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_public_check.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_public_check.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_sign.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_sign.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_signctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_signctx.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_signctx.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verify.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verify.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verify_recover.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verify_recover.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verify_recover.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verifyctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verifyctx.html new file mode 120000 index 00000000..6acd2dc8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_meth_set_verifyctx.html @@ -0,0 +1 @@ +EVP_PKEY_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_missing_parameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_missing_parameters.html new file mode 120000 index 00000000..9ee805bd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_missing_parameters.html @@ -0,0 +1 @@ +EVP_PKEY_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new.html index 6ded6b5e..a134a977 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new.html @@ -60,7 +60,7 @@ int EVP_PKEY_get_raw_public_key(const EVP_PKEY *pkey, unsigned char *pub,

    EVP_PKEY_new_raw_public_key() works in the same way as EVP_PKEY_new_raw_private_key() except that key points to the raw public key data. The EVP_PKEY structure will be initialised without any private key information. Algorithm types that support raw public keys are EVP_PKEY_X25519, EVP_PKEY_ED25519, EVP_PKEY_X448 or EVP_PKEY_ED448.

    -

    EVP_PKEY_new_CMAC_key() works in the same way as EVP_PKEY_new_raw_private_key() except it is only for the EVP_PKEY_CMAC algorithm type. In addition to the raw private key data, it also takes a cipher algorithm to be used during creation of a CMAC in the cipher argument.

    +

    EVP_PKEY_new_CMAC_key() works in the same way as EVP_PKEY_new_raw_private_key() except it is only for the EVP_PKEY_CMAC algorithm type. In addition to the raw private key data, it also takes a cipher algorithm to be used during creation of a CMAC in the cipher argument. The cipher should be a standard encryption only cipher. For example AEAD and XTS ciphers should not be used.

    EVP_PKEY_new_mac_key() works in the same way as EVP_PKEY_new_raw_private_key(). New applications should use EVP_PKEY_new_raw_private_key() instead.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_CMAC_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_CMAC_key.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_CMAC_key.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_mac_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_mac_key.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_mac_key.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_raw_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_raw_private_key.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_raw_private_key.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_raw_public_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_raw_public_key.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_new_raw_public_key.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_param_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_param_check.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_param_check.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_paramgen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_paramgen.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_paramgen.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_paramgen_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_paramgen_init.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_paramgen_init.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_print_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_print_params.html new file mode 120000 index 00000000..3480a4ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_print_params.html @@ -0,0 +1 @@ +EVP_PKEY_print_private.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_print_public.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_print_public.html new file mode 120000 index 00000000..3480a4ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_print_public.html @@ -0,0 +1 @@ +EVP_PKEY_print_private.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_public_check.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_public_check.html new file mode 120000 index 00000000..e3d9ece2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_public_check.html @@ -0,0 +1 @@ +EVP_PKEY_keygen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_security_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_security_bits.html new file mode 120000 index 00000000..fc73112f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_security_bits.html @@ -0,0 +1 @@ +EVP_PKEY_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_DH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_DH.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_DH.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_DSA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_DSA.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_DSA.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_EC_KEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_EC_KEY.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_EC_KEY.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_engine.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set1_engine.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set_alias_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set_alias_type.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_set_alias_type.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_sign_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_sign_init.html new file mode 120000 index 00000000..42f7b6ac --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_sign_init.html @@ -0,0 +1 @@ +EVP_PKEY_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_type.html new file mode 120000 index 00000000..146ea9b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_type.html @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_up_ref.html new file mode 120000 index 00000000..4adda42c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_up_ref.html @@ -0,0 +1 @@ +EVP_PKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_verify_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_verify_init.html new file mode 120000 index 00000000..31b94d05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_verify_init.html @@ -0,0 +1 @@ +EVP_PKEY_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_verify_recover_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_verify_recover_init.html new file mode 120000 index 00000000..4b56b849 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_PKEY_verify_recover_init.html @@ -0,0 +1 @@ +EVP_PKEY_verify_recover.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealFinal.html new file mode 120000 index 00000000..55547fbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealFinal.html @@ -0,0 +1 @@ +EVP_SealInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealInit.html index 670bea7b..c7d88d91 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealInit.html @@ -38,7 +38,7 @@ int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);

    DESCRIPTION -

    The EVP envelope routines are a high level interface to envelope encryption. They generate a random key and IV (if required) then "envelope" it by using public key encryption. Data can then be encrypted using this key.

    +

    The EVP envelope routines are a high-level interface to envelope encryption. They generate a random key and IV (if required) then "envelope" it by using public key encryption. Data can then be encrypted using this key.

    EVP_SealInit() initializes a cipher context ctx for encryption with cipher type using a random secret key and IV. type is normally supplied by a function such as EVP_aes_256_cbc(). The secret key is encrypted using one or more public keys, this allows the same encrypted data to be decrypted using any of the corresponding private keys. ek is an array of buffers where the public key encrypted secret key will be written, each buffer must contain enough room for the corresponding encrypted key: that is ek[i] must have room for EVP_PKEY_size(pubk[i]) bytes. The actual size of each encrypted secret key is written to the array ekl. pubk is an array of npubk public keys.

    @@ -70,7 +70,7 @@ int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl);

    COPYRIGHT -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealUpdate.html new file mode 120000 index 00000000..55547fbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SealUpdate.html @@ -0,0 +1 @@ +EVP_SealInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignFinal.html new file mode 120000 index 00000000..8074b72f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignFinal.html @@ -0,0 +1 @@ +EVP_SignInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignInit.html index 6821f115..25ba322e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignInit.html @@ -38,7 +38,7 @@ void EVP_SignInit(EVP_MD_CTX *ctx, const EVP_MD *type);

    DESCRIPTION

    -

    The EVP signature routines are a high level interface to digital signatures.

    +

    The EVP signature routines are a high-level interface to digital signatures.

    EVP_SignInit_ex() sets up signing context ctx to use digest type from ENGINE impl. ctx must be created with EVP_MD_CTX_new() before calling this function.

    @@ -56,7 +56,7 @@ void EVP_SignInit(EVP_MD_CTX *ctx, const EVP_MD *type);

    NOTES

    -

    The EVP interface to digital signatures should almost always be used in preference to the low level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    +

    The EVP interface to digital signatures should almost always be used in preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    When signing with DSA private keys the random number generator must be seeded. If the automatic seeding or reseeding of the OpenSSL CSPRNG fails due to external circumstances (see RAND(7)), the operation will fail. This requirement does not hold for RSA signatures.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignInit_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignInit_ex.html new file mode 120000 index 00000000..8074b72f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignInit_ex.html @@ -0,0 +1 @@ +EVP_SignInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignUpdate.html new file mode 120000 index 00000000..8074b72f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_SignUpdate.html @@ -0,0 +1 @@ +EVP_SignInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyFinal.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyFinal.html new file mode 120000 index 00000000..02a9feba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyFinal.html @@ -0,0 +1 @@ +EVP_VerifyInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyInit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyInit.html index 8a0d589f..12e72b91 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyInit.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyInit.html @@ -39,7 +39,7 @@ int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type);

    DESCRIPTION

    -

    The EVP signature verification routines are a high level interface to digital signatures.

    +

    The EVP signature verification routines are a high-level interface to digital signatures.

    EVP_VerifyInit_ex() sets up verification context ctx to use digest type from ENGINE impl. ctx must be created by calling EVP_MD_CTX_new() before calling this function.

    @@ -59,7 +59,7 @@ int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type);

    NOTES

    -

    The EVP interface to digital signatures should almost always be used in preference to the low level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    +

    The EVP interface to digital signatures should almost always be used in preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible.

    The call to EVP_VerifyFinal() internally finalizes a copy of the digest context. This means that calls to EVP_VerifyUpdate() and EVP_VerifyFinal() can be called later to digest and verify additional data.

    @@ -81,7 +81,7 @@ int EVP_VerifyInit(EVP_MD_CTX *ctx, const EVP_MD *type);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyInit_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyInit_ex.html new file mode 120000 index 00000000..02a9feba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyInit_ex.html @@ -0,0 +1 @@ +EVP_VerifyInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyUpdate.html new file mode 120000 index 00000000..02a9feba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_VerifyUpdate.html @@ -0,0 +1 @@ +EVP_VerifyInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc_hmac_sha1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc_hmac_sha1.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc_hmac_sha1.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc_hmac_sha256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc_hmac_sha256.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cbc_hmac_sha256.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ccm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ccm.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ccm.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb1.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb1.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb128.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb128.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb8.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_cfb8.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ctr.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ctr.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ecb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ecb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_gcm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_gcm.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_gcm.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ocb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ocb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ocb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ofb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_ofb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_wrap.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_wrap.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_wrap.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_wrap_pad.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_wrap_pad.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_wrap_pad.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_xts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_xts.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_128_xts.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cbc.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cbc.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ccm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ccm.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ccm.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb1.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb1.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb128.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb128.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb8.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_cfb8.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ctr.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ctr.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ecb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ecb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_gcm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_gcm.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_gcm.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ocb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ocb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ocb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ofb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_ofb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_wrap.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_wrap.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_wrap.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_wrap_pad.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_wrap_pad.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_192_wrap_pad.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc_hmac_sha1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc_hmac_sha1.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc_hmac_sha1.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc_hmac_sha256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc_hmac_sha256.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cbc_hmac_sha256.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ccm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ccm.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ccm.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb1.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb1.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb128.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb128.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb8.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_cfb8.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ctr.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ctr.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ecb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ecb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_gcm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_gcm.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_gcm.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ocb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ocb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ocb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ofb.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_ofb.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_wrap.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_wrap.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_wrap.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_wrap_pad.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_wrap_pad.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_wrap_pad.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_xts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_xts.html new file mode 120000 index 00000000..186d8e64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aes_256_xts.html @@ -0,0 +1 @@ +EVP_aes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cbc.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cbc.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ccm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ccm.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ccm.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb1.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb1.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb128.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb128.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb8.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_cfb8.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ctr.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ctr.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ecb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ecb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_gcm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_gcm.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_gcm.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ofb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_128_ofb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cbc.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cbc.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ccm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ccm.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ccm.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb1.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb1.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb128.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb128.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb8.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_cfb8.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ctr.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ctr.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ecb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ecb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_gcm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_gcm.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_gcm.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ofb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_192_ofb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cbc.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cbc.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ccm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ccm.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ccm.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb1.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb1.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb128.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb128.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb8.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_cfb8.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ctr.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ctr.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ecb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ecb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_gcm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_gcm.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_gcm.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ofb.html new file mode 120000 index 00000000..65528848 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_aria_256_ofb.html @@ -0,0 +1 @@ +EVP_aria.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_cfb.html new file mode 120000 index 00000000..1d4d867d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_cfb.html @@ -0,0 +1 @@ +EVP_bf_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_cfb64.html new file mode 120000 index 00000000..1d4d867d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_cfb64.html @@ -0,0 +1 @@ +EVP_bf_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_ecb.html new file mode 120000 index 00000000..1d4d867d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_ecb.html @@ -0,0 +1 @@ +EVP_bf_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_ofb.html new file mode 120000 index 00000000..1d4d867d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_bf_ofb.html @@ -0,0 +1 @@ +EVP_bf_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_blake2s256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_blake2s256.html new file mode 120000 index 00000000..950eb338 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_blake2s256.html @@ -0,0 +1 @@ +EVP_blake2b512.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cbc.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cbc.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb1.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb1.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb128.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb128.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb8.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_cfb8.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ctr.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ctr.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ecb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ecb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ofb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_128_ofb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cbc.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cbc.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb1.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb1.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb128.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb128.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb8.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_cfb8.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ctr.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ctr.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ecb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ecb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ofb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_192_ofb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cbc.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cbc.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb1.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb1.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb128.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb128.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb8.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_cfb8.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ctr.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ctr.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ecb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ecb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ofb.html new file mode 120000 index 00000000..fe841ac5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_camellia_256_ofb.html @@ -0,0 +1 @@ +EVP_camellia.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_cfb.html new file mode 120000 index 00000000..1bb7648e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_cfb.html @@ -0,0 +1 @@ +EVP_cast5_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_cfb64.html new file mode 120000 index 00000000..1bb7648e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_cfb64.html @@ -0,0 +1 @@ +EVP_cast5_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_ecb.html new file mode 120000 index 00000000..1bb7648e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_ecb.html @@ -0,0 +1 @@ +EVP_cast5_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_ofb.html new file mode 120000 index 00000000..1bb7648e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cast5_ofb.html @@ -0,0 +1 @@ +EVP_cast5_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_chacha20_poly1305.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_chacha20_poly1305.html new file mode 120000 index 00000000..f30e424c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_chacha20_poly1305.html @@ -0,0 +1 @@ +EVP_chacha20.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cleanup.html new file mode 120000 index 00000000..35718c12 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_cleanup.html @@ -0,0 +1 @@ +OpenSSL_add_all_algorithms.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cbc.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cbc.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb1.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb1.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb64.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb64.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb8.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_cfb8.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ecb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ecb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cbc.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cbc.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb1.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb1.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb64.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb64.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb8.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_cfb8.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_ecb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_ecb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_ofb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_ofb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_wrap.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_wrap.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede3_wrap.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cbc.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cbc.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cfb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cfb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cfb64.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_cfb64.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_ecb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_ecb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_ofb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ede_ofb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ofb.html new file mode 120000 index 00000000..3dfafa43 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_des_ofb.html @@ -0,0 +1 @@ +EVP_des.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_enc_null.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_enc_null.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_enc_null.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbyname.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbyname.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbyname.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbynid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbynid.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbynid.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbyobj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbyobj.html new file mode 120000 index 00000000..05f553ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_cipherbyobj.html @@ -0,0 +1 @@ +EVP_EncryptInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbyname.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbyname.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbyname.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbynid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbynid.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbynid.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbyobj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbyobj.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_get_digestbyobj.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_cfb.html new file mode 120000 index 00000000..6deef00d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_cfb.html @@ -0,0 +1 @@ +EVP_idea_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_cfb64.html new file mode 120000 index 00000000..6deef00d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_cfb64.html @@ -0,0 +1 @@ +EVP_idea_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_ecb.html new file mode 120000 index 00000000..6deef00d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_ecb.html @@ -0,0 +1 @@ +EVP_idea_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_ofb.html new file mode 120000 index 00000000..6deef00d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_idea_ofb.html @@ -0,0 +1 @@ +EVP_idea_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_md5_sha1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_md5_sha1.html new file mode 120000 index 00000000..0549e3e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_md5_sha1.html @@ -0,0 +1 @@ +EVP_md5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_md_null.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_md_null.html new file mode 120000 index 00000000..41e2c970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_md_null.html @@ -0,0 +1 @@ +EVP_DigestInit.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_40_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_40_cbc.html new file mode 120000 index 00000000..a37807f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_40_cbc.html @@ -0,0 +1 @@ +EVP_rc2_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_64_cbc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_64_cbc.html new file mode 120000 index 00000000..a37807f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_64_cbc.html @@ -0,0 +1 @@ +EVP_rc2_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_cfb.html new file mode 120000 index 00000000..a37807f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_cfb.html @@ -0,0 +1 @@ +EVP_rc2_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_cfb64.html new file mode 120000 index 00000000..a37807f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_cfb64.html @@ -0,0 +1 @@ +EVP_rc2_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_ecb.html new file mode 120000 index 00000000..a37807f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_ecb.html @@ -0,0 +1 @@ +EVP_rc2_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_ofb.html new file mode 120000 index 00000000..a37807f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc2_ofb.html @@ -0,0 +1 @@ +EVP_rc2_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc4_40.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc4_40.html new file mode 120000 index 00000000..274f373b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc4_40.html @@ -0,0 +1 @@ +EVP_rc4.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc4_hmac_md5.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc4_hmac_md5.html new file mode 120000 index 00000000..274f373b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc4_hmac_md5.html @@ -0,0 +1 @@ +EVP_rc4.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_cfb.html new file mode 120000 index 00000000..9da730ac --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_cfb.html @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_cfb64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_cfb64.html new file mode 120000 index 00000000..9da730ac --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_cfb64.html @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_ecb.html new file mode 120000 index 00000000..9da730ac --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_ecb.html @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_ofb.html new file mode 120000 index 00000000..9da730ac --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_rc5_32_12_16_ofb.html @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_cfb.html new file mode 120000 index 00000000..5ee14c2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_cfb.html @@ -0,0 +1 @@ +EVP_seed_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_cfb128.html new file mode 120000 index 00000000..5ee14c2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_cfb128.html @@ -0,0 +1 @@ +EVP_seed_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_ecb.html new file mode 120000 index 00000000..5ee14c2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_ecb.html @@ -0,0 +1 @@ +EVP_seed_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_ofb.html new file mode 120000 index 00000000..5ee14c2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_seed_ofb.html @@ -0,0 +1 @@ +EVP_seed_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha256.html new file mode 120000 index 00000000..310e8991 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha256.html @@ -0,0 +1 @@ +EVP_sha224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha384.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha384.html new file mode 120000 index 00000000..310e8991 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha384.html @@ -0,0 +1 @@ +EVP_sha224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_256.html new file mode 120000 index 00000000..42dac407 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_256.html @@ -0,0 +1 @@ +EVP_sha3_224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_384.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_384.html new file mode 120000 index 00000000..42dac407 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_384.html @@ -0,0 +1 @@ +EVP_sha3_224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_512.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_512.html new file mode 120000 index 00000000..42dac407 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha3_512.html @@ -0,0 +1 @@ +EVP_sha3_224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512.html new file mode 120000 index 00000000..310e8991 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512.html @@ -0,0 +1 @@ +EVP_sha224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512_224.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512_224.html new file mode 120000 index 00000000..310e8991 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512_224.html @@ -0,0 +1 @@ +EVP_sha224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512_256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512_256.html new file mode 120000 index 00000000..310e8991 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sha512_256.html @@ -0,0 +1 @@ +EVP_sha224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_shake128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_shake128.html new file mode 120000 index 00000000..42dac407 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_shake128.html @@ -0,0 +1 @@ +EVP_sha3_224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_shake256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_shake256.html new file mode 120000 index 00000000..42dac407 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_shake256.html @@ -0,0 +1 @@ +EVP_sha3_224.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_cfb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_cfb.html new file mode 120000 index 00000000..6f2402f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_cfb.html @@ -0,0 +1 @@ +EVP_sm4_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_cfb128.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_cfb128.html new file mode 120000 index 00000000..6f2402f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_cfb128.html @@ -0,0 +1 @@ +EVP_sm4_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ctr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ctr.html new file mode 120000 index 00000000..6f2402f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ctr.html @@ -0,0 +1 @@ +EVP_sm4_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ecb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ecb.html new file mode 120000 index 00000000..6f2402f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ecb.html @@ -0,0 +1 @@ +EVP_sm4_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ofb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ofb.html new file mode 120000 index 00000000..6f2402f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EVP_sm4_ofb.html @@ -0,0 +1 @@ +EVP_sm4_cbc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EXTENDED_KEY_USAGE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EXTENDED_KEY_USAGE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EXTENDED_KEY_USAGE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EXTENDED_KEY_USAGE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EXTENDED_KEY_USAGE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/EXTENDED_KEY_USAGE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAMES_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAMES_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAMES_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAMES_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAMES_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAMES_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_NAME_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_SUBTREE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_SUBTREE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_SUBTREE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_SUBTREE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_SUBTREE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GENERAL_SUBTREE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GEN_SESSION_CB.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GEN_SESSION_CB.html new file mode 120000 index 00000000..6c5144d5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/GEN_SESSION_CB.html @@ -0,0 +1 @@ +SSL_CTX_set_generate_session_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC.html index 528fd531..500ca430 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC.html @@ -31,7 +31,7 @@
    #include <openssl/hmac.h>
     
     unsigned char *HMAC(const EVP_MD *evp_md, const void *key,
    -                    int key_len, const unsigned char *d, int n,
    +                    int key_len, const unsigned char *d, size_t n,
                         unsigned char *md, unsigned int *md_len);
     
     HMAC_CTX *HMAC_CTX_new(void);
    @@ -39,7 +39,7 @@ int HMAC_CTX_reset(HMAC_CTX *ctx);
     
     int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int key_len,
                      const EVP_MD *md, ENGINE *impl);
    -int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, int len);
    +int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len);
     int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);
     
     void HMAC_CTX_free(HMAC_CTX *ctx);
    @@ -69,7 +69,7 @@ int HMAC_Init(HMAC_CTX *ctx, const void *key, int key_len,
     
     

    HMAC_CTX_new() creates a new HMAC_CTX in heap memory.

    -

    HMAC_CTX_reset() zeroes an existing HMAC_CTX and associated resources, making it suitable for new computations as if it was newly created with HMAC_CTX_new().

    +

    HMAC_CTX_reset() zeros an existing HMAC_CTX and associated resources, making it suitable for new computations as if it was newly created with HMAC_CTX_new().

    HMAC_CTX_free() erases the key and other data from the HMAC_CTX, releases any associated resources and finally frees the HMAC_CTX itself.

    @@ -125,7 +125,7 @@ int HMAC_Init(HMAC_CTX *ctx, const void *key, int key_len,

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_copy.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_copy.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_free.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_free.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_get_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_get_md.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_get_md.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_new.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_new.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_reset.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_reset.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_reset.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_set_flags.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_CTX_set_flags.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Final.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Final.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Init.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Init.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Init_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Init_ex.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Init_ex.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Update.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_Update.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_size.html new file mode 120000 index 00000000..28ebfd17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/HMAC_size.html @@ -0,0 +1 @@ +HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_ASN1_FUNCTIONS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_ASN1_FUNCTIONS.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_ASN1_FUNCTIONS.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_LHASH_COMP_FN.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_LHASH_COMP_FN.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_LHASH_COMP_FN.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_LHASH_HASH_FN.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_LHASH_HASH_FN.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IMPLEMENT_LHASH_HASH_FN.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressChoice_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressChoice_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressChoice_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressChoice_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressChoice_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressChoice_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressFamily_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressFamily_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressFamily_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressFamily_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressFamily_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressFamily_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressOrRange_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressOrRange_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressOrRange_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressOrRange_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressOrRange_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressOrRange_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressRange_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressRange_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressRange_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressRange_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressRange_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/IPAddressRange_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ISSUING_DIST_POINT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ISSUING_DIST_POINT_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ISSUING_DIST_POINT_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ISSUING_DIST_POINT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ISSUING_DIST_POINT_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ISSUING_DIST_POINT_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/LHASH.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/LHASH.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/LHASH.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/LHASH_DOALL_ARG_FN_TYPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/LHASH_DOALL_ARG_FN_TYPE.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/LHASH_DOALL_ARG_FN_TYPE.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Final.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Final.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Init.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Init.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Update.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD2_Update.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Final.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Final.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Init.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Init.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Update.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD4_Update.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Final.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Final.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Init.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Init.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Update.html new file mode 120000 index 00000000..6b46625e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MD5_Update.html @@ -0,0 +1 @@ +MD5.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2.html new file mode 120000 index 00000000..820a574f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2.html @@ -0,0 +1 @@ +MDC2_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2_Final.html new file mode 120000 index 00000000..820a574f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2_Final.html @@ -0,0 +1 @@ +MDC2_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2_Update.html new file mode 120000 index 00000000..820a574f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/MDC2_Update.html @@ -0,0 +1 @@ +MDC2_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAME_CONSTRAINTS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAME_CONSTRAINTS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAME_CONSTRAINTS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAME_CONSTRAINTS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAME_CONSTRAINTS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAME_CONSTRAINTS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityId.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityId.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityId.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityText.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityText.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityText.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityURL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityURL.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_get0_authorityURL.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityId.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityId.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityId.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityText.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityText.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityText.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityURL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityURL.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NAMING_AUTHORITY_set0_authorityURL.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_CERT_SEQUENCE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_CERT_SEQUENCE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_CERT_SEQUENCE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_CERT_SEQUENCE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_CERT_SEQUENCE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_CERT_SEQUENCE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKAC_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKAC_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKAC_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKAC_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKAC_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKAC_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKI_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKI_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKI_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKI_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKI_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NETSCAPE_SPKI_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NOTICEREF_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NOTICEREF_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NOTICEREF_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NOTICEREF_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NOTICEREF_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/NOTICEREF_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_cleanup.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_cleanup.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_cmp.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_cmp.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_create.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_create.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_create.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_dup.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_dup.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_get0_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_get0_data.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_get0_data.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_length.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_length.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_ln2nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_ln2nid.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_ln2nid.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2ln.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2ln.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2ln.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2obj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2obj.html index 3b60824d..821a6108 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2obj.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2obj.html @@ -18,7 +18,6 @@
  • NOTES
  • RETURN VALUES
  • EXAMPLES
  • -
  • BUGS
  • SEE ALSO
  • HISTORY
  • COPYRIGHT
  • @@ -63,29 +62,29 @@ void OBJ_cleanup(void)

    DESCRIPTION

    -

    The ASN1 object utility functions process ASN1_OBJECT structures which are a representation of the ASN1 OBJECT IDENTIFIER (OID) type. For convenience, OIDs are usually represented in source code as numeric identifiers, or NIDs. OpenSSL has an internal table of OIDs that are generated when the library is built, and their corresponding NIDs are available as defined constants. For the functions below, application code should treat all returned values -- OIDs, NIDs, or names -- as constants.

    +

    The ASN1 object utility functions process ASN1_OBJECT structures which are a representation of the ASN1 OBJECT IDENTIFIER (OID) type. For convenience, OIDs are usually represented in source code as numeric identifiers, or NIDs. OpenSSL has an internal table of OIDs that are generated when the library is built, and their corresponding NIDs are available as defined constants. For the functions below, application code should treat all returned values -- OIDs, NIDs, or names -- as constants.

    -

    OBJ_nid2obj(), OBJ_nid2ln() and OBJ_nid2sn() convert the NID n to an ASN1_OBJECT structure, its long name and its short name respectively, or NULL if an error occurred.

    +

    OBJ_nid2obj(), OBJ_nid2ln() and OBJ_nid2sn() convert the NID n to an ASN1_OBJECT structure, its long name and its short name respectively, or NULL if an error occurred.

    -

    OBJ_obj2nid(), OBJ_ln2nid(), OBJ_sn2nid() return the corresponding NID for the object o, the long name <ln> or the short name <sn> respectively or NID_undef if an error occurred.

    +

    OBJ_obj2nid(), OBJ_ln2nid(), OBJ_sn2nid() return the corresponding NID for the object o, the long name <ln> or the short name <sn> respectively or NID_undef if an error occurred.

    -

    OBJ_txt2nid() returns NID corresponding to text string <s>. s can be a long name, a short name or the numerical representation of an object.

    +

    OBJ_txt2nid() returns NID corresponding to text string s. s can be a long name, a short name or the numerical representation of an object.

    -

    OBJ_txt2obj() converts the text string s into an ASN1_OBJECT structure. If no_name is 0 then long names and short names will be interpreted as well as numerical forms. If no_name is 1 only the numerical form is acceptable.

    +

    OBJ_txt2obj() converts the text string s into an ASN1_OBJECT structure. If no_name is 0 then long names and short names will be interpreted as well as numerical forms. If no_name is 1 only the numerical form is acceptable.

    -

    OBJ_obj2txt() converts the ASN1_OBJECT a into a textual representation. The representation is written as a null terminated string to buf at most buf_len bytes are written, truncating the result if necessary. The total amount of space required is returned. If no_name is 0 then if the object has a long or short name then that will be used, otherwise the numerical form will be used. If no_name is 1 then the numerical form will always be used.

    +

    OBJ_obj2txt() converts the ASN1_OBJECT a into a textual representation. Unless buf is NULL, the representation is written as a NUL-terminated string to buf, where at most buf_len bytes are written, truncating the result if necessary. In any case it returns the total string length, excluding the NUL character, required for non-truncated representation, or -1 on error. If no_name is 0 then if the object has a long or short name then that will be used, otherwise the numerical form will be used. If no_name is 1 then the numerical form will always be used.

    -

    i2t_ASN1_OBJECT() is the same as OBJ_obj2txt() with the no_name set to zero.

    +

    i2t_ASN1_OBJECT() is the same as OBJ_obj2txt() with the no_name set to zero.

    -

    OBJ_cmp() compares a to b. If the two are identical 0 is returned.

    +

    OBJ_cmp() compares a to b. If the two are identical 0 is returned.

    -

    OBJ_dup() returns a copy of o.

    +

    OBJ_dup() returns a copy of o.

    -

    OBJ_create() adds a new object to the internal table. oid is the numerical form of the object, sn the short name and ln the long name. A new NID is returned for the created object in case of success and NID_undef in case of failure.

    +

    OBJ_create() adds a new object to the internal table. oid is the numerical form of the object, sn the short name and ln the long name. A new NID is returned for the created object in case of success and NID_undef in case of failure.

    -

    OBJ_length() returns the size of the content octets of obj.

    +

    OBJ_length() returns the size of the content octets of obj.

    -

    OBJ_get0_data() returns a pointer to the content octets of obj. The returned pointer is an internal pointer which must not be freed.

    +

    OBJ_get0_data() returns a pointer to the content octets of obj. The returned pointer is an internal pointer which must not be freed.

    OBJ_cleanup() releases any resources allocated by creating new objects.

    @@ -119,6 +118,10 @@ void OBJ_cleanup(void)

    OBJ_obj2nid(), OBJ_ln2nid(), OBJ_sn2nid() and OBJ_txt2nid() return a NID or NID_undef on error.

    +

    OBJ_add_sigid() returns 1 on success or 0 on error.

    + +

    i2t_ASN1_OBJECT() an OBJ_obj2txt() return -1 on error. On success, they return the length of the string written to buf if buf is not NULL and buf_len is big enough, otherwise the total string length. Note that this does not count the trailing NUL character.

    +

    EXAMPLES

    Create an object for commonName:

    @@ -139,10 +142,6 @@ ASN1_OBJECT *obj = OBJ_nid2obj(new_nid);
    obj = OBJ_txt2obj("1.2.3.4", 1);
    -

    BUGS

    - -

    OBJ_obj2txt() is awkward and messy to use: it doesn't follow the convention of other OpenSSL functions where the buffer can be set to NULL to determine the amount of data that should be written. Instead buf must point to a valid buffer and buf_len should be set to a positive value. A buffer length of 80 should be more than enough to handle any OID encountered in practice.

    -

    SEE ALSO

    ERR_get_error(3)

    @@ -153,7 +152,7 @@ ASN1_OBJECT *obj = OBJ_nid2obj(new_nid);

    COPYRIGHT

    -

    Copyright 2002-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2002-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2sn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2sn.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_nid2sn.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_obj2nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_obj2nid.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_obj2nid.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_obj2txt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_obj2txt.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_obj2txt.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_sn2nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_sn2nid.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_sn2nid.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_txt2nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_txt2nid.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_txt2nid.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_txt2obj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_txt2obj.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OBJ_txt2obj.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_BASICRESP_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_BASICRESP_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_BASICRESP_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_BASICRESP_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_BASICRESP_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_BASICRESP_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_free.html new file mode 120000 index 00000000..ba01feb2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_free.html @@ -0,0 +1 @@ +OCSP_cert_to_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTID_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTSTATUS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTSTATUS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTSTATUS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTSTATUS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTSTATUS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CERTSTATUS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CRLID_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CRLID_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CRLID_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CRLID_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CRLID_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_CRLID_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_ONEREQ_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_ONEREQ_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_ONEREQ_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_ONEREQ_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_ONEREQ_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_ONEREQ_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQINFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQINFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQINFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQINFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQINFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQINFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQUEST_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQUEST_free.html new file mode 120000 index 00000000..2c2ce6b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQUEST_free.html @@ -0,0 +1 @@ +OCSP_REQUEST_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_add1_header.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_add1_header.html new file mode 120000 index 00000000..46db3983 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_add1_header.html @@ -0,0 +1 @@ +OCSP_sendreq_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_free.html new file mode 120000 index 00000000..46db3983 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_free.html @@ -0,0 +1 @@ +OCSP_sendreq_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_i2d.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_i2d.html new file mode 120000 index 00000000..46db3983 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_i2d.html @@ -0,0 +1 @@ +OCSP_sendreq_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_set1_req.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_set1_req.html new file mode 120000 index 00000000..46db3983 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REQ_CTX_set1_req.html @@ -0,0 +1 @@ +OCSP_sendreq_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPBYTES_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPBYTES_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPBYTES_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPBYTES_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPBYTES_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPBYTES_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPDATA_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPDATA_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPDATA_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPDATA_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPDATA_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPDATA_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_match.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_match.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_match.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_set_by_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_set_by_key.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_set_by_key.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_set_by_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_set_by_name.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPID_set_by_name.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPONSE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPONSE_free.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPONSE_free.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPONSE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPONSE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_RESPONSE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REVOKEDINFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REVOKEDINFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REVOKEDINFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REVOKEDINFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REVOKEDINFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_REVOKEDINFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SERVICELOC_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SERVICELOC_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SERVICELOC_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SERVICELOC_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SERVICELOC_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SERVICELOC_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SIGNATURE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SIGNATURE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SIGNATURE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SIGNATURE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SIGNATURE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SIGNATURE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SINGLERESP_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SINGLERESP_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SINGLERESP_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SINGLERESP_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SINGLERESP_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_SINGLERESP_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_add1_nonce.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_add1_nonce.html new file mode 120000 index 00000000..d9d613c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_add1_nonce.html @@ -0,0 +1 @@ +OCSP_request_add1_nonce.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_sign.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_sign.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_sign_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_sign_ctx.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_sign_ctx.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_verify.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_basic_verify.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_cert_id_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_cert_id_new.html new file mode 120000 index 00000000..ba01feb2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_cert_id_new.html @@ -0,0 +1 @@ +OCSP_cert_to_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_cert_to_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_cert_to_id.html index e7d3fa00..edb8f63b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_cert_to_id.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_cert_to_id.html @@ -64,7 +64,7 @@ int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd,

    OCSP_cert_to_id() and OCSP_cert_id_new() return either a pointer to a valid OCSP_CERTID structure or NULL if an error occurred.

    -

    OCSP_id_cmp() and OCSP_id_issuer_cmp() returns zero for a match and non-zero otherwise.

    +

    OCSP_id_cmp() and OCSP_id_issuer_cmp() returns zero for a match and nonzero otherwise.

    OCSP_CERTID_free() does not return a value.

    @@ -82,7 +82,7 @@ int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd,

    COPYRIGHT

    -

    Copyright 2015-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_check_nonce.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_check_nonce.html new file mode 120000 index 00000000..d9d613c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_check_nonce.html @@ -0,0 +1 @@ +OCSP_request_add1_nonce.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_check_validity.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_check_validity.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_check_validity.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_copy_nonce.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_copy_nonce.html new file mode 120000 index 00000000..d9d613c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_copy_nonce.html @@ -0,0 +1 @@ +OCSP_request_add1_nonce.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_cmp.html new file mode 120000 index 00000000..ba01feb2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_cmp.html @@ -0,0 +1 @@ +OCSP_cert_to_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_get0_info.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_get0_info.html new file mode 120000 index 00000000..ba01feb2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_get0_info.html @@ -0,0 +1 @@ +OCSP_cert_to_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_issuer_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_issuer_cmp.html new file mode 120000 index 00000000..ba01feb2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_id_issuer_cmp.html @@ -0,0 +1 @@ +OCSP_cert_to_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add0_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add0_id.html new file mode 120000 index 00000000..2c2ce6b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add0_id.html @@ -0,0 +1 @@ +OCSP_REQUEST_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add1_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add1_cert.html new file mode 120000 index 00000000..2c2ce6b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add1_cert.html @@ -0,0 +1 @@ +OCSP_REQUEST_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add1_nonce.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add1_nonce.html index 1fb5c504..0c489fa1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add1_nonce.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_add1_nonce.html @@ -62,7 +62,7 @@ int OCSP_check_nonce(OCSP_REQUEST *req, OCSP_BASICRESP *resp);

    Some responders cache OCSP responses and do not sign each response for performance reasons. As a result they do not support nonces.

    -

    The return values of OCSP_check_nonce() can be checked to cover each case. A positive return value effectively indicates success: nonces are both present and match, both absent or present in the response only. A non-zero return additionally covers the case where the nonce is present in the request only: this will happen if the responder doesn't support nonces. A zero return value indicates present and mismatched nonces: this should be treated as an error condition.

    +

    The return values of OCSP_check_nonce() can be checked to cover each case. A positive return value effectively indicates success: nonces are both present and match, both absent or present in the response only. A nonzero return additionally covers the case where the nonce is present in the request only: this will happen if the responder doesn't support nonces. A zero return value indicates present and mismatched nonces: this should be treated as an error condition.

    SEE ALSO

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_onereq_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_onereq_count.html new file mode 120000 index 00000000..2c2ce6b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_onereq_count.html @@ -0,0 +1 @@ +OCSP_REQUEST_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_onereq_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_onereq_get0.html new file mode 120000 index 00000000..2c2ce6b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_onereq_get0.html @@ -0,0 +1 @@ +OCSP_REQUEST_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_sign.html new file mode 120000 index 00000000..2c2ce6b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_request_sign.html @@ -0,0 +1 @@ +OCSP_REQUEST_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_count.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_count.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_find.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_find.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_find.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_find_status.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_find_status.html index cd47020d..2320e9c0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_find_status.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_find_status.html @@ -94,7 +94,7 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,

    OCSP_resp_get0_id() gets the responder id of bs. If the responder ID is a name then <*pname> is set to the name and *pid is set to NULL. If the responder ID is by key ID then *pid is set to the key ID and *pname is set to NULL. OCSP_resp_get1_id() leaves ownership of *pid and *pname with the caller, who is responsible for freeing them. Both functions return 1 in case of success and 0 in case of failure. If OCSP_resp_get1_id() returns 0, no freeing of the results is necessary.

    -

    OCSP_check_validity() checks the validity of thisupd and nextupd values which will be typically obtained from OCSP_resp_find_status() or OCSP_single_get0_status(). If sec is non-zero it indicates how many seconds leeway should be allowed in the check. If maxsec is positive it indicates the maximum age of thisupd in seconds.

    +

    OCSP_check_validity() checks the validity of thisupd and nextupd values which will be typically obtained from OCSP_resp_find_status() or OCSP_single_get0_status(). If sec is nonzero it indicates how many seconds leeway should be allowed in the check. If maxsec is positive it indicates the maximum age of thisupd in seconds.

    OCSP_basic_verify() checks that the basic response message bs is correctly signed and that the signer certificate can be validated. It takes st as the trusted store and certs as a set of untrusted intermediate certificates. The function first tries to find the signer certificate of the response in <certs>. It also searches the certificates the responder may have included in bs unless the flags contain OCSP_NOINTERN. It fails if the signer certificate cannot be found. Next, the function checks the signature of bs and fails on error unless the flags contain OCSP_NOSIGS. Then the function already returns success if the flags contain OCSP_NOVERIFY or if the signer certificate was found in certs and the flags contain OCSP_TRUSTOTHER. Otherwise the function continues by validating the signer certificate. To this end, all certificates in cert and in bs are considered as untrusted certificates for the construction of the validation path for the signer certificate unless the OCSP_NOCHAIN flag is set. After successful path validation the function returns success if the OCSP_NOCHECKS flag is set. Otherwise it verifies that the signer certificate meets the OCSP issuer criteria including potential delegation. If this does not succeed and the flags do not contain OCSP_NOEXPLICIT the function checks for explicit trust for OCSP signing in the root CA certificate.

    @@ -118,7 +118,7 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,

    Applications will typically call OCSP_resp_find_status() using the certificate ID of interest and then check its validity using OCSP_check_validity(). They can then take appropriate action based on the status of the certificate.

    -

    An OCSP response for a certificate contains thisUpdate and nextUpdate fields. Normally the current time should be between these two values. To account for clock skew the maxsec field can be set to non-zero in OCSP_check_validity(). Some responders do not set the nextUpdate field, this would otherwise mean an ancient response would be considered valid: the maxsec parameter to OCSP_check_validity() can be used to limit the permitted age of responses.

    +

    An OCSP response for a certificate contains thisUpdate and nextUpdate fields. Normally the current time should be between these two values. To account for clock skew the maxsec field can be set to nonzero in OCSP_check_validity(). Some responders do not set the nextUpdate field, this would otherwise mean an ancient response would be considered valid: the maxsec parameter to OCSP_check_validity() can be used to limit the permitted age of responses.

    The values written to *revtime, *thisupd and *nextupd by OCSP_resp_find_status() and OCSP_single_get0_status() are internal pointers which MUST NOT be freed up by the calling application. Any or all of these parameters can be set to NULL if their value is not required.

    @@ -128,7 +128,7 @@ int OCSP_basic_verify(OCSP_BASICRESP *bs, STACK_OF(X509) *certs,

    COPYRIGHT

    -

    Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_certs.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_certs.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_id.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_id.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_produced_at.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_produced_at.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_produced_at.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_respdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_respdata.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_respdata.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_signature.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_signature.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_signer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_signer.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_signer.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_tbs_sigalg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_tbs_sigalg.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get0_tbs_sigalg.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get1_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get1_id.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_resp_get1_id.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_response_create.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_response_create.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_response_create.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_response_get1_basic.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_response_get1_basic.html new file mode 120000 index 00000000..b1453b2b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_response_get1_basic.html @@ -0,0 +1 @@ +OCSP_response_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_bio.html new file mode 120000 index 00000000..46db3983 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_bio.html @@ -0,0 +1 @@ +OCSP_sendreq_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_nbio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_nbio.html new file mode 120000 index 00000000..46db3983 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_nbio.html @@ -0,0 +1 @@ +OCSP_sendreq_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_new.html index 2eba48a1..ace6c4fc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_sendreq_new.html @@ -23,7 +23,7 @@

    NAME

    -

    OCSP_sendreq_new, OCSP_sendreq_nbio, OCSP_REQ_CTX_free, OCSP_set_max_response_length, OCSP_REQ_CTX_add1_header, OCSP_REQ_CTX_set1_req, OCSP_sendreq_bio - OCSP responder query functions

    +

    OCSP_sendreq_new, OCSP_sendreq_nbio, OCSP_REQ_CTX_free, OCSP_set_max_response_length, OCSP_REQ_CTX_add1_header, OCSP_REQ_CTX_set1_req, OCSP_sendreq_bio, OCSP_REQ_CTX_i2d - OCSP responder query functions

    SYNOPSIS

    @@ -43,13 +43,16 @@ int OCSP_REQ_CTX_add1_header(OCSP_REQ_CTX *rctx, int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req); -OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req); +OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req); + +int OCSP_REQ_CTX_i2d(OCSP_REQ_CTX *rctx, const char *content_type, + const ASN1_ITEM *it, ASN1_VALUE *req);

    DESCRIPTION

    The function OCSP_sendreq_new() returns an OCSP_CTX structure using the responder io, the URL path path, the OCSP request req and with a response header maximum line length of maxline. If maxline is zero a default value of 4k is used. The OCSP request req may be set to NULL and provided later if required.

    -

    OCSP_sendreq_nbio() performs non-blocking I/O on the OCSP request context rctx. When the operation is complete it returns the response in *presp.

    +

    OCSP_sendreq_nbio() performs nonblocking I/O on the OCSP request context rctx. When the operation is complete it returns the response in *presp.

    OCSP_REQ_CTX_free() frees up the OCSP context rctx.

    @@ -57,7 +60,12 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req);OCSP_REQ_CTX_add1_header() adds header name with value value to the context rctx. It can be called more than once to add multiple headers. It MUST be called before any calls to OCSP_sendreq_nbio(). The req parameter in the initial to OCSP_sendreq_new() call MUST be set to NULL if additional headers are set.

    -

    OCSP_REQ_CTX_set1_req() sets the OCSP request in rctx to req. This function should be called after any calls to OCSP_REQ_CTX_add1_header().

    +

    OCSP_REQ_CTX_set1_req() sets the OCSP request in rctx to req. This function should be called after any calls to OCSP_REQ_CTX_add1_header(). OCSP_REQ_CTX_set1_req(rctx, req) is equivalent to the following:

    + +
    OCSP_REQ_CTX_i2d(rctx, "application/ocsp-request",
    +                       ASN1_ITEM_rptr(OCSP_REQUEST), (ASN1_VALUE *)req)
    + +

    OCSP_REQ_CTX_i2d() sets the request context rctx to have the request req, which has the ASN.1 type it. The content_type, if not NULL, will be included in the HTTP request. The function should be called after all other headers have already been added.

    OCSP_sendreq_bio() performs an OCSP request using the responder io, the URL path path, and the OCSP request req with a response header maximum line length 4k. It waits indefinitely on a response.

    @@ -67,7 +75,7 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req);OCSP_sendreq_nbio() returns 1 if the operation was completed successfully, -1 if the operation should be retried and 0 if an error occurred.

    -

    OCSP_REQ_CTX_add1_header() and OCSP_REQ_CTX_set1_req() return 1 for success and 0 for failure.

    +

    OCSP_REQ_CTX_add1_header(), OCSP_REQ_CTX_set1_req(), and OCSP_REQ_CTX_i2d() return 1 for success and 0 for failure.

    OCSP_sendreq_bio() returns the OCSP_RESPONSE structure sent by the responder or NULL if an error occurred.

    @@ -87,7 +95,7 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req);If OCSP_sendreq_nbio() indicates an operation should be retried the corresponding BIO can be examined to determine which operation (read or write) should be retried and appropriate action taken (for example a select() call on the underlying socket).

    -

    OCSP_sendreq_bio() does not support retries and so cannot handle non-blocking I/O efficiently. It is retained for compatibility and its use in new applications is not recommended.

    +

    OCSP_sendreq_bio() does not support retries and so cannot handle nonblocking I/O efficiently. It is retained for compatibility and its use in new applications is not recommended.

    SEE ALSO

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_set_max_response_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_set_max_response_length.html new file mode 120000 index 00000000..46db3983 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_set_max_response_length.html @@ -0,0 +1 @@ +OCSP_sendreq_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_single_get0_status.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_single_get0_status.html new file mode 120000 index 00000000..16f69308 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OCSP_single_get0_status.html @@ -0,0 +1 @@ +OCSP_resp_find_status.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_free.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_free.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_new.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_new.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_appname.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_appname.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_appname.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_file_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_file_flags.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_file_flags.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_filename.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_filename.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_INIT_set_config_filename.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_COMPFUNC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_COMPFUNC.html index 0afff468..ee1c7934 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_COMPFUNC.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_COMPFUNC.html @@ -38,7 +38,7 @@ void lh_TYPE_free(LHASH_OF(TYPE) *table); TYPE *lh_TYPE_insert(LHASH_OF(TYPE) *table, TYPE *data); TYPE *lh_TYPE_delete(LHASH_OF(TYPE) *table, TYPE *data); -TYPE *lh_retrieve(LHASH_OF(TYPE) *table, TYPE *data); +TYPE *lh_TYPE_retrieve(LHASH_OF(TYPE) *table, TYPE *data); void lh_TYPE_doall(LHASH_OF(TYPE) *table, OPENSSL_LH_DOALL_FUNC func); void lh_TYPE_doall_arg(LHASH_OF(TYPE) *table, OPENSSL_LH_DOALL_FUNCARG func, @@ -55,7 +55,7 @@ typedef void (*LHASH_DOALL_ARG_FN_TYPE)(const void *, const void *);This library implements type-checked dynamic hash tables. The hash table entries can be arbitrary structures. Usually they consist of key and value fields. In the description here, TYPE is used a placeholder for any of the OpenSSL datatypes, such as SSL_SESSION.

    -

    lh_TYPE_new() creates a new LHASH_OF(TYPE) structure to store arbitrary data entries, and specifies the 'hash' and 'compare' callbacks to be used in organising the table's entries. The hash callback takes a pointer to a table entry as its argument and returns an unsigned long hash value for its key field. The hash value is normally truncated to a power of 2, so make sure that your hash function returns well mixed low order bits. The compare callback takes two arguments (pointers to two hash table entries), and returns 0 if their keys are equal, non-zero otherwise.

    +

    lh_TYPE_new() creates a new LHASH_OF(TYPE) structure to store arbitrary data entries, and specifies the 'hash' and 'compare' callbacks to be used in organising the table's entries. The hash callback takes a pointer to a table entry as its argument and returns an unsigned long hash value for its key field. The hash value is normally truncated to a power of 2, so make sure that your hash function returns well mixed low order bits. The compare callback takes two arguments (pointers to two hash table entries), and returns 0 if their keys are equal, nonzero otherwise.

    If your hash table will contain items of some particular type and the hash and compare callbacks hash/compare these types, then the IMPLEMENT_LHASH_HASH_FN and IMPLEMENT_LHASH_COMP_FN macros can be used to create callback wrappers of the prototypes required by lh_TYPE_new() as shown in this example:

    @@ -146,7 +146,7 @@ lh_TYPE_doall_arg(hashtable, LHASH_DOALL_ARG_FN(TYPE_print), BIO,

    The LHASH code regards table entries as constant data. As such, it internally represents lh_insert()'d items with a "const void *" pointer type. This is why callbacks such as those used by lh_doall() and lh_doall_arg() declare their prototypes with "const", even for the parameters that pass back the table items' data pointers - for consistency, user-provided data is "const" at all times as far as the LHASH code is concerned. However, as callers are themselves providing these pointers, they can choose whether they too should be treating all such parameters as constant.

    -

    As an example, a hash table may be maintained by code that, for reasons of encapsulation, has only "const" access to the data being indexed in the hash table (ie. it is returned as "const" from elsewhere in their code) - in this case the LHASH prototypes are appropriate as-is. Conversely, if the caller is responsible for the life-time of the data in question, then they may well wish to make modifications to table item passed back in the lh_doall() or lh_doall_arg() callbacks (see the "TYPE_cleanup" example above). If so, the caller can either cast the "const" away (if they're providing the raw callbacks themselves) or use the macros to declare/implement the wrapper functions without "const" types.

    +

    As an example, a hash table may be maintained by code that, for reasons of encapsulation, has only "const" access to the data being indexed in the hash table (i.e. it is returned as "const" from elsewhere in their code) - in this case the LHASH prototypes are appropriate as-is. Conversely, if the caller is responsible for the life-time of the data in question, then they may well wish to make modifications to table item passed back in the lh_doall() or lh_doall_arg() callbacks (see the "TYPE_cleanup" example above). If so, the caller can either cast the "const" away (if they're providing the raw callbacks themselves) or use the macros to declare/implement the wrapper functions without "const" types.

    Callers that only have "const" access to data they're indexing in a table, yet declare callbacks without constant types (or cast the "const" away themselves), are therefore creating their own risks/bugs without being encouraged to do so by the API. On a related note, those auditing code should pay special attention to any instances of DECLARE/IMPLEMENT_LHASH_DOALL_[ARG_]_FN macros that provide types without any "const" qualifiers.

    @@ -164,7 +164,7 @@ lh_TYPE_doall_arg(hashtable, LHASH_DOALL_ARG_FN(TYPE_print), BIO,

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_DOALL_FUNC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_DOALL_FUNC.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_DOALL_FUNC.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_HASHFUNC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_HASHFUNC.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_HASHFUNC.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_stats.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_stats.html new file mode 120000 index 00000000..504572af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_stats.html @@ -0,0 +1 @@ +OPENSSL_LH_stats.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_stats_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_stats_bio.html new file mode 120000 index 00000000..504572af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_stats_bio.html @@ -0,0 +1 @@ +OPENSSL_LH_stats.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_usage_stats.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_usage_stats.html new file mode 120000 index 00000000..504572af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_usage_stats.html @@ -0,0 +1 @@ +OPENSSL_LH_stats.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_usage_stats_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_usage_stats_bio.html new file mode 120000 index 00000000..504572af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_node_usage_stats_bio.html @@ -0,0 +1 @@ +OPENSSL_LH_stats.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_stats_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_stats_bio.html new file mode 120000 index 00000000..504572af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_LH_stats_bio.html @@ -0,0 +1 @@ +OPENSSL_LH_stats.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_MALLOC_FAILURES.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_MALLOC_FAILURES.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_MALLOC_FAILURES.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_MALLOC_FD.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_MALLOC_FD.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_MALLOC_FD.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_VERSION_TEXT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_VERSION_TEXT.html new file mode 120000 index 00000000..041c4319 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_VERSION_TEXT.html @@ -0,0 +1 @@ +OPENSSL_VERSION_NUMBER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_atexit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_atexit.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_atexit.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_buf2hexstr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_buf2hexstr.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_buf2hexstr.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cipher_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cipher_name.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cipher_name.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cleanse.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cleanse.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cleanse.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cleanup.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_cleanup.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_clear_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_clear_free.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_clear_free.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_clear_realloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_clear_realloc.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_clear_realloc.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_config.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_config.html index 3a6b8ba2..1fe18d52 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_config.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_config.html @@ -48,7 +48,7 @@ void OPENSSL_no_config(void);

    The OPENSSL_config() function is designed to be a very simple "call it and forget it" function. It is however much better than nothing. Applications which need finer control over their configuration functionality should use the configuration functions such as CONF_modules_load() directly. This function is deprecated and its use should be avoided. Applications should instead call CONF_modules_load() during initialization (that is before starting any threads).

    -

    There are several reasons why calling the OpenSSL configuration routines is advisable. For example, to load dynamic ENGINEs from shared libraries (DSOs). However very few applications currently support the control interface and so very few can load and use dynamic ENGINEs. Equally in future more sophisticated ENGINEs will require certain control operations to customize them. If an application calls OPENSSL_config() it doesn't need to know or care about ENGINE control operations because they can be performed by editing a configuration file.

    +

    There are several reasons why calling the OpenSSL configuration routines is advisable. For example, to load dynamic ENGINEs from shared libraries (DSOs). However, very few applications currently support the control interface and so very few can load and use dynamic ENGINEs. Equally in future more sophisticated ENGINEs will require certain control operations to customize them. If an application calls OPENSSL_config() it doesn't need to know or care about ENGINE control operations because they can be performed by editing a configuration file.

    ENVIRONMENT

    @@ -76,7 +76,7 @@ void OPENSSL_no_config(void);

    COPYRIGHT

    -

    Copyright 2004-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2004-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_fork_child.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_fork_child.html new file mode 120000 index 00000000..0acebd7e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_fork_child.html @@ -0,0 +1 @@ +OPENSSL_fork_prepare.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_fork_parent.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_fork_parent.html new file mode 120000 index 00000000..0acebd7e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_fork_parent.html @@ -0,0 +1 @@ +OPENSSL_fork_prepare.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_free.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_free.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_hexchar2int.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_hexchar2int.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_hexchar2int.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_hexstr2buf.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_hexstr2buf.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_hexstr2buf.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_ia32cap.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_ia32cap.html index 473cf8fe..f24ea849 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_ia32cap.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_ia32cap.html @@ -140,7 +140,7 @@
    -
    bit #64+21 denoting availability of VPMADD52[LH]UQ instructions, a.k.a. AVX512IFMA extension;
    +
    bit #64+21 denoting availability of VPMADD52[LH]UQ instructions, aka AVX512IFMA extension;
    @@ -194,7 +194,7 @@ exec clang -no-integrated-as "$@"

    COPYRIGHT

    -

    Copyright 2004-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2004-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_crypto.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_crypto.html index 96905d69..0aeb4a39 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_crypto.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_crypto.html @@ -50,9 +50,9 @@ void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *init);

    As of version 1.1.0 OpenSSL will automatically allocate all resources that it needs so no explicit initialisation is required. Similarly it will also automatically deinitialise as required.

    -

    However, there may be situations when explicit initialisation is desirable or needed, for example when some non-default initialisation is required. The function OPENSSL_init_crypto() can be used for this purpose for libcrypto (see also OPENSSL_init_ssl(3) for the libssl equivalent).

    +

    However, there may be situations when explicit initialisation is desirable or needed, for example when some nondefault initialisation is required. The function OPENSSL_init_crypto() can be used for this purpose for libcrypto (see also OPENSSL_init_ssl(3) for the libssl equivalent).

    -

    Numerous internal OpenSSL functions call OPENSSL_init_crypto(). Therefore, in order to perform non-default initialisation, OPENSSL_init_crypto() MUST be called by application code prior to any other OpenSSL function calls.

    +

    Numerous internal OpenSSL functions call OPENSSL_init_crypto(). Therefore, in order to perform nondefault initialisation, OPENSSL_init_crypto() MUST be called by application code prior to any other OpenSSL function calls.

    The opts parameter specifies which aspects of libcrypto should be initialised. Valid options are:

    @@ -79,7 +79,7 @@ void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *init);
    OPENSSL_INIT_ADD_ALL_DIGESTS
    -

    With this option the library will automatically load and make available all libcrypto digests. This option is a default option. Once selected subsequent calls to OPENSSL_init_crypto() with the option OPENSSL_INIT_NO_ADD_ALL_CIPHERS will be ignored.

    +

    With this option the library will automatically load and make available all libcrypto digests. This option is a default option. Once selected subsequent calls to OPENSSL_init_crypto() with the option OPENSSL_INIT_NO_ADD_ALL_DIGESTS will be ignored.

    OPENSSL_INIT_NO_ADD_ALL_CIPHERS
    @@ -187,7 +187,7 @@ void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *init);

    The OPENSSL_thread_stop() function deallocates resources associated with the current thread. Typically this function will be called automatically by the library when the thread exits. This should only be called directly if resources should be freed at an earlier time, or under the circumstances described in the NOTES section below.

    -

    The OPENSSL_INIT_LOAD_CONFIG flag will load a configuration file, as with CONF_modules_load_file(3) with NULL filename and application name and the CONF_MFLAGS_IGNORE_MISSING_FILE, CONF_MFLAGS_IGNORE_RETURN_CODES and CONF_MFLAGS_DEFAULT_SECTION flags. The filename, application name, and flags can be customized by providing a non-null OPENSSL_INIT_SETTINGS object. The object can be allocated via OPENSSL_init_new(). The OPENSSL_INIT_set_config_filename() function can be used to specify a non-default filename, which is copied and need not refer to persistent storage. Similarly, OPENSSL_INIT_set_config_appname() can be used to specify a non-default application name. Finally, OPENSSL_INIT_set_file_flags can be used to specify non-default flags. If the CONF_MFLAGS_IGNORE_RETURN_CODES flag is not included, any errors in the configuration file will cause an error return from OPENSSL_init_crypto or indirectly OPENSSL_init_ssl(3). The object can be released with OPENSSL_INIT_free() when done.

    +

    The OPENSSL_INIT_LOAD_CONFIG flag will load a configuration file, as with CONF_modules_load_file(3) with NULL filename and application name and the CONF_MFLAGS_IGNORE_MISSING_FILE, CONF_MFLAGS_IGNORE_RETURN_CODES and CONF_MFLAGS_DEFAULT_SECTION flags. The filename, application name, and flags can be customized by providing a non-null OPENSSL_INIT_SETTINGS object. The object can be allocated via OPENSSL_init_new(). The OPENSSL_INIT_set_config_filename() function can be used to specify a nondefault filename, which is copied and need not refer to persistent storage. Similarly, OPENSSL_INIT_set_config_appname() can be used to specify a nondefault application name. Finally, OPENSSL_INIT_set_file_flags can be used to specify nondefault flags. If the CONF_MFLAGS_IGNORE_RETURN_CODES flag is not included, any errors in the configuration file will cause an error return from OPENSSL_init_crypto or indirectly OPENSSL_init_ssl(3). The object can be released with OPENSSL_INIT_free() when done.

    NOTES

    @@ -209,7 +209,7 @@ void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *init);

    COPYRIGHT

    -

    Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_ssl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_ssl.html index 464a3000..e6019bd2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_ssl.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_init_ssl.html @@ -37,9 +37,9 @@ int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);As of version 1.1.0 OpenSSL will automatically allocate all resources that it needs so no explicit initialisation is required. Similarly it will also automatically deinitialise as required.

    -

    However, there may be situations when explicit initialisation is desirable or needed, for example when some non-default initialisation is required. The function OPENSSL_init_ssl() can be used for this purpose. Calling this function will explicitly initialise BOTH libcrypto and libssl. To explicitly initialise ONLY libcrypto see the OPENSSL_init_crypto(3) function.

    +

    However, there may be situations when explicit initialisation is desirable or needed, for example when some nondefault initialisation is required. The function OPENSSL_init_ssl() can be used for this purpose. Calling this function will explicitly initialise BOTH libcrypto and libssl. To explicitly initialise ONLY libcrypto see the OPENSSL_init_crypto(3) function.

    -

    Numerous internal OpenSSL functions call OPENSSL_init_ssl(). Therefore, in order to perform non-default initialisation, OPENSSL_init_ssl() MUST be called by application code prior to any other OpenSSL function calls.

    +

    Numerous internal OpenSSL functions call OPENSSL_init_ssl(). Therefore, in order to perform nondefault initialisation, OPENSSL_init_ssl() MUST be called by application code prior to any other OpenSSL function calls.

    The opts parameter specifies which aspects of libssl and libcrypto should be initialised. Valid options for libcrypto are described on the OPENSSL_init_crypto(3) page. In addition to any libcrypto specific option the following libssl options can also be used:

    @@ -75,7 +75,7 @@ int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings);COPYRIGHT -

    Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_instrument_bus2.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_instrument_bus2.html new file mode 120000 index 00000000..33e38514 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_instrument_bus2.html @@ -0,0 +1 @@ +OPENSSL_instrument_bus.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_malloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_malloc.html index 5c15c2f6..269ecd41 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_malloc.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_malloc.html @@ -96,7 +96,7 @@ int CRYPTO_mem_leaks_cb(int (*cb)(const char *str, size_t len, void *u),

    OPENSSL_clear_realloc() and OPENSSL_clear_free() should be used when the buffer at addr holds sensitive information. The old buffer is filled with zero's by calling OPENSSL_cleanse() before ultimately calling OPENSSL_free().

    -

    OPENSSL_cleanse() fills ptr of size len with a string of 0's. Use OPENSSL_cleanse() with care if the memory is a mapping of a file. If the storage controller uses write compression, then its possible that sensitive tail bytes will survive zeroization because the block of zeros will be compressed. If the storage controller uses wear leveling, then the old sensitive data will not be overwritten; rather, a block of 0's will be written at a new physical location.

    +

    OPENSSL_cleanse() fills ptr of size len with a string of 0's. Use OPENSSL_cleanse() with care if the memory is a mapping of a file. If the storage controller uses write compression, then it's possible that sensitive tail bytes will survive zeroization because the block of zeros will be compressed. If the storage controller uses wear leveling, then the old sensitive data will not be overwritten; rather, a block of 0's will be written at a new physical location.

    OPENSSL_strdup(), OPENSSL_strndup() and OPENSSL_memdup() are like the equivalent C functions, except that memory is allocated by calling the OPENSSL_malloc() and should be released by calling OPENSSL_free().

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_malloc_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_malloc_init.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_malloc_init.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_mem_debug_pop.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_mem_debug_pop.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_mem_debug_pop.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_mem_debug_push.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_mem_debug_push.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_mem_debug_push.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_memdup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_memdup.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_memdup.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_no_config.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_no_config.html new file mode 120000 index 00000000..a2e0fe55 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_no_config.html @@ -0,0 +1 @@ +OPENSSL_config.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_realloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_realloc.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_realloc.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_actual_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_actual_size.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_actual_size.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_clear_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_clear_free.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_clear_free.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_free.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_free.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_zalloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_zalloc.html new file mode 120000 index 00000000..e482ff05 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_secure_zalloc.html @@ -0,0 +1 @@ +OPENSSL_secure_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strdup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strdup.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strdup.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strlcat.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strlcat.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strlcat.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strlcpy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strlcpy.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strlcpy.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strndup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strndup.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_strndup.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_thread_stop.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_thread_stop.html new file mode 120000 index 00000000..2e99423a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_thread_stop.html @@ -0,0 +1 @@ +OPENSSL_init_crypto.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_zalloc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_zalloc.html new file mode 120000 index 00000000..759cff87 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OPENSSL_zalloc.html @@ -0,0 +1 @@ +OPENSSL_malloc.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_CTX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_CTX.html new file mode 120000 index 00000000..ef7dac0c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_CTX.html @@ -0,0 +1 @@ +OSSL_STORE_open.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_free.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_free.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_CERT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_CERT.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_CERT.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_CRL.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_CRL.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_NAME.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_NAME.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_NAME_description.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_NAME_description.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_NAME_description.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_PARAMS.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_PARAMS.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_PKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_PKEY.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get0_PKEY.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_CERT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_CERT.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_CERT.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_CRL.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_CRL.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_NAME.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_NAME.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_NAME_description.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_NAME_description.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_NAME_description.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_PARAMS.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_PARAMS.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_PKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_PKEY.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get1_PKEY.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get_type.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_get_type.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_CERT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_CERT.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_CERT.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_CRL.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_CRL.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_NAME.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_NAME.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_PARAMS.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_PARAMS.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_PKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_PKEY.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_new_PKEY.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_set0_NAME_description.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_set0_NAME_description.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_set0_NAME_description.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_type_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_type_string.html new file mode 120000 index 00000000..c0e99ca6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_INFO_type_string.html @@ -0,0 +1 @@ +OSSL_STORE_INFO.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_CTX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_CTX.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_CTX.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_free.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_free.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_get0_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_get0_engine.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_get0_engine.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_get0_scheme.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_get0_scheme.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_get0_scheme.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_new.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_new.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_close.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_close.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_close.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_ctrl.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_ctrl.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_eof.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_eof.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_eof.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_error.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_error.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_expect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_expect.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_expect.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_find.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_find.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_find.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_load.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_load.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_load.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_open.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_open.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_LOADER_set_open.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_alias.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_alias.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_alias.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_issuer_serial.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_issuer_serial.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_issuer_serial.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_key_fingerprint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_key_fingerprint.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_key_fingerprint.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_name.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_by_name.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_free.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_free.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_bytes.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_bytes.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_digest.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_digest.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_name.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_name.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_serial.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_serial.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_serial.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_string.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get0_string.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get_type.html new file mode 120000 index 00000000..37e6e2da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_SEARCH_get_type.html @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_close.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_close.html new file mode 120000 index 00000000..ef7dac0c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_close.html @@ -0,0 +1 @@ +OSSL_STORE_open.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_close_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_close_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_close_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_ctrl.html new file mode 120000 index 00000000..ef7dac0c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_ctrl.html @@ -0,0 +1 @@ +OSSL_STORE_open.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_ctrl_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_ctrl_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_ctrl_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_eof.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_eof.html new file mode 120000 index 00000000..ef7dac0c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_eof.html @@ -0,0 +1 @@ +OSSL_STORE_open.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_eof_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_eof_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_eof_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_error.html new file mode 120000 index 00000000..ef7dac0c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_error.html @@ -0,0 +1 @@ +OSSL_STORE_open.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_error_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_error_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_error_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_expect_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_expect_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_expect_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_find.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_find.html new file mode 120000 index 00000000..0361ddab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_find.html @@ -0,0 +1 @@ +OSSL_STORE_expect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_find_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_find_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_find_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_load.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_load.html new file mode 120000 index 00000000..ef7dac0c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_load.html @@ -0,0 +1 @@ +OSSL_STORE_open.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_load_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_load_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_load_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_open.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_open.html index e6b96df3..cf796fd4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_open.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_open.html @@ -63,9 +63,9 @@ int OSSL_STORE_close(OSSL_STORE_CTX *ctx);

    Functions

    -

    OSSL_STORE_open() takes a uri or path uri, password UI method ui_method with associated data ui_data, and post processing callback post_process with associated data post_process_data, opens a channel to the data located at that URI and returns a OSSL_STORE_CTX with all necessary internal information. The given ui_method and ui_data_data will be reused by all functions that use OSSL_STORE_CTX when interaction is needed. The given post_process and post_process_data will be reused by OSSL_STORE_load() to manipulate or drop the value to be returned. The post_process function drops values by returning NULL, which will cause OSSL_STORE_load() to start its process over with loading the next object, until post_process returns something other than NULL, or the end of data is reached as indicated by OSSL_STORE_eof().

    +

    OSSL_STORE_open() takes a uri or path uri, password UI method ui_method with associated data ui_data, and post processing callback post_process with associated data post_process_data, opens a channel to the data located at that URI and returns a OSSL_STORE_CTX with all necessary internal information. The given ui_method and ui_data will be reused by all functions that use OSSL_STORE_CTX when interaction is needed, for instance to provide a password. The given post_process and post_process_data will be reused by OSSL_STORE_load() to manipulate or drop the value to be returned. The post_process function drops values by returning NULL, which will cause OSSL_STORE_load() to start its process over with loading the next object, until post_process returns something other than NULL, or the end of data is reached as indicated by OSSL_STORE_eof().

    -

    OSSL_STORE_ctrl() takes a OSSL_STORE_CTX, and command number cmd and more arguments not specified here. The available loader specific command numbers and arguments they each take depends on the loader that's used and is documented together with that loader.

    +

    OSSL_STORE_ctrl() takes a OSSL_STORE_CTX, and command number cmd and more arguments not specified here. The available loader specific command numbers and arguments they each take depends on the loader that's used and is documented together with that loader.

    There are also global controls available:

    @@ -85,7 +85,7 @@ int OSSL_STORE_close(OSSL_STORE_CTX *ctx);

    OSSL_STORE_error() takes a OSSL_STORE_CTX and checks if an error occurred in the last OSSL_STORE_load() call. Note that it may still be meaningful to try and load more objects, unless OSSL_STORE_eof() shows that the end of data has been reached.

    -

    OSSL_STORE_close() takes a OSSL_STORE_CTX, closes the channel that was opened by OSSL_STORE_open() and frees all other information that was stored in the OSSL_STORE_CTX, as well as the OSSL_STORE_CTX itself.

    +

    OSSL_STORE_close() takes a OSSL_STORE_CTX, closes the channel that was opened by OSSL_STORE_open() and frees all other information that was stored in the OSSL_STORE_CTX, as well as the OSSL_STORE_CTX itself. If ctx is NULL it does nothing.

    SUPPORTED SCHEMES

    @@ -101,9 +101,9 @@ int OSSL_STORE_close(OSSL_STORE_CTX *ctx);

    RETURN VALUES

    -

    OSSL_STORE_open() returns a pointer to a OSSL_STORE_CTX on success, or NULL on failure.

    +

    OSSL_STORE_open() returns a pointer to a OSSL_STORE_CTX on success, or NULL on failure.

    -

    OSSL_STORE_load() returns a pointer to a OSSL_STORE_INFO on success, or NULL on error or when end of data is reached. Use OSSL_STORE_error() and OSSL_STORE_eof() to determine the meaning of a returned NULL.

    +

    OSSL_STORE_load() returns a pointer to a OSSL_STORE_INFO on success, or NULL on error or when end of data is reached. Use OSSL_STORE_error() and OSSL_STORE_eof() to determine the meaning of a returned NULL.

    OSSL_STORE_eof() returns 1 if the end of data has been reached, otherwise 0.

    @@ -119,9 +119,11 @@ int OSSL_STORE_close(OSSL_STORE_CTX *ctx);

    OSSL_STORE_CTX(), OSSL_STORE_post_process_info_fn(), OSSL_STORE_open(), OSSL_STORE_ctrl(), OSSL_STORE_load(), OSSL_STORE_eof() and OSSL_STORE_close() were added in OpenSSL 1.1.1.

    +

    Handling of NULL ctx argument for OSSL_STORE_close() was introduced in OpenSSL 1.1.1h.

    +

    COPYRIGHT

    -

    Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_open_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_open_fn.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_open_fn.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_post_process_info_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_post_process_info_fn.html new file mode 120000 index 00000000..ef7dac0c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_post_process_info_fn.html @@ -0,0 +1 @@ +OSSL_STORE_open.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_register_loader.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_register_loader.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_register_loader.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_supports_search.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_supports_search.html new file mode 120000 index 00000000..0361ddab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_supports_search.html @@ -0,0 +1 @@ +OSSL_STORE_expect.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_unregister_loader.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_unregister_loader.html new file mode 120000 index 00000000..3024f9a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OSSL_STORE_unregister_loader.html @@ -0,0 +1 @@ +OSSL_STORE_LOADER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OTHERNAME_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OTHERNAME_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OTHERNAME_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OTHERNAME_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OTHERNAME_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OTHERNAME_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_all_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_all_ciphers.html new file mode 120000 index 00000000..35718c12 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_all_ciphers.html @@ -0,0 +1 @@ +OpenSSL_add_all_algorithms.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_all_digests.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_all_digests.html new file mode 120000 index 00000000..35718c12 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_all_digests.html @@ -0,0 +1 @@ +OpenSSL_add_all_algorithms.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_ssl_algorithms.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_ssl_algorithms.html new file mode 120000 index 00000000..3bf50355 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_add_ssl_algorithms.html @@ -0,0 +1 @@ +SSL_library_init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_version.html new file mode 120000 index 00000000..041c4319 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_version.html @@ -0,0 +1 @@ +OPENSSL_VERSION_NUMBER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_version_num.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_version_num.html new file mode 120000 index 00000000..041c4319 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/OpenSSL_version_num.html @@ -0,0 +1 @@ +OPENSSL_VERSION_NUMBER.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBE2PARAM_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBE2PARAM_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBE2PARAM_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBE2PARAM_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBE2PARAM_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBE2PARAM_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBEPARAM_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBEPARAM_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBEPARAM_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBEPARAM_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBEPARAM_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBEPARAM_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBKDF2PARAM_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBKDF2PARAM_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBKDF2PARAM_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBKDF2PARAM_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBKDF2PARAM_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PBKDF2PARAM_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_EAY_COMPATIBLE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_EAY_COMPATIBLE.html new file mode 120000 index 00000000..73fc4619 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_EAY_COMPATIBLE.html @@ -0,0 +1 @@ +PEM_read_bio_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_ONLY_B64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_ONLY_B64.html new file mode 120000 index 00000000..73fc4619 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_ONLY_B64.html @@ -0,0 +1 @@ +PEM_read_bio_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_SECURE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_SECURE.html new file mode 120000 index 00000000..73fc4619 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_FLAG_SECURE.html @@ -0,0 +1 @@ +PEM_read_bio_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_bytes_read_bio_secmem.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_bytes_read_bio_secmem.html new file mode 120000 index 00000000..c3cec706 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_bytes_read_bio_secmem.html @@ -0,0 +1 @@ +PEM_bytes_read_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_do_header.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_do_header.html new file mode 120000 index 00000000..d814172e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_do_header.html @@ -0,0 +1 @@ +PEM_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_get_EVP_CIPHER_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_get_EVP_CIPHER_INFO.html new file mode 120000 index 00000000..d814172e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_get_EVP_CIPHER_INFO.html @@ -0,0 +1 @@ +PEM_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DHparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DHparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DHparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSAparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSAparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_DSAparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_ECPKParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_ECPKParameters.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_ECPKParameters.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_ECPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_ECPrivateKey.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_ECPrivateKey.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_EC_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_EC_PUBKEY.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_EC_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_NETSCAPE_CERT_SEQUENCE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_NETSCAPE_CERT_SEQUENCE.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_NETSCAPE_CERT_SEQUENCE.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS7.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS7.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS8.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS8.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS8_PRIV_KEY_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS8_PRIV_KEY_INFO.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PKCS8_PRIV_KEY_INFO.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_PrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSAPublicKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSAPublicKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_RSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_SSL_SESSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_SSL_SESSION.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_SSL_SESSION.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_AUX.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_AUX.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_CRL.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_CRL.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_REQ.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_X509_REQ.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio.html new file mode 120000 index 00000000..d814172e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio.html @@ -0,0 +1 @@ +PEM_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_CMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_CMS.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_CMS.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DHparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DHparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DHparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSAparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSAparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_DSAparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_ECPKParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_ECPKParameters.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_ECPKParameters.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_EC_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_EC_PUBKEY.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_EC_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_NETSCAPE_CERT_SEQUENCE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_NETSCAPE_CERT_SEQUENCE.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_NETSCAPE_CERT_SEQUENCE.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS7.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS7.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS8.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS8.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS8_PRIV_KEY_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS8_PRIV_KEY_INFO.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PKCS8_PRIV_KEY_INFO.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_Parameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_Parameters.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_Parameters.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PrivateKey.html index dd68d34b..7239d0ea 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PrivateKey.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_PrivateKey.html @@ -180,7 +180,7 @@ int PEM_write_PKCS7(FILE *fp, PKCS7 *x);

    The RSAPublicKey functions process an RSA public key using an RSA structure. The public key is encoded using a PKCS#1 RSAPublicKey structure.

    -

    The RSA_PUBKEY functions also process an RSA public key using an RSA structure. However the public key is encoded using a SubjectPublicKeyInfo structure and an error occurs if the public key is not RSA.

    +

    The RSA_PUBKEY functions also process an RSA public key using an RSA structure. However, the public key is encoded using a SubjectPublicKeyInfo structure and an error occurs if the public key is not RSA.

    The DSAPrivateKey functions process a DSA private key using a DSA structure. The write routines uses traditional format. The read routines handles the same formats as the PrivateKey functions but an error occurs if the private key is not DSA.

    @@ -280,7 +280,7 @@ if (rc != nkey)

    BUGS

    -

    The PEM read routines in some versions of OpenSSL will not correctly reuse an existing structure. Therefore the following:

    +

    The PEM read routines in some versions of OpenSSL will not correctly reuse an existing structure. Therefore, the following:

    PEM_read_bio_X509(bp, &x, 0, NULL);
    @@ -369,7 +369,7 @@ if (key == NULL)

    COPYRIGHT

    -

    Copyright 2001-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSAPublicKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSAPublicKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_RSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_SSL_SESSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_SSL_SESSION.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_SSL_SESSION.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_AUX.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_AUX.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_CRL.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_CRL.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_REQ.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_read_bio_X509_REQ.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write.html new file mode 120000 index 00000000..d814172e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write.html @@ -0,0 +1 @@ +PEM_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_CMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_CMS.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_CMS.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DHparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DHparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DHparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DHxparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DHxparams.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DHxparams.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSAparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSAparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_DSAparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_ECPKParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_ECPKParameters.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_ECPKParameters.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_ECPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_ECPrivateKey.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_ECPrivateKey.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_EC_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_EC_PUBKEY.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_EC_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_NETSCAPE_CERT_SEQUENCE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_NETSCAPE_CERT_SEQUENCE.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_NETSCAPE_CERT_SEQUENCE.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS7.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS7.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8PrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8PrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8PrivateKey_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8PrivateKey_nid.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8PrivateKey_nid.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8_PRIV_KEY_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8_PRIV_KEY_INFO.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PKCS8_PRIV_KEY_INFO.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_PrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSAPublicKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSAPublicKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_RSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_SSL_SESSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_SSL_SESSION.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_SSL_SESSION.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_AUX.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_AUX.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_CRL.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_CRL.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_REQ.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_REQ.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_REQ_NEW.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_REQ_NEW.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_X509_REQ_NEW.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio.html new file mode 120000 index 00000000..d814172e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio.html @@ -0,0 +1 @@ +PEM_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_CMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_CMS.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_CMS.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DHparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DHparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DHparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DHxparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DHxparams.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DHxparams.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSAparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSAparams.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_DSAparams.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_ECPKParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_ECPKParameters.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_ECPKParameters.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_ECPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_ECPrivateKey.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_ECPrivateKey.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_EC_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_EC_PUBKEY.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_EC_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_NETSCAPE_CERT_SEQUENCE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_NETSCAPE_CERT_SEQUENCE.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_NETSCAPE_CERT_SEQUENCE.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS7.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS7.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8PrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8PrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8PrivateKey_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8PrivateKey_nid.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8PrivateKey_nid.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8_PRIV_KEY_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8_PRIV_KEY_INFO.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PKCS8_PRIV_KEY_INFO.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_Parameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_Parameters.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_Parameters.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PrivateKey_traditional.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PrivateKey_traditional.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_PrivateKey_traditional.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSAPrivateKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSAPrivateKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSAPublicKey.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSAPublicKey.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSA_PUBKEY.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_RSA_PUBKEY.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_SSL_SESSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_SSL_SESSION.html new file mode 120000 index 00000000..1527243e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_SSL_SESSION.html @@ -0,0 +1 @@ +PEM_read_CMS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_AUX.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_AUX.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_CRL.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_CRL.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_REQ.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_REQ.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_REQ_NEW.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_REQ_NEW.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PEM_write_bio_X509_REQ_NEW.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_BAGS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_BAGS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_BAGS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_BAGS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_BAGS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_BAGS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_MAC_DATA_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_MAC_DATA_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_MAC_DATA_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_MAC_DATA_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_MAC_DATA_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_MAC_DATA_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_SAFEBAG_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_SAFEBAG_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_SAFEBAG_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_SAFEBAG_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_SAFEBAG_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_SAFEBAG_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS12_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS5_PBKDF2_HMAC_SHA1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS5_PBKDF2_HMAC_SHA1.html new file mode 120000 index 00000000..92c524f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS5_PBKDF2_HMAC_SHA1.html @@ -0,0 +1 @@ +PKCS5_PBKDF2_HMAC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_DIGEST_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_DIGEST_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_DIGEST_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_DIGEST_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_DIGEST_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_DIGEST_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENCRYPT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENCRYPT_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENCRYPT_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENCRYPT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENCRYPT_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENCRYPT_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENC_CONTENT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENC_CONTENT_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENC_CONTENT_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENC_CONTENT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENC_CONTENT_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENC_CONTENT_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENVELOPE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENVELOPE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENVELOPE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENVELOPE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENVELOPE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ENVELOPE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_digest.html new file mode 120000 index 00000000..f1684187 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_digest.html @@ -0,0 +1 @@ +X509_digest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_ISSUER_AND_SERIAL_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_RECIP_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_RECIP_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_RECIP_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_RECIP_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_RECIP_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_RECIP_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNED_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNED_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNED_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNED_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNED_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNED_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNER_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNER_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNER_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNER_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNER_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGNER_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGN_ENVELOPE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGN_ENVELOPE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGN_ENVELOPE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGN_ENVELOPE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGN_ENVELOPE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_SIGN_ENVELOPE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_add_certificate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_add_certificate.html new file mode 120000 index 00000000..589ceb0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_add_certificate.html @@ -0,0 +1 @@ +PKCS7_sign_add_signer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_add_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_add_crl.html new file mode 120000 index 00000000..589ceb0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_add_crl.html @@ -0,0 +1 @@ +PKCS7_sign_add_signer.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_get0_signers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_get0_signers.html new file mode 120000 index 00000000..993f3bf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_get0_signers.html @@ -0,0 +1 @@ +PKCS7_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_print_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_print_ctx.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_print_ctx.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign.html index 7d443339..c863d12b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign.html @@ -16,7 +16,6 @@
  • SYNOPSIS
  • DESCRIPTION
  • NOTES
  • -
  • NOTES
  • BUGS
  • RETURN VALUES
  • SEE ALSO
  • @@ -37,19 +36,17 @@ PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs,

    DESCRIPTION

    -

    PKCS7_sign() creates and returns a PKCS#7 signedData structure. signcert is the certificate to sign with, pkey is the corresponding private key. certs is an optional additional set of certificates to include in the PKCS#7 structure (for example any intermediate CAs in the chain).

    +

    PKCS7_sign() creates and returns a PKCS#7 signedData structure. signcert is the certificate to sign with, pkey is the corresponding private key. certs is an optional set of extra certificates to include in the PKCS#7 structure (for example any intermediate CAs in the chain).

    -

    The data to be signed is read from BIO data.

    +

    The data to be signed is read from BIO data.

    -

    flags is an optional set of flags.

    +

    flags is an optional set of flags.

    -

    NOTES

    +

    Any of the following flags (ored together) can be passed in the flags

    -

    Any of the following flags (ored together) can be passed in the flags parameter.

    +

    Many S/MIME clients expect the signed content to include valid MIME headers. If the PKCS7_TEXT flag is set MIME headers for type text/plain are prepended to the data.

    -

    Many S/MIME clients expect the signed content to include valid MIME headers. If the PKCS7_TEXT flag is set MIME headers for type text/plain are prepended to the data.

    - -

    If PKCS7_NOCERTS is set the signer's certificate will not be included in the PKCS7 structure, the signer's certificate must still be supplied in the signcert parameter though. This can reduce the size of the signature if the signers certificate can be obtained by other means: for example a previously signed message.

    +

    If PKCS7_NOCERTS is set the signer's certificate and the extra certs will not be included in the PKCS7 structure. The signer's certificate must still be supplied in the signcert parameter though. This can reduce the size of the signatures if the signer's certificates can be obtained by other means: for example a previously signed message.

    The data being signed is included in the PKCS7 structure, unless PKCS7_DETACHED is set in which case it is omitted. This is used for PKCS7 detached signatures which are used in S/MIME plaintext signed messages for example.

    @@ -59,11 +56,11 @@ PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs,

    If present the SMIMECapabilities attribute indicates support for the following algorithms: triple DES, 128 bit RC2, 64 bit RC2, DES and 40 bit RC2. If any of these algorithms is disabled then it will not be included.

    -

    If the flags PKCS7_STREAM is set then the returned PKCS7 structure is just initialized ready to perform the signing operation. The signing is however not performed and the data to be signed is not read from the data parameter. Signing is deferred until after the data has been written. In this way data can be signed in a single pass.

    +

    If the flags PKCS7_STREAM is set then the returned PKCS7 structure is just initialized ready to perform the signing operation. The signing is however not performed and the data to be signed is not read from the data parameter. Signing is deferred until after the data has been written. In this way data can be signed in a single pass.

    If the PKCS7_PARTIAL flag is set a partial PKCS7 structure is output to which additional signers and capabilities can be added before finalization.

    -

    NOTES

    +

    NOTES

    If the flag PKCS7_STREAM is set the returned PKCS7 structure is not complete and outputting its contents via a function that does not properly finalize the PKCS7 structure will give unpredictable results.

    @@ -71,11 +68,11 @@ PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs,

    If a signer is specified it will use the default digest for the signing algorithm. This is SHA1 for both RSA and DSA keys.

    -

    The certs, signcert and pkey parameters can all be NULL if the PKCS7_PARTIAL flag is set. One or more signers can be added using the function PKCS7_sign_add_signer(). PKCS7_final() must also be called to finalize the structure if streaming is not enabled. Alternative signing digests can also be specified using this method.

    +

    The certs, signcert and pkey parameters can all be NULL if the PKCS7_PARTIAL flag is set. One or more signers can be added using the function PKCS7_sign_add_signer(). PKCS7_final() must also be called to finalize the structure if streaming is not enabled. Alternative signing digests can also be specified using this method.

    -

    If signcert and pkey are NULL then a certificates only PKCS#7 structure is output.

    +

    If signcert and pkey are NULL then a certificates only PKCS#7 structure is output.

    -

    In versions of OpenSSL before 1.0.0 the signcert and pkey parameters must NOT be NULL.

    +

    In versions of OpenSSL before 1.0.0 the signcert and pkey parameters must not be NULL.

    BUGS

    @@ -91,13 +88,13 @@ PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs,

    HISTORY

    -

    The PKCS7_PARTIAL flag, and the ability for certs, signcert, and pkey parameters to be NULL were added in OpenSSL 1.0.0.

    +

    The PKCS7_PARTIAL flag, and the ability for certs, signcert, and pkey parameters to be NULL were added in OpenSSL 1.0.0.

    The PKCS7_STREAM flag was added in OpenSSL 1.0.0.

    COPYRIGHT

    -

    Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2002-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign_add_signer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign_add_signer.html index af1bec17..433ac675 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign_add_signer.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_sign_add_signer.html @@ -24,50 +24,58 @@

    NAME

    -

    PKCS7_sign_add_signer - add a signer PKCS7 signed data structure

    +

    PKCS7_sign_add_signer, PKCS7_add_certificate, PKCS7_add_crl - add information to PKCS7 structure

    SYNOPSIS

    #include <openssl/pkcs7.h>
     
     PKCS7_SIGNER_INFO *PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert,
    -                                         EVP_PKEY *pkey, const EVP_MD *md, int flags);
    + EVP_PKEY *pkey, const EVP_MD *md, int flags); +int PKCS7_add_certificate(PKCS7 *p7, X509 *cert); +int PKCS7_add_crl(PKCS7 *p7, X509_CRL *crl);

    DESCRIPTION

    -

    PKCS7_sign_add_signer() adds a signer with certificate signcert and private key pkey using message digest md to a PKCS7 signed data structure p7.

    +

    PKCS7_sign_add_signer() adds a signer with certificate signcert and private key pkey using message digest md to a PKCS7 signed data structure p7.

    -

    The PKCS7 structure should be obtained from an initial call to PKCS7_sign() with the flag PKCS7_PARTIAL set or in the case or re-signing a valid PKCS7 signed data structure.

    +

    The PKCS7 structure should be obtained from an initial call to PKCS7_sign() with the flag PKCS7_PARTIAL set or in the case or re-signing a valid PKCS#7 signed data structure.

    -

    If the md parameter is NULL then the default digest for the public key algorithm will be used.

    +

    If the md parameter is NULL then the default digest for the public key algorithm will be used.

    -

    Unless the PKCS7_REUSE_DIGEST flag is set the returned PKCS7 structure is not complete and must be finalized either by streaming (if applicable) or a call to PKCS7_final().

    +

    Unless the PKCS7_REUSE_DIGEST flag is set the returned PKCS7 structure is not complete and must be finalized either by streaming (if applicable) or a call to PKCS7_final().

    NOTES

    The main purpose of this function is to provide finer control over a PKCS#7 signed data structure where the simpler PKCS7_sign() function defaults are not appropriate. For example if multiple signers or non default digest algorithms are needed.

    -

    Any of the following flags (ored together) can be passed in the flags parameter.

    +

    Any of the following flags (ored together) can be passed in the flags parameter.

    -

    If PKCS7_REUSE_DIGEST is set then an attempt is made to copy the content digest value from the PKCS7 structure: to add a signer to an existing structure. An error occurs if a matching digest value cannot be found to copy. The returned PKCS7 structure will be valid and finalized when this flag is set.

    +

    If PKCS7_REUSE_DIGEST is set then an attempt is made to copy the content digest value from the PKCS7 structure: to add a signer to an existing structure. An error occurs if a matching digest value cannot be found to copy. The returned PKCS7 structure will be valid and finalized when this flag is set.

    If PKCS7_PARTIAL is set in addition to PKCS7_REUSE_DIGEST then the PKCS7_SIGNER_INO structure will not be finalized so additional attributes can be added. In this case an explicit call to PKCS7_SIGNER_INFO_sign() is needed to finalize it.

    -

    If PKCS7_NOCERTS is set the signer's certificate will not be included in the PKCS7 structure, the signer's certificate must still be supplied in the signcert parameter though. This can reduce the size of the signature if the signers certificate can be obtained by other means: for example a previously signed message.

    +

    If PKCS7_NOCERTS is set the signer's certificate will not be included in the PKCS7 structure, the signer's certificate must still be supplied in the signcert parameter though. This can reduce the size of the signature if the signers certificate can be obtained by other means: for example a previously signed message.

    The signedData structure includes several PKCS#7 authenticatedAttributes including the signing time, the PKCS#7 content type and the supported list of ciphers in an SMIMECapabilities attribute. If PKCS7_NOATTR is set then no authenticatedAttributes will be used. If PKCS7_NOSMIMECAP is set then just the SMIMECapabilities are omitted.

    If present the SMIMECapabilities attribute indicates support for the following algorithms: triple DES, 128 bit RC2, 64 bit RC2, DES and 40 bit RC2. If any of these algorithms is disabled then it will not be included.

    -

    PKCS7_sign_add_signers() returns an internal pointer to the PKCS7_SIGNER_INFO structure just added, this can be used to set additional attributes before it is finalized.

    +

    PKCS7_sign_add_signers() returns an internal pointer to the PKCS7_SIGNER_INFO structure just added, which can be used to set additional attributes before it is finalized.

    + +

    PKCS7_add_certificate() adds to the PKCS7 structure p7 the certificate cert, which may be an end-entity (signer) certificate or a CA certificate useful for chain building. This is done internally by PKCS7_sign_ex(3) and similar signing functions. It may have to be used before calling PKCS7_verify(3) in order to provide any missing certificate(s) needed for verification.

    + +

    PKCS7_add_crl() adds the CRL crl to the PKCS7 structure p7. This may be called to provide certificate status information to be included when signing or to use when verifying the PKCS7 structure.

    RETURN VALUES

    -

    PKCS7_sign_add_signers() returns an internal pointer to the PKCS7_SIGNER_INFO structure just added or NULL if an error occurs.

    +

    PKCS7_sign_add_signers() returns an internal pointer to the PKCS7_SIGNER_INFO structure just added or NULL if an error occurs.

    + +

    PKCS7_add_certificate() and PKCS7_add_crl() return 1 on success, 0 on error.

    SEE ALSO

    -

    ERR_get_error(3), PKCS7_sign(3), PKCS7_final(3),

    +

    ERR_get_error(3), PKCS7_sign_ex(3), PKCS7_final(3), PKCS7_verify(3)

    HISTORY

    @@ -75,7 +83,7 @@ PKCS7_SIGNER_INFO *PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert,

    COPYRIGHT

    -

    Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2007-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_verify.html index 140846c3..de83b12c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_verify.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS7_verify.html @@ -38,67 +38,67 @@ STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags);

    DESCRIPTION

    -

    PKCS7_verify() verifies a PKCS#7 signedData structure. p7 is the PKCS7 structure to verify. certs is a set of certificates in which to search for the signer's certificate. store is a trusted certificate store (used for chain verification). indata is the signed data if the content is not present in p7 (that is it is detached). The content is written to out if it is not NULL.

    +

    PKCS7_verify() is very similar to CMS_verify(3). It verifies a PKCS#7 signedData structure given in p7. The optional certs parameter refers to a set of certificates in which to search for signer's certificates. p7 may contain extra untrusted CA certificates that may be used for chain building as well as CRLs that may be used for certificate validation. store may be NULL or point to the trusted certificate store to use for chain verification. indata refers to the signed data if the content is detached from p7. Otherwise indata should be NULL, and then the signed data must be in p7. The content is written to the BIO out unless it is NULL. flags is an optional set of flags, which can be used to modify the operation.

    -

    flags is an optional set of flags, which can be used to modify the verify operation.

    - -

    PKCS7_get0_signers() retrieves the signer's certificates from p7, it does not check their validity or whether any signatures are valid. The certs and flags parameters have the same meanings as in PKCS7_verify().

    +

    PKCS7_get0_signers() retrieves the signer's certificates from p7, it does not check their validity or whether any signatures are valid. The certs and flags parameters have the same meanings as in PKCS7_verify().

    VERIFY PROCESS

    Normally the verify process proceeds as follows.

    -

    Initially some sanity checks are performed on p7. The type of p7 must be signedData. There must be at least one signature on the data and if the content is detached indata cannot be NULL. If the content is not detached and indata is not NULL, then the structure has both embedded and external content. To treat this as an error, use the flag PKCS7_NO_DUAL_CONTENT. The default behavior allows this, for compatibility with older versions of OpenSSL.

    +

    Initially some sanity checks are performed on p7. The type of p7 must be SignedData. There must be at least one signature on the data and if the content is detached indata cannot be NULL. If the content is not detached and indata is not NULL then the structure has both embedded and external content. To treat this as an error, use the flag PKCS7_NO_DUAL_CONTENT. The default behavior allows this, for compatibility with older versions of OpenSSL.

    -

    An attempt is made to locate all the signer's certificates, first looking in the certs parameter (if it is not NULL) and then looking in any certificates contained in the p7 structure itself. If any signer's certificates cannot be located the operation fails.

    +

    An attempt is made to locate all the signer's certificates, first looking in the certs parameter (if it is not NULL). Then they are looked up in any certificates contained in the p7 structure unless PKCS7_NOINTERN is set. If any signer's certificates cannot be located the operation fails.

    -

    Each signer's certificate is chain verified using the smimesign purpose and the supplied trusted certificate store. Any internal certificates in the message are used as untrusted CAs. If any chain verify fails an error code is returned.

    +

    Each signer's certificate is chain verified using the smimesign purpose and using the trusted certificate store store if supplied. Any internal certificates in the message, which may have been added using PKCS7_add_certificate(3), are used as untrusted CAs unless PKCS7_NOCHAIN is set. If CRL checking is enabled in store and PKCS7_NOCRL is not set, any internal CRLs, which may have been added using PKCS7_add_crl(3), are used in addition to attempting to look them up in store. If store is not NULL and any chain verify fails an error code is returned.

    -

    Finally the signed content is read (and written to out is it is not NULL) and the signature's checked.

    +

    Finally the signed content is read (and written to out unless it is NULL) and the signature is checked.

    -

    If all signature's verify correctly then the function is successful.

    +

    If all signatures verify correctly then the function is successful.

    -

    Any of the following flags (ored together) can be passed in the flags parameter to change the default verify behaviour. Only the flag PKCS7_NOINTERN is meaningful to PKCS7_get0_signers().

    +

    Any of the following flags (ored together) can be passed in the flags parameter to change the default verify behaviour. Only the flag PKCS7_NOINTERN is meaningful to PKCS7_get0_signers().

    -

    If PKCS7_NOINTERN is set the certificates in the message itself are not searched when locating the signer's certificate. This means that all the signers certificates must be in the certs parameter.

    +

    If PKCS7_NOINTERN is set the certificates in the message itself are not searched when locating the signer's certificates. This means that all the signer's certificates must be in the certs parameter.

    -

    If the PKCS7_TEXT flag is set MIME headers for type text/plain are deleted from the content. If the content is not of type text/plain then an error is returned.

    +

    If PKCS7_NOCRL is set and CRL checking is enabled in store then any CRLs in the message itself are ignored.

    + +

    If the PKCS7_TEXT flag is set MIME headers for type text/plain are deleted from the content. If the content is not of type text/plain then an error is returned.

    If PKCS7_NOVERIFY is set the signer's certificates are not chain verified.

    -

    If PKCS7_NOCHAIN is set then the certificates contained in the message are not used as untrusted CAs. This means that the whole verify chain (apart from the signer's certificate) must be contained in the trusted store.

    +

    If PKCS7_NOCHAIN is set then the certificates contained in the message are not used as untrusted CAs. This means that the whole verify chain (apart from the signer's certificates) must be contained in the trusted store.

    If PKCS7_NOSIGS is set then the signatures on the data are not checked.

    NOTES

    -

    One application of PKCS7_NOINTERN is to only accept messages signed by a small number of certificates. The acceptable certificates would be passed in the certs parameter. In this case if the signer is not one of the certificates supplied in certs then the verify will fail because the signer cannot be found.

    +

    One application of PKCS7_NOINTERN is to only accept messages signed by a small number of certificates. The acceptable certificates would be passed in the certs parameter. In this case if the signer's certificate is not one of the certificates supplied in certs then the verify will fail because the signer cannot be found.

    -

    Care should be taken when modifying the default verify behaviour, for example setting PKCS7_NOVERIFY|PKCS7_NOSIGS will totally disable all verification and any signed message will be considered valid. This combination is however useful if one merely wishes to write the content to out and its validity is not considered important.

    +

    Care should be taken when modifying the default verify behaviour, for example setting PKCS7_NOVERIFY|PKCS7_NOSIGS will totally disable all verification and any signed message will be considered valid. This combination is however useful if one merely wishes to write the content to out and its validity is not considered important.

    -

    Chain verification should arguably be performed using the signing time rather than the current time. However since the signing time is supplied by the signer it cannot be trusted without additional evidence (such as a trusted timestamp).

    +

    Chain verification should arguably be performed using the signing time rather than the current time. However, since the signing time is supplied by the signer it cannot be trusted without additional evidence (such as a trusted timestamp).

    RETURN VALUES

    -

    PKCS7_verify() returns one for a successful verification and zero if an error occurs.

    +

    PKCS7_verify() returns 1 for a successful verification and 0 if an error occurs.

    -

    PKCS7_get0_signers() returns all signers or NULL if an error occurred.

    +

    PKCS7_get0_signers() returns all signers or NULL if an error occurred.

    -

    The error can be obtained from ERR_get_error(3)

    +

    The error can be obtained from ERR_get_error(3).

    BUGS

    -

    The trusted certificate store is not searched for the signers certificate, this is primarily due to the inadequacies of the current X509_STORE functionality.

    +

    The trusted certificate store is not searched for the signer's certificates. This is primarily due to the inadequacies of the current X509_STORE functionality.

    -

    The lack of single pass processing and need to hold all data in memory as mentioned in PKCS7_sign() also applies to PKCS7_verify().

    +

    The lack of single pass processing means that the signed content must all be held in memory if it is not detached.

    SEE ALSO

    -

    ERR_get_error(3), PKCS7_sign(3)

    +

    CMS_verify(3), PKCS7_add_certificate(3), PKCS7_add_crl(3), ERR_get_error(3), PKCS7_sign(3)

    COPYRIGHT

    -

    Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2002-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS8_PRIV_KEY_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS8_PRIV_KEY_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS8_PRIV_KEY_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS8_PRIV_KEY_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS8_PRIV_KEY_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKCS8_PRIV_KEY_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKEY_USAGE_PERIOD_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKEY_USAGE_PERIOD_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKEY_USAGE_PERIOD_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKEY_USAGE_PERIOD_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKEY_USAGE_PERIOD_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PKEY_USAGE_PERIOD_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYINFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYINFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYINFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYINFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYINFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYINFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYQUALINFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYQUALINFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYQUALINFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYQUALINFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYQUALINFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICYQUALINFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_CONSTRAINTS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_CONSTRAINTS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_CONSTRAINTS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_CONSTRAINTS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_CONSTRAINTS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_CONSTRAINTS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_MAPPING_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_MAPPING_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_MAPPING_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_MAPPING_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_MAPPING_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/POLICY_MAPPING_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFOS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_addProfessionInfo.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_addProfessionInfo.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_addProfessionInfo.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_namingAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_namingAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_namingAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_professionItems.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_professionItems.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_professionItems.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_professionOIDs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_professionOIDs.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_professionOIDs.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_registrationNumber.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_registrationNumber.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_get0_registrationNumber.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_addProfessionInfo.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_addProfessionInfo.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_addProfessionInfo.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_namingAuthority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_namingAuthority.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_namingAuthority.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_professionItems.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_professionItems.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_professionItems.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_professionOIDs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_professionOIDs.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_professionOIDs.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_registrationNumber.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_registrationNumber.html new file mode 120000 index 00000000..c372727d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROFESSION_INFO_set0_registrationNumber.html @@ -0,0 +1 @@ +ADMISSIONS.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_CERT_INFO_EXTENSION_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_CERT_INFO_EXTENSION_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_CERT_INFO_EXTENSION_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_CERT_INFO_EXTENSION_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_CERT_INFO_EXTENSION_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_CERT_INFO_EXTENSION_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_POLICY_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_POLICY_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_POLICY_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_POLICY_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_POLICY_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/PROXY_POLICY_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_bytes.html new file mode 120000 index 00000000..f346184a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_bytes.html @@ -0,0 +1 @@ +RAND_DRBG_generate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_cleanup_entropy_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_cleanup_entropy_fn.html new file mode 120000 index 00000000..49a01e4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_cleanup_entropy_fn.html @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_cleanup_nonce_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_cleanup_nonce_fn.html new file mode 120000 index 00000000..49a01e4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_cleanup_nonce_fn.html @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_free.html new file mode 120000 index 00000000..eee2d7e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_free.html @@ -0,0 +1 @@ +RAND_DRBG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get0_private.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get0_private.html new file mode 120000 index 00000000..8c1287da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get0_private.html @@ -0,0 +1 @@ +RAND_DRBG_get0_master.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get0_public.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get0_public.html new file mode 120000 index 00000000..8c1287da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get0_public.html @@ -0,0 +1 @@ +RAND_DRBG_get0_master.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_entropy_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_entropy_fn.html new file mode 120000 index 00000000..49a01e4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_entropy_fn.html @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_ex_data.html new file mode 120000 index 00000000..050b2e75 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_ex_data.html @@ -0,0 +1 @@ +RAND_DRBG_set_ex_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_ex_new_index.html new file mode 120000 index 00000000..050b2e75 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_ex_new_index.html @@ -0,0 +1 @@ +RAND_DRBG_set_ex_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_nonce_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_nonce_fn.html new file mode 120000 index 00000000..49a01e4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_get_nonce_fn.html @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_instantiate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_instantiate.html new file mode 120000 index 00000000..eee2d7e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_instantiate.html @@ -0,0 +1 @@ +RAND_DRBG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_new.html index 950459c3..8253c32c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_new.html @@ -61,7 +61,7 @@ void RAND_DRBG_free(RAND_DRBG *drbg);

    Currently, all DRBG types are based on AES-CTR, so type can be one of the following values: NID_aes_128_ctr, NID_aes_192_ctr, NID_aes_256_ctr. Before the DRBG can be used to generate random bits, it is necessary to set its type and to instantiate it.

    -

    The optional flags argument specifies a set of bit flags which can be joined using the | operator. Currently, the only flag is RAND_DRBG_FLAG_CTR_NO_DF, which disables the use of a the derivation function ctr_df. For an explanation, see [NIST SP 800-90A Rev. 1].

    +

    The optional flags argument specifies a set of bit flags which can be joined using the | operator. Currently, the only flag is RAND_DRBG_FLAG_CTR_NO_DF, which disables the use of the derivation function ctr_df. For an explanation, see [NIST SP 800-90A Rev. 1].

    If a parent instance is specified then this will be used instead of the default entropy source for reseeding the drbg. It is said that the drbg is chained to its parent. For more information, see the NOTES section.

    @@ -93,7 +93,7 @@ void RAND_DRBG_free(RAND_DRBG *drbg);

    COPYRIGHT

    -

    Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2017-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_secure_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_secure_new.html new file mode 120000 index 00000000..eee2d7e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_secure_new.html @@ -0,0 +1 @@ +RAND_DRBG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set.html new file mode 120000 index 00000000..eee2d7e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set.html @@ -0,0 +1 @@ +RAND_DRBG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_callbacks.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_callbacks.html index 4d162b17..bba40812 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_callbacks.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_callbacks.html @@ -78,7 +78,7 @@ typedef void (*RAND_DRBG_cleanup_nonce_fn)(

    If prediction_resistance was requested and the random source of the DRBG does not satisfy the conditions requested by [NIST SP 800-90C], then it must also indicate an error by returning a buffer length of 0. See NOTES section for more details.

    -

    The cleanup_entropy() callback is called from the drbg to to clear and free the buffer allocated previously by get_entropy(). The values out and outlen are the random buffer's address and length, as returned by the get_entropy() callback.

    +

    The cleanup_entropy() callback is called from the drbg to clear and free the buffer allocated previously by get_entropy(). The values out and outlen are the random buffer's address and length, as returned by the get_entropy() callback.

    The get_nonce() and cleanup_nonce() callbacks are used to obtain a nonce and free it again. A nonce is only required for instantiation (not for reseeding) and only in the case where the DRBG uses a derivation function. The callbacks are analogous to get_entropy() and cleanup_entropy(), except for the missing prediction_resistance flag.

    @@ -108,7 +108,7 @@ typedef void (*RAND_DRBG_cleanup_nonce_fn)(

    COPYRIGHT

    -

    Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2017-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_defaults.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_defaults.html new file mode 120000 index 00000000..eee2d7e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_defaults.html @@ -0,0 +1 @@ +RAND_DRBG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_defaults.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_defaults.html new file mode 120000 index 00000000..56ca68ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_defaults.html @@ -0,0 +1 @@ +RAND_DRBG_reseed.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_interval.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_interval.html new file mode 120000 index 00000000..56ca68ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_interval.html @@ -0,0 +1 @@ +RAND_DRBG_reseed.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_time_interval.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_time_interval.html new file mode 120000 index 00000000..56ca68ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_set_reseed_time_interval.html @@ -0,0 +1 @@ +RAND_DRBG_reseed.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_uninstantiate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_uninstantiate.html new file mode 120000 index 00000000..eee2d7e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_DRBG_uninstantiate.html @@ -0,0 +1 @@ +RAND_DRBG_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_OpenSSL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_OpenSSL.html new file mode 120000 index 00000000..d0c1369e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_OpenSSL.html @@ -0,0 +1 @@ +RAND_set_rand_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_add.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_add.html index ec1ce24b..d01c00f0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_add.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_add.html @@ -56,7 +56,7 @@ void RAND_screen(void);

    RAND_seed() is equivalent to RAND_add() with randomness set to num.

    -

    RAND_keep_random_devices_open() is used to control file descriptor usage by the random seed sources. Some seed sources maintain open file descriptors by default, which allows such sources to operate in a chroot(2) jail without the associated device nodes being available. When the keep argument is zero, this call disables the retention of file descriptors. Conversely, a non-zero argument enables the retention of file descriptors. This function is usually called during initialization and it takes effect immediately.

    +

    RAND_keep_random_devices_open() is used to control file descriptor usage by the random seed sources. Some seed sources maintain open file descriptors by default, which allows such sources to operate in a chroot(2) jail without the associated device nodes being available. When the keep argument is zero, this call disables the retention of file descriptors. Conversely, a nonzero argument enables the retention of file descriptors. This function is usually called during initialization and it takes effect immediately.

    RAND_event() and RAND_screen() are equivalent to RAND_poll() and exist for compatibility reasons only. See HISTORY section below.

    @@ -80,7 +80,7 @@ void RAND_screen(void);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_egd_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_egd_bytes.html new file mode 120000 index 00000000..73f0a9e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_egd_bytes.html @@ -0,0 +1 @@ +RAND_egd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_event.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_event.html new file mode 120000 index 00000000..cbe620ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_event.html @@ -0,0 +1 @@ +RAND_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_file_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_file_name.html new file mode 120000 index 00000000..0ebbdff2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_file_name.html @@ -0,0 +1 @@ +RAND_load_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_get_rand_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_get_rand_method.html new file mode 120000 index 00000000..d0c1369e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_get_rand_method.html @@ -0,0 +1 @@ +RAND_set_rand_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_keep_random_devices_open.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_keep_random_devices_open.html new file mode 120000 index 00000000..cbe620ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_keep_random_devices_open.html @@ -0,0 +1 @@ +RAND_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_load_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_load_file.html index 8e48e5ff..18161bed 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_load_file.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_load_file.html @@ -36,13 +36,13 @@ const char *RAND_file_name(char *buf, size_t num);

    DESCRIPTION

    -

    RAND_load_file() reads a number of bytes from file filename and adds them to the PRNG. If max_bytes is non-negative, up to max_bytes are read; if max_bytes is -1, the complete file is read. Do not load the same file multiple times unless its contents have been updated by RAND_write_file() between reads. Also, note that filename should be adequately protected so that an attacker cannot replace or examine the contents. If filename is not a regular file, then user is considered to be responsible for any side effects, e.g. non-anticipated blocking or capture of controlling terminal.

    +

    RAND_load_file() reads a number of bytes from file filename and adds them to the PRNG. If max_bytes is nonnegative, up to max_bytes are read; if max_bytes is -1, the complete file is read. Do not load the same file multiple times unless its contents have been updated by RAND_write_file() between reads. Also, note that filename should be adequately protected so that an attacker cannot replace or examine the contents. If filename is not a regular file, then user is considered to be responsible for any side effects, e.g. non-anticipated blocking or capture of controlling terminal.

    RAND_write_file() writes a number of random bytes (currently 128) to file filename which can be used to initialize the PRNG by calling RAND_load_file() in a later session.

    RAND_file_name() generates a default path for the random seed file. buf points to a buffer of size num in which to store the filename.

    -

    On all systems, if the environment variable RANDFILE is set, its value will be used as the seed file name. Otherwise, the file is called .rnd, found in platform dependent locations:

    +

    On all systems, if the environment variable RANDFILE is set, its value will be used as the seed filename. Otherwise, the file is called .rnd, found in platform dependent locations:

    @@ -66,7 +66,7 @@ const char *RAND_file_name(char *buf, size_t num);
    -

    If $HOME (on non-Windows and non-VMS system) is not set either, or num is too small for the path name, an error occurs.

    +

    If $HOME (on non-Windows and non-VMS system) is not set either, or num is too small for the pathname, an error occurs.

    RETURN VALUES

    @@ -82,7 +82,7 @@ const char *RAND_file_name(char *buf, size_t num);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_poll.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_poll.html new file mode 120000 index 00000000..cbe620ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_poll.html @@ -0,0 +1 @@ +RAND_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_priv_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_priv_bytes.html new file mode 120000 index 00000000..dc8e80b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_priv_bytes.html @@ -0,0 +1 @@ +RAND_bytes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_pseudo_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_pseudo_bytes.html new file mode 120000 index 00000000..dc8e80b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_pseudo_bytes.html @@ -0,0 +1 @@ +RAND_bytes.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_query_egd_bytes.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_query_egd_bytes.html new file mode 120000 index 00000000..73f0a9e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_query_egd_bytes.html @@ -0,0 +1 @@ +RAND_egd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_screen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_screen.html new file mode 120000 index 00000000..cbe620ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_screen.html @@ -0,0 +1 @@ +RAND_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_seed.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_seed.html new file mode 120000 index 00000000..cbe620ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_seed.html @@ -0,0 +1 @@ +RAND_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_status.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_status.html new file mode 120000 index 00000000..cbe620ba --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_status.html @@ -0,0 +1 @@ +RAND_add.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_write_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_write_file.html new file mode 120000 index 00000000..0ebbdff2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RAND_write_file.html @@ -0,0 +1 @@ +RAND_load_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RC4.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RC4.html new file mode 120000 index 00000000..0afdb559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RC4.html @@ -0,0 +1 @@ +RC4_set_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160.html new file mode 120000 index 00000000..760d7ea6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160.html @@ -0,0 +1 @@ +RIPEMD160_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160_Final.html new file mode 120000 index 00000000..760d7ea6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160_Final.html @@ -0,0 +1 @@ +RIPEMD160_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160_Update.html new file mode 120000 index 00000000..760d7ea6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RIPEMD160_Update.html @@ -0,0 +1 @@ +RIPEMD160_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSAPrivateKey_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSAPrivateKey_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSAPrivateKey_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSAPublicKey_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSAPublicKey_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSAPublicKey_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_OAEP_PARAMS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_OAEP_PARAMS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_OAEP_PARAMS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_OAEP_PARAMS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_OAEP_PARAMS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_OAEP_PARAMS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PKCS1_OpenSSL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PKCS1_OpenSSL.html new file mode 120000 index 00000000..8a9e65b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PKCS1_OpenSSL.html @@ -0,0 +1 @@ +RSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PSS_PARAMS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PSS_PARAMS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PSS_PARAMS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PSS_PARAMS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PSS_PARAMS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_PSS_PARAMS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_bits.html new file mode 120000 index 00000000..b38956d2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_bits.html @@ -0,0 +1 @@ +RSA_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_blinding_off.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_blinding_off.html new file mode 120000 index 00000000..e53df9c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_blinding_off.html @@ -0,0 +1 @@ +RSA_blinding_on.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_blinding_on.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_blinding_on.html index 31616b51..d296bc41 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_blinding_on.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_blinding_on.html @@ -35,7 +35,7 @@ void RSA_blinding_off(RSA *rsa);

    RSA is vulnerable to timing attacks. In a setup where attackers can measure the time of RSA decryption or signature operations, blinding must be used to protect the RSA operation from that attack.

    -

    RSA_blinding_on() turns blinding on for key rsa and generates a random blinding factor. ctx is NULL or a pre-allocated and initialized BN_CTX.

    +

    RSA_blinding_on() turns blinding on for key rsa and generates a random blinding factor. ctx is NULL or a preallocated and initialized BN_CTX.

    RSA_blinding_off() turns blinding off and frees the memory used for the blinding factor.

    @@ -47,7 +47,7 @@ void RSA_blinding_off(RSA *rsa);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_check_key_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_check_key_ex.html new file mode 120000 index 00000000..6b4f007c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_check_key_ex.html @@ -0,0 +1 @@ +RSA_check_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_clear_flags.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_clear_flags.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_flags.html new file mode 120000 index 00000000..8a9e65b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_flags.html @@ -0,0 +1 @@ +RSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_free.html new file mode 120000 index 00000000..420f1320 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_free.html @@ -0,0 +1 @@ +RSA_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_generate_key_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_generate_key_ex.html new file mode 120000 index 00000000..4651f655 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_generate_key_ex.html @@ -0,0 +1 @@ +RSA_generate_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_generate_multi_prime_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_generate_multi_prime_key.html new file mode 120000 index 00000000..4651f655 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_generate_multi_prime_key.html @@ -0,0 +1 @@ +RSA_generate_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_crt_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_crt_params.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_crt_params.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_d.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_d.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_d.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_dmp1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_dmp1.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_dmp1.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_dmq1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_dmq1.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_dmq1.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_e.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_e.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_e.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_engine.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_engine.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_engine.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_factors.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_factors.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_factors.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_iqmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_iqmp.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_iqmp.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_multi_prime_crt_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_multi_prime_crt_params.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_multi_prime_crt_params.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_multi_prime_factors.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_multi_prime_factors.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_multi_prime_factors.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_n.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_n.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_n.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_p.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_p.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_p.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_pss_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_pss_params.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_pss_params.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_q.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_q.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get0_q.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_default_method.html new file mode 120000 index 00000000..8a9e65b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_default_method.html @@ -0,0 +1 @@ +RSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_method.html new file mode 120000 index 00000000..8a9e65b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_method.html @@ -0,0 +1 @@ +RSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_multi_prime_extra_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_multi_prime_extra_count.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_multi_prime_extra_count.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_version.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_get_version.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_dup.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_dup.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_free.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_free.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get0_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get0_app_data.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get0_app_data.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get0_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get0_name.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get0_name.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_bn_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_bn_mod_exp.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_bn_mod_exp.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_finish.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_finish.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_flags.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_flags.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_init.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_init.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_keygen.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_keygen.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_mod_exp.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_mod_exp.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_multi_prime_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_multi_prime_keygen.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_multi_prime_keygen.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_priv_dec.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_priv_dec.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_priv_dec.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_priv_enc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_priv_enc.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_priv_enc.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_pub_dec.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_pub_dec.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_pub_dec.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_pub_enc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_pub_enc.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_pub_enc.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_sign.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_sign.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_verify.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_get_verify.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set0_app_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set0_app_data.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set0_app_data.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set1_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set1_name.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set1_name.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_bn_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_bn_mod_exp.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_bn_mod_exp.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_finish.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_finish.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_finish.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_flags.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_flags.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_init.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_init.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_keygen.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_keygen.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_mod_exp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_mod_exp.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_mod_exp.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_multi_prime_keygen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_multi_prime_keygen.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_multi_prime_keygen.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_priv_dec.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_priv_dec.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_priv_dec.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_priv_enc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_priv_enc.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_priv_enc.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_pub_dec.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_pub_dec.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_pub_dec.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_pub_enc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_pub_enc.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_pub_enc.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_sign.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_sign.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_verify.html new file mode 120000 index 00000000..b38483a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_meth_set_verify.html @@ -0,0 +1 @@ +RSA_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_new_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_new_method.html new file mode 120000 index 00000000..8a9e65b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_new_method.html @@ -0,0 +1 @@ +RSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_OAEP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_OAEP.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_OAEP.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_OAEP_mgf1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_OAEP_mgf1.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_OAEP_mgf1.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_type_2.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_type_2.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_PKCS1_type_2.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_SSLv23.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_SSLv23.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_SSLv23.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_none.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_none.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_add_none.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_OAEP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_OAEP.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_OAEP.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_OAEP_mgf1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_OAEP_mgf1.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_OAEP_mgf1.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_type_1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_type_1.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_type_1.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_type_2.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_type_2.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_PKCS1_type_2.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_SSLv23.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_SSLv23.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_SSLv23.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_none.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_none.html new file mode 120000 index 00000000..0e3b7fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_padding_check_none.html @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_print_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_print_fp.html new file mode 120000 index 00000000..a46aa617 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_print_fp.html @@ -0,0 +1 @@ +RSA_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_private_decrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_private_decrypt.html new file mode 120000 index 00000000..354b30e7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_private_decrypt.html @@ -0,0 +1 @@ +RSA_public_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_private_encrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_private_encrypt.html index f8ffeb19..b65e9a14 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_private_encrypt.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_private_encrypt.html @@ -22,7 +22,7 @@

    NAME

    -

    RSA_private_encrypt, RSA_public_decrypt - low level signature operations

    +

    RSA_private_encrypt, RSA_public_decrypt - low-level signature operations

    SYNOPSIS

    @@ -36,7 +36,7 @@ int RSA_public_decrypt(int flen, unsigned char *from,

    DESCRIPTION

    -

    These functions handle RSA signatures at a low level.

    +

    These functions handle RSA signatures at a low-level.

    RSA_private_encrypt() signs the flen bytes at from (usually a message digest with an algorithm identifier) using the private key rsa and stores the signature in to. to must point to RSA_size(rsa) bytes of memory.

    @@ -72,7 +72,7 @@ int RSA_public_decrypt(int flen, unsigned char *from,

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_public_decrypt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_public_decrypt.html new file mode 120000 index 00000000..b9c3920e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_public_decrypt.html @@ -0,0 +1 @@ +RSA_private_encrypt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_security_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_security_bits.html new file mode 120000 index 00000000..b38956d2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_security_bits.html @@ -0,0 +1 @@ +RSA_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_crt_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_crt_params.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_crt_params.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_factors.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_factors.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_factors.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_key.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_key.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_multi_prime_params.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_multi_prime_params.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set0_multi_prime_params.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_default_method.html new file mode 120000 index 00000000..8a9e65b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_default_method.html @@ -0,0 +1 @@ +RSA_set_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_flags.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_flags.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_method.html index b45f26bc..09a09cab 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_method.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_set_method.html @@ -55,7 +55,7 @@ RSA *RSA_new_method(ENGINE *engine);

    RSA_get_default_method() returns a pointer to the current default RSA_METHOD. However, the meaningfulness of this result is dependent on whether the ENGINE API is being used, so this function is no longer recommended.

    -

    RSA_set_method() selects meth to perform all operations using the key rsa. This will replace the RSA_METHOD used by the RSA key and if the previous method was supplied by an ENGINE, the handle to that ENGINE will be released during the change. It is possible to have RSA keys that only work with certain RSA_METHOD implementations (eg. from an ENGINE module that supports embedded hardware-protected keys), and in such cases attempting to change the RSA_METHOD for the key can have unexpected results.

    +

    RSA_set_method() selects meth to perform all operations using the key rsa. This will replace the RSA_METHOD used by the RSA key and if the previous method was supplied by an ENGINE, the handle to that ENGINE will be released during the change. It is possible to have RSA keys that only work with certain RSA_METHOD implementations (e.g. from an ENGINE module that supports embedded hardware-protected keys), and in such cases attempting to change the RSA_METHOD for the key can have unexpected results.

    RSA_get_method() returns a pointer to the RSA_METHOD being used by rsa. This method may or may not be supplied by an ENGINE implementation, but if it is, the return value can only be guaranteed to be valid as long as the RSA key itself is valid and does not have its implementation changed by RSA_set_method().

    @@ -149,7 +149,7 @@ RSA *RSA_new_method(ENGINE *engine);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_test_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_test_flags.html new file mode 120000 index 00000000..82d5ddf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_test_flags.html @@ -0,0 +1 @@ +RSA_get0_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_verify.html new file mode 120000 index 00000000..a88ac39e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_verify.html @@ -0,0 +1 @@ +RSA_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_verify_ASN1_OCTET_STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_verify_ASN1_OCTET_STRING.html new file mode 120000 index 00000000..3637247a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/RSA_verify_ASN1_OCTET_STRING.html @@ -0,0 +1 @@ +RSA_sign_ASN1_OCTET_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCRYPT_PARAMS_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCRYPT_PARAMS_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCRYPT_PARAMS_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCRYPT_PARAMS_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCRYPT_PARAMS_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCRYPT_PARAMS_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_free.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_free.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_print.html new file mode 120000 index 00000000..c7ef1331 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_print.html @@ -0,0 +1 @@ +SCT_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_validate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_validate.html new file mode 120000 index 00000000..bc2f3e42 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_LIST_validate.html @@ -0,0 +1 @@ +SCT_validate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_free.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_free.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_extensions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_extensions.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_extensions.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_log_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_log_id.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_log_id.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_signature.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get0_signature.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_log_entry_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_log_entry_type.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_log_entry_type.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_signature_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_signature_nid.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_signature_nid.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_source.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_source.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_source.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_timestamp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_timestamp.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_timestamp.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_validation_status.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_validation_status.html new file mode 120000 index 00000000..bc2f3e42 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_validation_status.html @@ -0,0 +1 @@ +SCT_validate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_version.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_get_version.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_new_from_base64.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_new_from_base64.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_new_from_base64.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_extensions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_extensions.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_extensions.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_log_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_log_id.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_log_id.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_signature.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set0_signature.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_extensions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_extensions.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_extensions.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_log_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_log_id.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_log_id.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_signature.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set1_signature.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_log_entry_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_log_entry_type.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_log_entry_type.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_signature_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_signature_nid.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_signature_nid.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_source.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_source.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_source.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_timestamp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_timestamp.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_timestamp.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_version.html new file mode 120000 index 00000000..f2292fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_set_version.html @@ -0,0 +1 @@ +SCT_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_validation_status_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_validation_status_string.html new file mode 120000 index 00000000..c7ef1331 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SCT_validation_status_string.html @@ -0,0 +1 @@ +SCT_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Final.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Final.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Init.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Init.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Update.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA1_Update.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Final.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Final.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Init.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Init.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Update.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA224_Update.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Final.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Final.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Init.html index b16a0a5c..23fbd28c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Init.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Init.html @@ -77,8 +77,6 @@ unsigned char *SHA512(const unsigned char *d, size_t n,

    The SHA224, SHA256, SHA384 and SHA512 families of functions operate in the same way as for the SHA1 functions. Note that SHA224 and SHA256 use a SHA256_CTX object instead of SHA_CTX. SHA384 and SHA512 use SHA512_CTX. The buffer md must have space for the output from the SHA variant being used (defined by SHA224_DIGEST_LENGTH, SHA256_DIGEST_LENGTH, SHA384_DIGEST_LENGTH and SHA512_DIGEST_LENGTH). Also note that, as for the SHA1() function above, the SHA224(), SHA256(), SHA384() and SHA512() functions are not thread safe if md is NULL.

    -

    The predecessor of SHA-1, SHA, is also implemented, but it should be used only when backward compatibility is required.

    -

    RETURN VALUES

    SHA1(), SHA224(), SHA256(), SHA384() and SHA512() return a pointer to the hash value.

    @@ -95,7 +93,7 @@ unsigned char *SHA512(const unsigned char *d, size_t n,

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Update.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA256_Update.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Final.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Final.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Init.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Init.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Update.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA384_Update.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Final.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Final.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Final.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Init.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Init.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Update.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Update.html new file mode 120000 index 00000000..001baabf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SHA512_Update.html @@ -0,0 +1 @@ +SHA256_Init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_description.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_description.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_description.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_find.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_find.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_find.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_auth_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_auth_nid.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_auth_nid.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_bits.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_bits.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_cipher_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_cipher_nid.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_cipher_nid.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_digest_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_digest_nid.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_digest_nid.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_handshake_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_handshake_digest.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_handshake_digest.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_id.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_id.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_kx_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_kx_nid.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_kx_nid.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_protocol_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_protocol_id.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_protocol_id.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_version.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_get_version.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_is_aead.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_is_aead.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_is_aead.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_standard_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_standard_name.html new file mode 120000 index 00000000..f66ae754 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CIPHER_standard_name.html @@ -0,0 +1 @@ +SSL_CIPHER_get_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_free_compression_methods.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_free_compression_methods.html new file mode 120000 index 00000000..e1e585cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_free_compression_methods.html @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get0_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get0_name.html new file mode 120000 index 00000000..e1e585cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get0_name.html @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get_compression_methods.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get_compression_methods.html new file mode 120000 index 00000000..e1e585cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get_compression_methods.html @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get_id.html new file mode 120000 index 00000000..e1e585cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_COMP_get_id.html @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_clear_flags.html new file mode 120000 index 00000000..41482fd3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_clear_flags.html @@ -0,0 +1 @@ +SSL_CONF_CTX_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_free.html new file mode 120000 index 00000000..fe6f38e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_free.html @@ -0,0 +1 @@ +SSL_CONF_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_set_ssl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_set_ssl.html new file mode 120000 index 00000000..06175507 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_CTX_set_ssl.html @@ -0,0 +1 @@ +SSL_CONF_CTX_set_ssl_ctx.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_cmd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_cmd.html index 9934b55d..8204ead5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_cmd.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_cmd.html @@ -74,7 +74,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);

    This sets the supported groups. For clients, the groups are sent using the supported groups extension. For servers, it is used to determine which group to use. This setting affects groups used for signatures (in TLSv1.2 and earlier) and key exchange. The first group listed will also be used for the key_share sent by a client in a TLSv1.3 ClientHello.

    -

    The value argument is a colon separated list of groups. The group can be either the NIST name (e.g. P-256), some other commonly used name where applicable (e.g. X25519) or an OpenSSL OID name (e.g prime256v1). Group names are case sensitive. The list should be in order of preference with the most preferred group first.

    +

    The value argument is a colon separated list of groups. The group can be either the NIST name (e.g. P-256), some other commonly used name where applicable (e.g. X25519) or an OpenSSL OID name (e.g. prime256v1). Group names are case sensitive. The list should be in order of preference with the most preferred group first.

    -curves
    @@ -88,7 +88,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);

    This sets the temporary curve used for ephemeral ECDH modes. Only used by servers

    -

    The value argument is a curve name or the special value auto which picks an appropriate curve based on client and server preferences. The curve can be either the NIST name (e.g. P-256) or an OpenSSL OID name (e.g prime256v1). Curve names are case sensitive.

    +

    The value argument is a curve name or the special value auto which picks an appropriate curve based on client and server preferences. The curve can be either the NIST name (e.g. P-256) or an OpenSSL OID name (e.g. prime256v1). Curve names are case sensitive.

    -cipher
    @@ -136,7 +136,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);
    -min_protocol, -max_protocol
    -

    Sets the minimum and maximum supported protocol. Currently supported protocol values are SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3 for TLS and DTLSv1, DTLSv1.2 for DTLS, and None for no limit. If either bound is not specified then only the other bound applies, if specified. To restrict the supported protocol versions use these commands rather than the deprecated alternative commands below.

    +

    Sets the minimum and maximum supported protocol. Currently supported protocol values are SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3 for TLS; DTLSv1, DTLSv1.2 for DTLS, and None for no limit. If either the lower or upper bound is not specified then only the other bound applies, if specified. If your application supports both TLS and DTLS you can specify any of these options twice, once with a bound for TLS and again with an appropriate bound for DTLS. To restrict the supported protocol versions use these commands rather than the deprecated alternative commands below.

    -no_ssl3, -no_tls1, -no_tls1_1, -no_tls1_2, -no_tls1_3
    @@ -306,7 +306,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);

    This sets the supported groups. For clients, the groups are sent using the supported groups extension. For servers, it is used to determine which group to use. This setting affects groups used for signatures (in TLSv1.2 and earlier) and key exchange. The first group listed will also be used for the key_share sent by a client in a TLSv1.3 ClientHello.

    -

    The value argument is a colon separated list of groups. The group can be either the NIST name (e.g. P-256), some other commonly used name where applicable (e.g. X25519) or an OpenSSL OID name (e.g prime256v1). Group names are case sensitive. The list should be in order of preference with the most preferred group first.

    +

    The value argument is a colon separated list of groups. The group can be either the NIST name (e.g. P-256), some other commonly used name where applicable (e.g. X25519) or an OpenSSL OID name (e.g. prime256v1). Group names are case sensitive. The list should be in order of preference with the most preferred group first.

    Curves
    @@ -320,7 +320,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);

    This sets the minimum supported SSL, TLS or DTLS version.

    -

    Currently supported protocol values are SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3, DTLSv1 and DTLSv1.2. The value None will disable the limit.

    +

    Currently supported protocol values are SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3, DTLSv1 and DTLSv1.2. The SSL and TLS bounds apply only to TLS-based contexts, while the DTLS bounds apply only to DTLS-based contexts. The command can be repeated with one instance setting a TLS bound, and the other setting a DTLS bound. The value None applies to both types of contexts and disables the limits.

    MaxProtocol
    @@ -328,7 +328,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);

    This sets the maximum supported SSL, TLS or DTLS version.

    -

    Currently supported protocol values are SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3, DTLSv1 and DTLSv1.2. The value None will disable the limit.

    +

    Currently supported protocol values are SSLv3, TLSv1, TLSv1.1, TLSv1.2, TLSv1.3, DTLSv1 and DTLSv1.2. The SSL and TLS bounds apply only to TLS-based contexts, while the DTLS bounds apply only to DTLS-based contexts. The command can be repeated with one instance setting a TLS bound, and the other setting a DTLS bound. The value None applies to both types of contexts and disables the limits.

    Protocol
    @@ -356,7 +356,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);

    SessionTicket: session ticket support, enabled by default. Inverse of SSL_OP_NO_TICKET: that is -SessionTicket is the same as setting SSL_OP_NO_TICKET.

    -

    Compression: SSL/TLS compression support, enabled by default. Inverse of SSL_OP_NO_COMPRESSION.

    +

    Compression: SSL/TLS compression support, disabled by default. Inverse of SSL_OP_NO_COMPRESSION.

    EmptyFragments: use empty fragments as a countermeasure against a SSL 3.0/TLS 1.0 protocol vulnerability affecting CBC ciphers. It is set by default. Inverse of SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS.

    @@ -434,7 +434,7 @@ int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);
    SSL_CONF_TYPE_FILE
    -

    The value is a file name.

    +

    The value is a filename.

    SSL_CONF_TYPE_DIR
    @@ -544,7 +544,7 @@ SSL_CONF_cmd(ctx, "MaxProtocol", "TLSv1.2");

    COPYRIGHT

    -

    Copyright 2012-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2012-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_cmd_value_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_cmd_value_type.html new file mode 120000 index 00000000..f319b909 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CONF_cmd_value_type.html @@ -0,0 +1 @@ +SSL_CONF_cmd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add0_chain_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add0_chain_cert.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add0_chain_cert.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add1_to_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add1_to_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add1_to_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_client_CA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_client_CA.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_client_CA.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_client_custom_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_client_custom_ext.html new file mode 120000 index 00000000..b90842b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_client_custom_ext.html @@ -0,0 +1 @@ +SSL_extension_supported.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_custom_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_custom_ext.html new file mode 120000 index 00000000..b90842b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_custom_ext.html @@ -0,0 +1 @@ +SSL_extension_supported.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_server_custom_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_server_custom_ext.html new file mode 120000 index 00000000..b90842b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_add_server_custom_ext.html @@ -0,0 +1 @@ +SSL_extension_supported.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_build_cert_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_build_cert_chain.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_build_cert_chain.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_callback_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_callback_ctrl.html new file mode 120000 index 00000000..fe643c8d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_callback_ctrl.html @@ -0,0 +1 @@ +SSL_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_check_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_check_private_key.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_check_private_key.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_chain_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_chain_certs.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_chain_certs.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_extra_chain_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_extra_chain_certs.html new file mode 120000 index 00000000..317d9b74 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_extra_chain_certs.html @@ -0,0 +1 @@ +SSL_CTX_add_extra_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_mode.html new file mode 120000 index 00000000..59ce589c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_mode.html @@ -0,0 +1 @@ +SSL_CTX_set_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_options.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_options.html new file mode 120000 index 00000000..2b3c746d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_clear_options.html @@ -0,0 +1 @@ +SSL_CTX_set_options.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_ct_is_enabled.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_ct_is_enabled.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_ct_is_enabled.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_clear_flags.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_clear_flags.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_enable.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_enable.html index 42f4684d..21fa9bb8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_enable.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_enable.html @@ -72,9 +72,9 @@ unsigned long SSL_dane_clear_flags(SSL *ssl, unsigned long flags);

    If no TLSA records directly matched any elements of the certificate chain, but a DANE-TA(2) SPKI(1) Full(0) record provided the public key that signed an element of the chain, then that key is returned via mspki argument (if not NULL). In this case the return value is the depth of the top-most element of the validated certificate chain. As with mcert this is a short-term internal reference, and EVP_PKEY_up_ref(3) and EVP_PKEY_free(3) can be used to acquire and release long-term references respectively.

    -

    SSL_get0_dane_tlsa() can be used to retrieve the fields of the TLSA record that matched the peer certificate chain. The return value indicates the match depth or failure to match just as with SSL_get0_dane_authority(). When the return value is non-negative, the storage pointed to by the usage, selector, mtype and data parameters is updated to the corresponding TLSA record fields. The data field is in binary wire form, and is therefore not NUL-terminated, its length is returned via the dlen parameter. If any of these parameters is NULL, the corresponding field is not returned. The data parameter is set to a short-term internal-copy of the associated data field and must not be freed by the application. Applications that need long-term access to this field need to copy the content.

    +

    SSL_get0_dane_tlsa() can be used to retrieve the fields of the TLSA record that matched the peer certificate chain. The return value indicates the match depth or failure to match just as with SSL_get0_dane_authority(). When the return value is nonnegative, the storage pointed to by the usage, selector, mtype and data parameters is updated to the corresponding TLSA record fields. The data field is in binary wire form, and is therefore not NUL-terminated, its length is returned via the dlen parameter. If any of these parameters is NULL, the corresponding field is not returned. The data parameter is set to a short-term internal-copy of the associated data field and must not be freed by the application. Applications that need long-term access to this field need to copy the content.

    -

    SSL_CTX_dane_set_flags() and SSL_dane_set_flags() can be used to enable optional DANE verification features. SSL_CTX_dane_clear_flags() and SSL_dane_clear_flags() can be used to disable the same features. The flags argument is a bitmask of the features to enable or disable. The flags set for an SSL_CTX context are copied to each SSL handle associated with that context at the time the handle is created. Subsequent changes in the context's flags have no effect on the flags set for the handle.

    +

    SSL_CTX_dane_set_flags() and SSL_dane_set_flags() can be used to enable optional DANE verification features. SSL_CTX_dane_clear_flags() and SSL_dane_clear_flags() can be used to disable the same features. The flags argument is a bit mask of the features to enable or disable. The flags set for an SSL_CTX context are copied to each SSL handle associated with that context at the time the handle is created. Subsequent changes in the context's flags have no effect on the flags set for the handle.

    At present, the only available option is DANE_FLAG_NO_DANE_EE_NAMECHECKS which can be used to disable server name checks when authenticating via DANE-EE(3) TLSA records. For some applications, primarily web browsers, it is not safe to disable name checks due to "unknown key share" attacks, in which a malicious server can convince a client that a connection to a victim server is instead a secure connection to the malicious server. The malicious server may then be able to violate cross-origin scripting restrictions. Thus, despite the text of RFC7671, name checks are by default enabled for DANE-EE(3) TLSA records, and can be disabled in applications where it is safe to do so. In particular, SMTP and XMPP clients should set this option as SRV and MX records already make it possible for a remote domain to redirect client connections to any server of its choice, and in any case SMTP and XMPP clients do not execute scripts downloaded from remote servers.

    @@ -82,7 +82,7 @@ unsigned long SSL_dane_clear_flags(SSL *ssl, unsigned long flags);

    The functions SSL_CTX_dane_enable(), SSL_CTX_dane_mtype_set(), SSL_dane_enable() and SSL_dane_tlsa_add() return a positive value on success. Negative return values indicate resource problems (out of memory, etc.) in the SSL library, while a return value of 0 indicates incorrect usage or invalid input, such as an unsupported TLSA record certificate usage, selector or matching type. Invalid input also includes malformed data, either a digest length that does not match the digest algorithm, or a Full(0) (binary ASN.1 DER form) certificate or a public key that fails to parse.

    -

    The functions SSL_get0_dane_authority() and SSL_get0_dane_tlsa() return a negative value when DANE authentication failed or was not enabled, a non-negative value indicates the chain depth at which the TLSA record matched a chain certificate, or the depth of the top-most certificate, when the TLSA record is a full public key that is its signer.

    +

    The functions SSL_get0_dane_authority() and SSL_get0_dane_tlsa() return a negative value when DANE authentication failed or was not enabled, a nonnegative value indicates the chain depth at which the TLSA record matched a chain certificate, or the depth of the top-most certificate, when the TLSA record is a full public key that is its signer.

    The functions SSL_CTX_dane_set_flags(), SSL_CTX_dane_clear_flags(), SSL_dane_set_flags() and SSL_dane_clear_flags() return the flags in effect before they were called.

    @@ -240,7 +240,7 @@ if (SSL_session_reused(ssl)) {

    COPYRIGHT

    -

    Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_mtype_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_mtype_set.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_mtype_set.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_set_flags.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_dane_set_flags.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_decrypt_session_ticket_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_decrypt_session_ticket_fn.html new file mode 120000 index 00000000..0bbb46fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_decrypt_session_ticket_fn.html @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_disable_ct.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_disable_ct.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_disable_ct.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_enable_ct.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_enable_ct.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_enable_ct.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_generate_session_ticket_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_generate_session_ticket_fn.html new file mode 120000 index 00000000..0bbb46fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_generate_session_ticket_fn.html @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_chain_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_chain_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_chain_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_chain_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_chain_certs.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_chain_certs.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_security_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_security_ex_data.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_security_ex_data.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_verify_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_verify_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get0_verify_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_cert_store.html new file mode 120000 index 00000000..2c864a54 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_ciphers.html new file mode 120000 index 00000000..3c738e3d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_ciphers.html @@ -0,0 +1 @@ +SSL_get_ciphers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_client_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_client_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_client_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_client_cert_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_client_cert_cb.html new file mode 120000 index 00000000..5c7dbdac --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_client_cert_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_client_cert_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_passwd_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_passwd_cb.html new file mode 120000 index 00000000..7d830c6b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_passwd_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_passwd_cb_userdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_passwd_cb_userdata.html new file mode 120000 index 00000000..7d830c6b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_passwd_cb_userdata.html @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_read_ahead.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_read_ahead.html new file mode 120000 index 00000000..4afbdd77 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_default_read_ahead.html @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_ex_data.html new file mode 120000 index 00000000..541b4ec6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_ex_data.html @@ -0,0 +1 @@ +SSL_CTX_set_ex_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_info_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_info_callback.html new file mode 120000 index 00000000..0c6819c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_info_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_info_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_keylog_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_keylog_callback.html new file mode 120000 index 00000000..dea78f52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_keylog_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_keylog_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_cert_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_cert_list.html new file mode 120000 index 00000000..76351597 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_cert_list.html @@ -0,0 +1 @@ +SSL_CTX_set_max_cert_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_proto_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_proto_version.html new file mode 120000 index 00000000..9fa31522 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_max_proto_version.html @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_min_proto_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_min_proto_version.html new file mode 120000 index 00000000..9fa31522 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_min_proto_version.html @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_mode.html new file mode 120000 index 00000000..59ce589c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_mode.html @@ -0,0 +1 @@ +SSL_CTX_set_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_num_tickets.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_num_tickets.html new file mode 120000 index 00000000..7a45892a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_num_tickets.html @@ -0,0 +1 @@ +SSL_CTX_set_num_tickets.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_options.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_options.html new file mode 120000 index 00000000..2b3c746d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_options.html @@ -0,0 +1 @@ +SSL_CTX_set_options.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_quiet_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_quiet_shutdown.html new file mode 120000 index 00000000..5bf42d2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_quiet_shutdown.html @@ -0,0 +1 @@ +SSL_CTX_set_quiet_shutdown.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_read_ahead.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_read_ahead.html new file mode 120000 index 00000000..4afbdd77 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_read_ahead.html @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_record_padding_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_record_padding_callback_arg.html new file mode 120000 index 00000000..d080916b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_record_padding_callback_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_recv_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_recv_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_recv_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_security_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_security_callback.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_security_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_security_level.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_security_level.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_security_level.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_session_cache_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_session_cache_mode.html new file mode 120000 index 00000000..002f0e6e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_session_cache_mode.html @@ -0,0 +1 @@ +SSL_CTX_set_session_cache_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_timeout.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_timeout.html new file mode 120000 index 00000000..5bf83161 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_timeout.html @@ -0,0 +1 @@ +SSL_CTX_set_timeout.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_arg.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_cb.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_type.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_tlsext_status_type.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_verify_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_verify_callback.html new file mode 120000 index 00000000..9179e4fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_verify_callback.html @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_verify_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_verify_depth.html new file mode 120000 index 00000000..9179e4fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_get_verify_depth.html @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_keylog_cb_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_keylog_cb_func.html new file mode 120000 index 00000000..dea78f52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_keylog_cb_func.html @@ -0,0 +1 @@ +SSL_CTX_set_keylog_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_remove_session.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_remove_session.html new file mode 120000 index 00000000..68e89eec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_remove_session.html @@ -0,0 +1 @@ +SSL_CTX_add_session.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_select_current_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_select_current_cert.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_select_current_cert.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept_good.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept_good.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept_good.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept_renegotiate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept_renegotiate.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_accept_renegotiate.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_cache_full.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_cache_full.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_cache_full.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_cb_hits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_cb_hits.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_cb_hits.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect_good.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect_good.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect_good.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect_renegotiate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect_renegotiate.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_connect_renegotiate.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_cache_size.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_cache_size.html new file mode 120000 index 00000000..9fe50c86 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_cache_size.html @@ -0,0 +1 @@ +SSL_CTX_sess_set_cache_size.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_get_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_get_cb.html new file mode 120000 index 00000000..bac3d1f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_get_cb.html @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_new_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_new_cb.html new file mode 120000 index 00000000..bac3d1f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_new_cb.html @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_remove_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_remove_cb.html new file mode 120000 index 00000000..bac3d1f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_get_remove_cb.html @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_hits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_hits.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_hits.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_misses.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_misses.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_misses.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_set_new_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_set_new_cb.html new file mode 120000 index 00000000..bac3d1f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_set_new_cb.html @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_set_remove_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_set_remove_cb.html new file mode 120000 index 00000000..bac3d1f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_set_remove_cb.html @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_timeouts.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_timeouts.html new file mode 120000 index 00000000..c651d92e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_sess_timeouts.html @@ -0,0 +1 @@ +SSL_CTX_sess_number.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_chain.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_chain.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_chain_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_chain_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_chain_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_security_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_security_ex_data.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_security_ex_data.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_verify_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_verify_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set0_verify_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_cert_store.html new file mode 120000 index 00000000..2c864a54 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_chain.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_chain.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_chain_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_chain_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_chain_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_client_sigalgs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_client_sigalgs.html new file mode 120000 index 00000000..b87af34f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_client_sigalgs.html @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_client_sigalgs_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_client_sigalgs_list.html new file mode 120000 index 00000000..b87af34f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_client_sigalgs_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_curves_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_curves_list.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_curves_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_groups.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_groups.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_groups.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_groups_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_groups_list.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_groups_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_param.html new file mode 120000 index 00000000..6cc1ff84 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_param.html @@ -0,0 +1 @@ +SSL_CTX_get0_param.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_sigalgs_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_sigalgs_list.html new file mode 120000 index 00000000..b87af34f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_sigalgs_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_verify_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_verify_cert_store.html index 8d08b842..c701e51c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_verify_cert_store.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set1_verify_cert_store.html @@ -24,7 +24,7 @@

    NAME

    -

    SSL_CTX_set0_verify_cert_store, SSL_CTX_set1_verify_cert_store, SSL_CTX_set0_chain_cert_store, SSL_CTX_set1_chain_cert_store, SSL_set0_verify_cert_store, SSL_set1_verify_cert_store, SSL_set0_chain_cert_store, SSL_set1_chain_cert_store - set certificate verification or chain store

    +

    SSL_CTX_set0_verify_cert_store, SSL_CTX_set1_verify_cert_store, SSL_CTX_set0_chain_cert_store, SSL_CTX_set1_chain_cert_store, SSL_set0_verify_cert_store, SSL_set1_verify_cert_store, SSL_set0_chain_cert_store, SSL_set1_chain_cert_store, SSL_CTX_get0_verify_cert_store, SSL_CTX_get0_chain_cert_store, SSL_get0_verify_cert_store, SSL_get0_chain_cert_store - set certificate verification or chain store

    SYNOPSIS

    @@ -34,11 +34,15 @@ int SSL_CTX_set0_verify_cert_store(SSL_CTX *ctx, X509_STORE *st); int SSL_CTX_set1_verify_cert_store(SSL_CTX *ctx, X509_STORE *st); int SSL_CTX_set0_chain_cert_store(SSL_CTX *ctx, X509_STORE *st); int SSL_CTX_set1_chain_cert_store(SSL_CTX *ctx, X509_STORE *st); +int SSL_CTX_get0_verify_cert_store(SSL_CTX *ctx, X509_STORE **st); +int SSL_CTX_get0_chain_cert_store(SSL_CTX *ctx, X509_STORE **st); int SSL_set0_verify_cert_store(SSL *ctx, X509_STORE *st); int SSL_set1_verify_cert_store(SSL *ctx, X509_STORE *st); int SSL_set0_chain_cert_store(SSL *ctx, X509_STORE *st); -int SSL_set1_chain_cert_store(SSL *ctx, X509_STORE *st); +int SSL_set1_chain_cert_store(SSL *ctx, X509_STORE *st); +int SSL_get0_verify_cert_store(SSL *ctx, X509_STORE **st); +int SSL_get0_chain_cert_store(SSL *ctx, X509_STORE **st);

    DESCRIPTION

    @@ -48,6 +52,8 @@ int SSL_set1_chain_cert_store(SSL *ctx, X509_STORE *st);

    SSL_set0_verify_cert_store(), SSL_set1_verify_cert_store(), SSL_set0_chain_cert_store() and SSL_set1_chain_cert_store() are similar except they apply to SSL structure ssl.

    +

    SSL_CTX_get0_verify_chain_store(), SSL_get0_verify_chain_store(), SSL_CTX_get0_chain_cert_store() and SSL_get0_chain_cert_store() retrieve the objects previously set via the above calls. A pointer to the object (or NULL if no such object has been set) is written to *st.

    +

    All these functions are implemented as macros. Those containing a 1 increment the reference count of the supplied store so it must be freed at some point after the operation. Those containing a 0 do not increment reference counts and the supplied store MUST NOT be freed after the operation.

    NOTES

    @@ -78,7 +84,7 @@ int SSL_set1_chain_cert_store(SSL *ctx, X509_STORE *st);

    COPYRIGHT

    -

    Copyright 2013-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2013-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_allow_early_data_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_allow_early_data_cb.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_allow_early_data_cb.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_alpn_protos.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_alpn_protos.html new file mode 120000 index 00000000..5ca0cdfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_alpn_protos.html @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_alpn_select_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_alpn_select_cb.html index 7315d486..21f43fe5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_alpn_select_cb.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_alpn_select_cb.html @@ -85,7 +85,7 @@ void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,

    NOTES

    -

    The protocol-lists must be in wire-format, which is defined as a vector of non-empty, 8-bit length-prefixed, byte strings. The length-prefix byte is not included in the length. Each string is limited to 255 bytes. A byte-string length of 0 is invalid. A truncated byte-string is invalid. The length of the vector is not in the vector itself, but in a separate variable.

    +

    The protocol-lists must be in wire-format, which is defined as a vector of nonempty, 8-bit length-prefixed, byte strings. The length-prefix byte is not included in the length. Each string is limited to 255 bytes. A byte-string length of 0 is invalid. A truncated byte-string is invalid. The length of the vector is not in the vector itself, but in a separate variable.

    Example:

    @@ -155,7 +155,7 @@ unsigned int length = sizeof(vector);

    COPYRIGHT

    -

    Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_block_padding.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_block_padding.html new file mode 120000 index 00000000..d080916b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_block_padding.html @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_ciphersuites.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_ciphersuites.html new file mode 120000 index 00000000..f9ebd142 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_ciphersuites.html @@ -0,0 +1 @@ +SSL_CTX_set_cipher_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_client_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_client_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_client_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_cookie_generate_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_cookie_generate_cb.html new file mode 120000 index 00000000..bde12081 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_cookie_generate_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_stateless_cookie_generate_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_cookie_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_cookie_verify_cb.html new file mode 120000 index 00000000..bde12081 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_cookie_verify_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_stateless_cookie_generate_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_current_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_current_cert.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_current_cert.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_ctlog_list_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_ctlog_list_file.html new file mode 120000 index 00000000..38ca3b51 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_ctlog_list_file.html @@ -0,0 +1 @@ +SSL_CTX_set_ctlog_list_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_passwd_cb_userdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_passwd_cb_userdata.html new file mode 120000 index 00000000..7d830c6b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_passwd_cb_userdata.html @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_read_buffer_len.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_read_buffer_len.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_read_buffer_len.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_dir.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_dir.html new file mode 120000 index 00000000..c0c6ce60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_dir.html @@ -0,0 +1 @@ +SSL_CTX_load_verify_locations.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_file.html new file mode 120000 index 00000000..c0c6ce60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_file.html @@ -0,0 +1 @@ +SSL_CTX_load_verify_locations.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_paths.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_paths.html new file mode 120000 index 00000000..c0c6ce60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_default_verify_paths.html @@ -0,0 +1 @@ +SSL_CTX_load_verify_locations.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_generate_session_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_generate_session_id.html index c005b7a8..ec8d4c52 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_generate_session_id.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_generate_session_id.html @@ -85,8 +85,8 @@ static int generate_session_id(SSL *ssl, unsigned char *id, /* * Prefix the session_id with the required prefix. NB: If our * prefix is too long, clip it - but there will be worse effects - * anyway, eg. the server could only possibly create 1 session - * ID (ie. the prefix!) so all future session negotiations will + * anyway, e.g. the server could only possibly create 1 session + * ID (i.e. the prefix!) so all future session negotiations will * fail due to conflicts. */ memcpy(id, session_id_prefix, strlen(session_id_prefix) < *id_len ? @@ -104,7 +104,7 @@ static int generate_session_id(SSL *ssl, unsigned char *id,

    COPYRIGHT

    -

    Copyright 2001-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_info_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_info_callback.html index a8b1acd0..455a6a33 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_info_callback.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_info_callback.html @@ -52,7 +52,7 @@ void (*SSL_get_info_callback(const SSL *ssl))();

    The callback function is called as callback(SSL *ssl, int where, int ret). The where argument specifies information about where (in which context) the callback function was called. If ret is 0, an error condition occurred. If an alert is handled, SSL_CB_ALERT is set and ret specifies the alert information.

    -

    where is a bitmask made up of the following bits:

    +

    where is a bit mask made up of the following bits:

    @@ -65,7 +65,7 @@ void (*SSL_get_info_callback(const SSL *ssl))();
    SSL_CB_EXIT
    -

    Callback has been called to indicate exit of a handshake function. This will happen after the end of a handshake, but may happen at other times too such as on error or when IO might otherwise block and non-blocking is being used.

    +

    Callback has been called to indicate exit of a handshake function. This will happen after the end of a handshake, but may happen at other times too such as on error or when IO might otherwise block and nonblocking is being used.

    SSL_CB_READ
    @@ -174,7 +174,7 @@ void (*SSL_get_info_callback(const SSL *ssl))();

    COPYRIGHT

    -

    Copyright 2001-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_cert_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_cert_list.html index 4e2530ff..bfa6c0fa 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_cert_list.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_cert_list.html @@ -49,7 +49,7 @@ long SSL_get_max_cert_list(SSL *ctx);

    During the handshake process, the peer may send a certificate chain. The TLS/SSL standard does not give any maximum size of the certificate chain. The OpenSSL library handles incoming data by a dynamically allocated buffer. In order to prevent this buffer from growing without bounds due to data received from a faulty or malicious peer, a maximum size for the certificate chain is set.

    -

    The default value for the maximum certificate chain size is 100kB (30kB on the 16bit DOS platform). This should be sufficient for usual certificate chains (OpenSSL's default maximum chain length is 10, see SSL_CTX_set_verify(3), and certificates without special extensions have a typical size of 1-2kB).

    +

    The default value for the maximum certificate chain size is 100kB (30kB on the 16-bit DOS platform). This should be sufficient for usual certificate chains (OpenSSL's default maximum chain length is 10, see SSL_CTX_set_verify(3), and certificates without special extensions have a typical size of 1-2kB).

    For special applications it can be necessary to extend the maximum certificate chain size allowed to be sent by the peer, see e.g. the work on "Internet X.509 Public Key Infrastructure Proxy Certificate Profile" and "TLS Delegation Protocol" at http://www.ietf.org/ and http://www.globus.org/ .

    @@ -69,7 +69,7 @@ long SSL_get_max_cert_list(SSL *ctx);

    COPYRIGHT

    -

    Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_pipelines.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_pipelines.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_pipelines.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_proto_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_proto_version.html new file mode 120000 index 00000000..9fa31522 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_proto_version.html @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_send_fragment.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_send_fragment.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_max_send_fragment.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_mode.html index 9fd3a569..7ae34400 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_mode.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_mode.html @@ -40,9 +40,9 @@ long SSL_get_mode(SSL *ssl);

    DESCRIPTION

    -

    SSL_CTX_set_mode() adds the mode set via bitmask in mode to ctx. Options already set before are not cleared. SSL_CTX_clear_mode() removes the mode set via bitmask in mode from ctx.

    +

    SSL_CTX_set_mode() adds the mode set via bit mask in mode to ctx. Options already set before are not cleared. SSL_CTX_clear_mode() removes the mode set via bit mask in mode from ctx.

    -

    SSL_set_mode() adds the mode set via bitmask in mode to ssl. Options already set before are not cleared. SSL_clear_mode() removes the mode set via bitmask in mode from ssl.

    +

    SSL_set_mode() adds the mode set via bit mask in mode to ssl. Options already set before are not cleared. SSL_clear_mode() removes the mode set via bit mask in mode from ssl.

    SSL_CTX_get_mode() returns the mode set for ctx.

    @@ -63,7 +63,7 @@ long SSL_get_mode(SSL *ssl);
    SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER
    -

    Make it possible to retry SSL_write_ex() or SSL_write() with changed buffer location (the buffer contents must stay the same). This is not the default to avoid the misconception that non-blocking SSL_write() behaves like non-blocking write().

    +

    Make it possible to retry SSL_write_ex() or SSL_write() with changed buffer location (the buffer contents must stay the same). This is not the default to avoid the misconception that nonblocking SSL_write() behaves like nonblocking write().

    SSL_MODE_AUTO_RETRY
    @@ -71,7 +71,7 @@ long SSL_get_mode(SSL *ssl);

    During normal operations, non-application data records might need to be sent or received that the application is not aware of. If a non-application data record was processed, SSL_read_ex(3) and SSL_read(3) can return with a failure and indicate the need to retry with SSL_ERROR_WANT_READ. If such a non-application data record was processed, the flag SSL_MODE_AUTO_RETRY causes it to try to process the next record instead of returning.

    -

    In a non-blocking environment applications must be prepared to handle incomplete read/write operations. Setting SSL_MODE_AUTO_RETRY for a non-blocking BIO will process non-application data records until either no more data is available or an application data record has been processed.

    +

    In a nonblocking environment applications must be prepared to handle incomplete read/write operations. Setting SSL_MODE_AUTO_RETRY for a nonblocking BIO will process non-application data records until either no more data is available or an application data record has been processed.

    In a blocking environment, applications are not always prepared to deal with the functions returning intermediate reports such as retry requests, and setting the SSL_MODE_AUTO_RETRY flag will cause the functions to only return after successfully processing an application data record or a failure.

    @@ -110,9 +110,9 @@ long SSL_get_mode(SSL *ssl);

    RETURN VALUES

    -

    SSL_CTX_set_mode() and SSL_set_mode() return the new mode bitmask after adding mode.

    +

    SSL_CTX_set_mode() and SSL_set_mode() return the new mode bit mask after adding mode.

    -

    SSL_CTX_get_mode() and SSL_get_mode() return the current bitmask.

    +

    SSL_CTX_get_mode() and SSL_get_mode() return the current bit mask.

    SEE ALSO

    @@ -124,7 +124,7 @@ long SSL_get_mode(SSL *ssl);

    COPYRIGHT

    -

    Copyright 2001-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_msg_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_msg_callback_arg.html new file mode 120000 index 00000000..2991e5eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_msg_callback_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_msg_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_next_proto_select_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_next_proto_select_cb.html new file mode 120000 index 00000000..5ca0cdfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_next_proto_select_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_next_protos_advertised_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_next_protos_advertised_cb.html new file mode 120000 index 00000000..5ca0cdfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_next_protos_advertised_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_num_tickets.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_num_tickets.html index f469f92b..4c438632 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_num_tickets.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_num_tickets.html @@ -37,7 +37,7 @@ size_t SSL_CTX_get_num_tickets(SSL_CTX *ctx);

    SSL_CTX_set_num_tickets() and SSL_set_num_tickets() can be called for a server application and set the number of TLSv1.3 session tickets that will be sent to the client after a full handshake. Set the desired value (which could be 0) in the num_tickets argument. Typically these functions should be called before the start of the handshake.

    -

    The default number of tickets is 2; the default number of tickets sent following a resumption handshake is 1 but this cannot be changed using these functions. The number of tickets following a resumption handshake can be reduced to 0 using custom session ticket callbacks (see SSL_CTX_set_session_ticket_cb(3)).

    +

    The default number of tickets is 2. Following a resumption the number of tickets issued will never be more than 1 regardless of the value set via SSL_set_num_tickets() or SSL_CTX_set_num_tickets(). If num_tickets is set to 0 then no tickets will be issued for either a normal connection or a resumption.

    Tickets are also issued on receipt of a post-handshake certificate from the client following a request by the server using SSL_verify_client_post_handshake(3). These new tickets will be associated with the updated client identity (i.e. including their certificate and verification status). The number of tickets issued will normally be the same as was used for the initial handshake. If the initial handshake was a full handshake then SSL_set_num_tickets() can be called again prior to calling SSL_verify_client_post_handshake() to update the number of tickets that will be sent.

    @@ -55,7 +55,7 @@ size_t SSL_CTX_get_num_tickets(SSL_CTX *ctx);

    COPYRIGHT

    -

    Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2018-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_options.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_options.html index cd6ea3b7..f84f8f69 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_options.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_options.html @@ -50,13 +50,13 @@ long SSL_get_secure_renegotiation_support(SSL *ssl);

    DESCRIPTION

    -

    SSL_CTX_set_options() adds the options set via bitmask in options to ctx. Options already set before are not cleared!

    +

    SSL_CTX_set_options() adds the options set via bit mask in options to ctx. Options already set before are not cleared!

    -

    SSL_set_options() adds the options set via bitmask in options to ssl. Options already set before are not cleared!

    +

    SSL_set_options() adds the options set via bit mask in options to ssl. Options already set before are not cleared!

    -

    SSL_CTX_clear_options() clears the options set via bitmask in options to ctx.

    +

    SSL_CTX_clear_options() clears the options set via bit mask in options to ctx.

    -

    SSL_clear_options() clears the options set via bitmask in options to ssl.

    +

    SSL_clear_options() clears the options set via bit mask in options to ssl.

    SSL_CTX_get_options() returns the options set for ctx.

    @@ -66,7 +66,7 @@ long SSL_get_secure_renegotiation_support(SSL *ssl);

    NOTES

    -

    The behaviour of the SSL library can be changed by setting several options. The options are coded as bitmasks and can be combined by a bitwise or operation (|).

    +

    The behaviour of the SSL library can be changed by setting several options. The options are coded as bit masks and can be combined by a bitwise or operation (|).

    SSL_CTX_set_options() and SSL_set_options() affect the (external) protocol behaviour of the SSL library. The (internal) behaviour of the API can be changed by using the similar SSL_CTX_set_mode(3) and SSL_set_mode() functions.

    @@ -161,7 +161,7 @@ long SSL_get_secure_renegotiation_support(SSL *ssl);

    When using stateless session tickets the server uses a session ticket encryption key to encrypt the session information. This encrypted data is sent to the client as a "ticket". When the client wishes to resume it sends the encrypted data back to the server. The server uses its key to decrypt the data and resume the session. In this way the server can operate statelessly - no session information needs to be cached locally.

    -

    The TLSv1.3 protocol only supports tickets and does not directly support session ids. However OpenSSL allows two modes of ticket operation in TLSv1.3: stateful and stateless. Stateless tickets work the same way as in TLSv1.2 and below. Stateful tickets mimic the session id behaviour available in TLSv1.2 and below. The session information is cached on the server and the session id is wrapped up in a ticket and sent back to the client. When the client wishes to resume, it presents a ticket in the same way as for stateless tickets. The server can then extract the session id from the ticket and retrieve the session information from its cache.

    +

    The TLSv1.3 protocol only supports tickets and does not directly support session ids. However, OpenSSL allows two modes of ticket operation in TLSv1.3: stateful and stateless. Stateless tickets work the same way as in TLSv1.2 and below. Stateful tickets mimic the session id behaviour available in TLSv1.2 and below. The session information is cached on the server and the session id is wrapped up in a ticket and sent back to the client. When the client wishes to resume, it presents a ticket in the same way as for stateless tickets. The server can then extract the session id from the ticket and retrieve the session information from its cache.

    By default OpenSSL will use stateless tickets. The SSL_OP_NO_TICKET option will cause stateless tickets to not be issued. In TLSv1.2 and below this means no ticket gets sent to the client at all. In TLSv1.3 a stateful ticket will be sent. This is a server-side option only.

    @@ -318,11 +318,11 @@ long SSL_get_secure_renegotiation_support(SSL *ssl);

    RETURN VALUES

    -

    SSL_CTX_set_options() and SSL_set_options() return the new options bitmask after adding options.

    +

    SSL_CTX_set_options() and SSL_set_options() return the new options bit mask after adding options.

    -

    SSL_CTX_clear_options() and SSL_clear_options() return the new options bitmask after clearing options.

    +

    SSL_CTX_clear_options() and SSL_clear_options() return the new options bit mask after clearing options.

    -

    SSL_CTX_get_options() and SSL_get_options() return the current bitmask.

    +

    SSL_CTX_get_options() and SSL_get_options() return the current bit mask.

    SSL_get_secure_renegotiation_support() returns 1 is the peer supports secure renegotiation and 0 if it does not.

    @@ -338,7 +338,7 @@ long SSL_get_secure_renegotiation_support(SSL *ssl);

    COPYRIGHT

    -

    Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_post_handshake_auth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_post_handshake_auth.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_post_handshake_auth.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_client_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_client_callback.html index ecc81231..0fcfd0fc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_client_callback.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_client_callback.html @@ -99,7 +99,7 @@ void SSL_set_psk_client_callback(SSL *ssl, SSL_psk_client_cb_func cb);

    The callback is set using functions SSL_CTX_set_psk_client_callback() or SSL_set_psk_client_callback(). The callback function is given the connection in parameter ssl, a NULL-terminated PSK identity hint sent by the server in parameter hint, a buffer identity of length max_identity_len bytes where the resulting NUL-terminated identity is to be stored, and a buffer psk of length max_psk_len bytes where the resulting pre-shared key is to be stored.

    -

    The callback for use in TLSv1.2 will also work in TLSv1.3 although it is recommended to use SSL_CTX_set_psk_use_session_callback() or SSL_set_psk_use_session_callback() for this purpose instead. If TLSv1.3 has been negotiated then OpenSSL will first check to see if a callback has been set via SSL_CTX_set_psk_use_session_callback() or SSL_set_psk_use_session_callback() and it will use that in preference. If no such callback is present then it will check to see if a callback has been set via SSL_CTX_set_psk_client_callback() or SSL_set_psk_client_callback() and use that. In this case the hint value will always be NULL and the handshake digest will default to SHA-256 for any returned PSK.

    +

    The callback for use in TLSv1.2 will also work in TLSv1.3 although it is recommended to use SSL_CTX_set_psk_use_session_callback() or SSL_set_psk_use_session_callback() for this purpose instead. If TLSv1.3 has been negotiated then OpenSSL will first check to see if a callback has been set via SSL_CTX_set_psk_use_session_callback() or SSL_set_psk_use_session_callback() and it will use that in preference. If no such callback is present then it will check to see if a callback has been set via SSL_CTX_set_psk_client_callback() or SSL_set_psk_client_callback() and use that. In this case the hint value will always be NULL and the handshake digest will default to SHA-256 for any returned PSK. TLSv1.3 early data exchanges are possible in PSK connections only with the SSL_psk_use_session_cb_func callback, and are not possible with the SSL_psk_client_cb_func callback.

    NOTES

    @@ -107,7 +107,7 @@ void SSL_set_psk_client_callback(SSL *ssl, SSL_psk_client_cb_func cb);

    A connection established via a TLSv1.3 PSK will appear as if session resumption has occurred so that SSL_session_reused(3) will return true.

    -

    There are no known security issues with sharing the same PSK between TLSv1.2 (or below) and TLSv1.3. However the RFC has this note of caution:

    +

    There are no known security issues with sharing the same PSK between TLSv1.2 (or below) and TLSv1.3. However, the RFC has this note of caution:

    "While there is no known way in which the same PSK might produce related output in both versions, only limited analysis has been done. Implementations can ensure safety from cross-protocol related output by not reusing PSKs between TLS 1.3 and TLS 1.2."

    @@ -131,7 +131,7 @@ void SSL_set_psk_client_callback(SSL *ssl, SSL_psk_client_cb_func cb);

    COPYRIGHT -

    Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2006-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_find_session_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_find_session_callback.html new file mode 120000 index 00000000..9b21e683 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_find_session_callback.html @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_server_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_server_callback.html new file mode 120000 index 00000000..9b21e683 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_server_callback.html @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_use_session_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_use_session_callback.html new file mode 120000 index 00000000..faa87649 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_psk_use_session_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_read_ahead.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_read_ahead.html index 9f7ba2da..136fb4a9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_read_ahead.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_read_ahead.html @@ -38,7 +38,7 @@ long SSL_CTX_get_default_read_ahead(SSL_CTX *ctx);

    DESCRIPTION

    -

    SSL_CTX_set_read_ahead() and SSL_set_read_ahead() set whether we should read as many input bytes as possible (for non-blocking reads) or not. For example if x bytes are currently required by OpenSSL, but y bytes are available from the underlying BIO (where y > x), then OpenSSL will read all y bytes into its buffer (providing that the buffer is large enough) if reading ahead is on, or x bytes otherwise. Setting the parameter yes to 0 turns reading ahead is off, other values turn it on. SSL_CTX_set_default_read_ahead() is identical to SSL_CTX_set_read_ahead().

    +

    SSL_CTX_set_read_ahead() and SSL_set_read_ahead() set whether we should read as many input bytes as possible (for nonblocking reads) or not. For example if x bytes are currently required by OpenSSL, but y bytes are available from the underlying BIO (where y > x), then OpenSSL will read all y bytes into its buffer (providing that the buffer is large enough) if reading ahead is on, or x bytes otherwise. Setting the parameter yes to 0 turns reading ahead is off, other values turn it on. SSL_CTX_set_default_read_ahead() is identical to SSL_CTX_set_read_ahead().

    SSL_CTX_get_read_ahead() and SSL_get_read_ahead() indicate whether reading ahead has been set or not. SSL_CTX_get_default_read_ahead() is identical to SSL_CTX_get_read_ahead().

    @@ -60,7 +60,7 @@ long SSL_CTX_get_default_read_ahead(SSL_CTX *ctx);

    COPYRIGHT

    -

    Copyright 2015-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_record_padding_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_record_padding_callback_arg.html new file mode 120000 index 00000000..d080916b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_record_padding_callback_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_recv_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_recv_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_recv_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_security_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_security_callback.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_security_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_security_level.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_security_level.html index 18e730d4..45cc2fae 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_security_level.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_security_level.html @@ -119,8 +119,6 @@ void *SSL_get0_security_ex_data(const SSL *s);

    NOTES

    -

    WARNING at this time setting the security level higher than 1 for general internet use is likely to cause considerable interoperability issues and is not recommended. This is because the SHA1 algorithm is very widely used in certificates and will be rejected at levels higher than 1 because it only offers 80 bits of security.

    -

    The default security level can be configured when OpenSSL is compiled by setting -DOPENSSL_TLS_SECURITY_LEVEL=level. If not set then 1 is used.

    The security framework disables or reject parameters inconsistent with the set security level. In the past this was difficult as applications had to set a number of distinct parameters (supported ciphers, supported curves supported signature algorithms) to achieve this end and some cases (DH parameter size for example) could not be checked at all.

    @@ -155,7 +153,7 @@ void *SSL_get0_security_ex_data(const SSL *s);

    COPYRIGHT

    -

    Copyright 2014-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2014-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_cache_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_cache_mode.html index 75d89689..1d9152cb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_cache_mode.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_cache_mode.html @@ -91,7 +91,7 @@ long SSL_CTX_get_session_cache_mode(SSL_CTX ctx);
    SSL_SESS_CACHE_NO_INTERNAL_STORE
    -

    Depending on the presence of SSL_SESS_CACHE_CLIENT and/or SSL_SESS_CACHE_SERVER, sessions negotiated in an SSL/TLS handshake may be cached for possible reuse. Normally a new session is added to the internal cache as well as any external session caching (callback) that is configured for the SSL_CTX. This flag will prevent sessions being stored in the internal cache (though the application can add them manually using SSL_CTX_add_session(3)). Note: in any SSL/TLS servers where external caching is configured, any successful session lookups in the external cache (ie. for session-resume requests) would normally be copied into the local cache before processing continues - this flag prevents these additions to the internal cache as well.

    +

    Depending on the presence of SSL_SESS_CACHE_CLIENT and/or SSL_SESS_CACHE_SERVER, sessions negotiated in an SSL/TLS handshake may be cached for possible reuse. Normally a new session is added to the internal cache as well as any external session caching (callback) that is configured for the SSL_CTX. This flag will prevent sessions being stored in the internal cache (though the application can add them manually using SSL_CTX_add_session(3)). Note: in any SSL/TLS servers where external caching is configured, any successful session lookups in the external cache (i.e. for session-resume requests) would normally be copied into the local cache before processing continues - this flag prevents these additions to the internal cache as well.

    SSL_SESS_CACHE_NO_INTERNAL
    @@ -116,7 +116,7 @@ long SSL_CTX_get_session_cache_mode(SSL_CTX ctx);

    COPYRIGHT

    -

    Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_id_context.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_id_context.html index ca281b2c..01592583 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_id_context.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_id_context.html @@ -43,7 +43,7 @@ int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,

    NOTES

    -

    Sessions are generated within a certain context. When exporting/importing sessions with i2d_SSL_SESSION/d2i_SSL_SESSION it would be possible, to re-import a session generated from another context (e.g. another application), which might lead to malfunctions. Therefore each application must set its own session id context sid_ctx which is used to distinguish the contexts and is stored in exported sessions. The sid_ctx can be any kind of binary data with a given length, it is therefore possible to use e.g. the name of the application and/or the hostname and/or service name ...

    +

    Sessions are generated within a certain context. When exporting/importing sessions with i2d_SSL_SESSION/d2i_SSL_SESSION it would be possible, to re-import a session generated from another context (e.g. another application), which might lead to malfunctions. Therefore, each application must set its own session id context sid_ctx which is used to distinguish the contexts and is stored in exported sessions. The sid_ctx can be any kind of binary data with a given length, it is therefore possible to use e.g. the name of the application and/or the hostname and/or service name ...

    The session id context becomes part of the session. The session id context is set by the SSL/TLS server. The SSL_CTX_set_session_id_context() and SSL_set_session_id_context() functions are therefore only useful on the server side.

    @@ -83,7 +83,7 @@ int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx,

    COPYRIGHT

    -

    Copyright 2001-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_ticket_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_ticket_cb.html index d2ba22ca..017016d7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_ticket_cb.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_session_ticket_cb.html @@ -98,7 +98,7 @@ int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len);<
    SSL_TICKET_RETURN_ABORT
    -

    The handshake should be aborted, either because of an error or because of some policy. Note that in TLSv1.3 a client may send more than one ticket in a single handshake. Therefore just because one ticket is unacceptable it does not mean that all of them are. For this reason this option should be used with caution.

    +

    The handshake should be aborted, either because of an error or because of some policy. Note that in TLSv1.3 a client may send more than one ticket in a single handshake. Therefore, just because one ticket is unacceptable it does not mean that all of them are. For this reason this option should be used with caution.

    SSL_TICKET_RETURN_IGNORE
    @@ -153,11 +153,11 @@ int SSL_SESSION_get0_ticket_appdata(SSL_SESSION *ss, void **data, size_t *len);<

    HISTORY

    -

    The SSL_CTX_set_session_ticket_cb(), SSSL_SESSION_set1_ticket_appdata() and SSL_SESSION_get_ticket_appdata() functions were added in OpenSSL 1.1.1.

    +

    The SSL_CTX_set_session_ticket_cb(), SSL_SESSION_set1_ticket_appdata() and SSL_SESSION_get_ticket_appdata() functions were added in OpenSSL 1.1.1.

    COPYRIGHT

    -

    Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2017-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_split_send_fragment.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_split_send_fragment.html index dd5e75db..2c80da1a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_split_send_fragment.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_split_send_fragment.html @@ -50,7 +50,7 @@ uint8_t SSL_SESSION_get_max_fragment_length(SSL_SESSION *session);

    Some engines are able to process multiple simultaneous crypto operations. This capability could be utilised to parallelise the processing of a single connection. For example a single write can be split into multiple records and each one encrypted independently and in parallel. Note: this will only work in TLS1.1+. There is no support in SSLv3, TLSv1.0 or DTLS (any version). This capability is known as "pipelining" within OpenSSL.

    -

    In order to benefit from the pipelining capability. You need to have an engine that provides ciphers that support this. The OpenSSL "dasync" engine provides AES128-SHA based ciphers that have this capability. However these are for development and test purposes only.

    +

    In order to benefit from the pipelining capability. You need to have an engine that provides ciphers that support this. The OpenSSL "dasync" engine provides AES128-SHA based ciphers that have this capability. However, these are for development and test purposes only.

    SSL_CTX_set_max_send_fragment() and SSL_set_max_send_fragment() set the max_send_fragment parameter for SSL_CTX and SSL objects respectively. This value restricts the amount of plaintext bytes that will be sent in any one SSL/TLS record. By default its value is SSL3_RT_MAX_PLAIN_LENGTH (16384). These functions will only accept a value in the range 512 - SSL3_RT_MAX_PLAIN_LENGTH.

    @@ -138,7 +138,7 @@ uint8_t SSL_SESSION_get_max_fragment_length(SSL_SESSION *session);

    COPYRIGHT

    -

    Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_stateless_cookie_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_stateless_cookie_verify_cb.html new file mode 120000 index 00000000..bde12081 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_stateless_cookie_verify_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_stateless_cookie_generate_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_timeout.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_timeout.html index 632f3b2a..9549f786 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_timeout.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_timeout.html @@ -50,6 +50,12 @@ long SSL_CTX_get_timeout(SSL_CTX *ctx);

    The default value for session timeout is decided on a per protocol basis, see SSL_get_default_timeout(3). All currently supported protocols have the same default timeout value of 300 seconds.

    +

    This timeout value is used as the ticket lifetime hint for stateless session tickets. It is also used as the timeout value within the ticket itself.

    + +

    For TLSv1.3, RFC8446 limits transmission of this value to 1 week (604800 seconds).

    + +

    For TLSv1.2, tickets generated during an initial handshake use the value as specified. Tickets generated during a resumed handshake have a value of 0 for the ticket lifetime hint.

    +

    RETURN VALUES

    SSL_CTX_set_timeout() returns the previously set timeout value.

    @@ -62,7 +68,7 @@ long SSL_CTX_get_timeout(SSL_CTX *ctx);

    COPYRIGHT

    -

    Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_max_fragment_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_max_fragment_length.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_max_fragment_length.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_arg.html new file mode 120000 index 00000000..cafe23d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_callback.html index 55c9673a..3ae6d435 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_callback.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_servername_callback.html @@ -64,7 +64,7 @@ int SSL_set_tlsext_host_name(const SSL *s, const char *name);
    SSL_TLSEXT_ERR_ALERT_WARNING
    -

    If this value is returned then the servername is not accepted by the server. However the handshake will continue and send a warning alert instead. The value of the alert should be stored in the location pointed to by the al parameter as for SSL_TLSEXT_ERR_ALERT_FATAL above. Note that TLSv1.3 does not support warning alerts, so if TLSv1.3 has been negotiated then this return value is treated the same way as SSL_TLSEXT_ERR_NOACK.

    +

    If this value is returned then the servername is not accepted by the server. However, the handshake will continue and send a warning alert instead. The value of the alert should be stored in the location pointed to by the al parameter as for SSL_TLSEXT_ERR_ALERT_FATAL above. Note that TLSv1.3 does not support warning alerts, so if TLSv1.3 has been negotiated then this return value is treated the same way as SSL_TLSEXT_ERR_NOACK.

    SSL_TLSEXT_ERR_NOACK
    @@ -94,7 +94,7 @@ int SSL_set_tlsext_host_name(const SSL *s, const char *name);
    On the client, during or after the handshake and a TLSv1.2 (or below) resumption occurred
    -

    If the session from the orignal handshake had a servername accepted by the server then it will return that servername.

    +

    If the session from the original handshake had a servername accepted by the server then it will return that servername.

    Otherwise it returns the servername set via SSL_set_tlsext_host_name() or NULL if it was not called.

    @@ -149,9 +149,9 @@ int SSL_set_tlsext_host_name(const SSL *s, const char *name);

    SSL_get_servername() historically provided some unexpected results in certain corner cases. This has been fixed from OpenSSL 1.1.1e.

    -

    Prior to 1.1.1e, when the client requested a servername in an initial TLSv1.2 handshake, the server accepted it, and then the client successfully resumed but set a different explict servername in the second handshake then when called by the client it returned the servername from the second handshake. This has now been changed to return the servername requested in the original handshake.

    +

    Prior to 1.1.1e, when the client requested a servername in an initial TLSv1.2 handshake, the server accepted it, and then the client successfully resumed but set a different explicit servername in the second handshake then when called by the client it returned the servername from the second handshake. This has now been changed to return the servername requested in the original handshake.

    -

    Also prior to 1.1.1e, if the client sent a servername in the first handshake but the server did not accept it, and then a second handshake occured where TLSv1.2 resumption was successful then when called by the server it returned the servername requested in the original handshake. This has now been changed to NULL.

    +

    Also prior to 1.1.1e, if the client sent a servername in the first handshake but the server did not accept it, and then a second handshake occurred where TLSv1.2 resumption was successful then when called by the server it returned the servername requested in the original handshake. This has now been changed to NULL.

    COPYRIGHT

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_status_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_status_arg.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_status_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_status_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_status_type.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_status_type.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_ticket_key_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_ticket_key_cb.html index 6116bf59..f9d958ca 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_ticket_key_cb.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tlsext_ticket_key_cb.html @@ -101,7 +101,7 @@ long SSL_CTX_set_tlsext_ticket_key_cb(SSL_CTX sslctx,

    RETURN VALUES

    -

    returns 0 to indicate the callback function was set.

    +

    Returns 1 to indicate the callback function was set and 0 otherwise.

    EXAMPLES

    @@ -114,6 +114,8 @@ static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], unsigned char *iv, EVP_CIPHER_CTX *ctx, HMAC_CTX *hctx, int enc) { + your_type_t *key; /* something that you need to implement */ + if (enc) { /* create new session */ if (RAND_bytes(iv, EVP_MAX_IV_LENGTH) <= 0) return -1; /* insufficient random */ @@ -132,21 +134,22 @@ static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], } memcpy(key_name, key->name, 16); - EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key->aes_key, iv); - HMAC_Init_ex(&hctx, key->hmac_key, 16, EVP_sha256(), NULL); + EVP_EncryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, key->aes_key, iv); + HMAC_Init_ex(&hctx, key->hmac_key, 32, EVP_sha256(), NULL); return 1; } else { /* retrieve session */ - key = findkey(name); + time_t t = time(NULL); + key = findkey(key_name); /* something that you need to implement */ - if (key == NULL || key->expire < now()) + if (key == NULL || key->expire < t) return 0; - HMAC_Init_ex(&hctx, key->hmac_key, 16, EVP_sha256(), NULL); - EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key->aes_key, iv); + HMAC_Init_ex(&hctx, key->hmac_key, 32, EVP_sha256(), NULL); + EVP_DecryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, key->aes_key, iv); - if (key->expire < now() - RENEW_TIME) { + if (key->expire < t - RENEW_TIME) { /* RENEW_TIME: implement */ /* * return 2 - This session will get a new ticket even though the * current one is still valid. @@ -163,7 +166,7 @@ static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16],

    COPYRIGHT

    -

    Copyright 2014-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2014-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tmp_dh.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tmp_dh.html new file mode 120000 index 00000000..b7fec45a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_tmp_dh.html @@ -0,0 +1 @@ +SSL_CTX_set_tmp_dh_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_verify_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_verify_depth.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_set_verify_depth.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_up_ref.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_up_ref.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey_ASN1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey_ASN1.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey_ASN1.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_PrivateKey_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey_ASN1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey_ASN1.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey_ASN1.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_RSAPrivateKey_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_cert_and_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_cert_and_key.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_cert_and_key.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_ASN1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_ASN1.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_ASN1.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_chain_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_chain_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_chain_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_certificate_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_psk_identity_hint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_psk_identity_hint.html index 01507c96..839dc722 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_psk_identity_hint.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_psk_identity_hint.html @@ -66,7 +66,7 @@ void SSL_set_psk_server_callback(SSL *ssl, SSL_psk_server_cb_func cb);

    A server application wishing to use PSKs for TLSv1.2 and below must provide a callback function which is called when the server receives the ClientKeyExchange message from the client. The purpose of the callback function is to validate the received PSK identity and to fetch the pre-shared key used during the connection setup phase. The callback is set using the functions SSL_CTX_set_psk_server_callback() or SSL_set_psk_server_callback(). The callback function is given the connection in parameter ssl, NUL-terminated PSK identity sent by the client in parameter identity, and a buffer psk of length max_psk_len bytes where the pre-shared key is to be stored.

    -

    The callback for use in TLSv1.2 will also work in TLSv1.3 although it is recommended to use SSL_CTX_set_psk_find_session_callback() or SSL_set_psk_find_session_callback() for this purpose instead. If TLSv1.3 has been negotiated then OpenSSL will first check to see if a callback has been set via SSL_CTX_set_psk_find_session_callback() or SSL_set_psk_find_session_callback() and it will use that in preference. If no such callback is present then it will check to see if a callback has been set via SSL_CTX_set_psk_server_callback() or SSL_set_psk_server_callback() and use that. In this case the handshake digest will default to SHA-256 for any returned PSK.

    +

    The callback for use in TLSv1.2 will also work in TLSv1.3 although it is recommended to use SSL_CTX_set_psk_find_session_callback() or SSL_set_psk_find_session_callback() for this purpose instead. If TLSv1.3 has been negotiated then OpenSSL will first check to see if a callback has been set via SSL_CTX_set_psk_find_session_callback() or SSL_set_psk_find_session_callback() and it will use that in preference. If no such callback is present then it will check to see if a callback has been set via SSL_CTX_set_psk_server_callback() or SSL_set_psk_server_callback() and use that. In this case the handshake digest will default to SHA-256 for any returned PSK. TLSv1.3 early data exchanges are possible in PSK connections only with the SSL_psk_find_session_cb_func callback, and are not possible with the SSL_psk_server_cb_func callback.

    NOTES

    @@ -100,7 +100,7 @@ void SSL_set_psk_server_callback(SSL *ssl, SSL_psk_server_cb_func cb);

    NOTES -

    There are no known security issues with sharing the same PSK between TLSv1.2 (or below) and TLSv1.3. However the RFC has this note of caution:

    +

    There are no known security issues with sharing the same PSK between TLSv1.2 (or below) and TLSv1.3. However, the RFC has this note of caution:

    "While there is no known way in which the same PSK might produce related output in both versions, only limited analysis has been done. Implementations can ensure safety from cross-protocol related output by not reusing PSKs between TLS 1.3 and TLS 1.2."

    @@ -114,7 +114,7 @@ void SSL_set_psk_server_callback(SSL *ssl, SSL_psk_server_cb_func cb);

    COPYRIGHT -

    Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2006-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_serverinfo_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_serverinfo_ex.html new file mode 120000 index 00000000..25054e04 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_serverinfo_ex.html @@ -0,0 +1 @@ +SSL_CTX_use_serverinfo.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_serverinfo_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_serverinfo_file.html new file mode 120000 index 00000000..25054e04 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_CTX_use_serverinfo_file.html @@ -0,0 +1 @@ +SSL_CTX_use_serverinfo.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_dup.html new file mode 120000 index 00000000..f696e0c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_dup.html @@ -0,0 +1 @@ +SSL_SESSION_free.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_alpn_selected.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_alpn_selected.html new file mode 120000 index 00000000..d158b71e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_alpn_selected.html @@ -0,0 +1 @@ +SSL_SESSION_get0_hostname.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_ticket.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_ticket.html new file mode 120000 index 00000000..b739121b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_ticket.html @@ -0,0 +1 @@ +SSL_SESSION_has_ticket.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_ticket_appdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_ticket_appdata.html new file mode 120000 index 00000000..0bbb46fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get0_ticket_appdata.html @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_id.html new file mode 120000 index 00000000..54171b73 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_id.html @@ -0,0 +1 @@ +SSL_SESSION_set1_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_master_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_master_key.html new file mode 120000 index 00000000..586cfd8b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_master_key.html @@ -0,0 +1 @@ +SSL_get_client_random.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_max_fragment_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_max_fragment_length.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_max_fragment_length.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_ticket_lifetime_hint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_ticket_lifetime_hint.html new file mode 120000 index 00000000..b739121b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_ticket_lifetime_hint.html @@ -0,0 +1 @@ +SSL_SESSION_has_ticket.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_timeout.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_timeout.html new file mode 120000 index 00000000..df70e4ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_get_timeout.html @@ -0,0 +1 @@ +SSL_SESSION_get_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_new.html new file mode 120000 index 00000000..f696e0c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_new.html @@ -0,0 +1 @@ +SSL_SESSION_free.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_print_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_print_fp.html new file mode 120000 index 00000000..c91dc926 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_print_fp.html @@ -0,0 +1 @@ +SSL_SESSION_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_print_keylog.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_print_keylog.html new file mode 120000 index 00000000..c91dc926 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_print_keylog.html @@ -0,0 +1 @@ +SSL_SESSION_print.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_alpn_selected.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_alpn_selected.html new file mode 120000 index 00000000..d158b71e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_alpn_selected.html @@ -0,0 +1 @@ +SSL_SESSION_get0_hostname.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_hostname.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_hostname.html new file mode 120000 index 00000000..d158b71e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_hostname.html @@ -0,0 +1 @@ +SSL_SESSION_get0_hostname.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_id_context.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_id_context.html new file mode 120000 index 00000000..a2e892fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_id_context.html @@ -0,0 +1 @@ +SSL_SESSION_get0_id_context.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_master_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_master_key.html new file mode 120000 index 00000000..586cfd8b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_master_key.html @@ -0,0 +1 @@ +SSL_get_client_random.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_ticket_appdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_ticket_appdata.html new file mode 120000 index 00000000..0bbb46fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set1_ticket_appdata.html @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_cipher.html new file mode 120000 index 00000000..21064508 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_cipher.html @@ -0,0 +1 @@ +SSL_SESSION_get0_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_ex_data.html new file mode 120000 index 00000000..a582f632 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_ex_data.html @@ -0,0 +1 @@ +SSL_SESSION_get_ex_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_protocol_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_protocol_version.html new file mode 120000 index 00000000..c9a8f906 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_protocol_version.html @@ -0,0 +1 @@ +SSL_SESSION_get_protocol_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_time.html new file mode 120000 index 00000000..df70e4ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_time.html @@ -0,0 +1 @@ +SSL_SESSION_get_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_timeout.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_timeout.html new file mode 120000 index 00000000..df70e4ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_set_timeout.html @@ -0,0 +1 @@ +SSL_SESSION_get_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_up_ref.html new file mode 120000 index 00000000..f696e0c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_SESSION_up_ref.html @@ -0,0 +1 @@ +SSL_SESSION_free.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_accept.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_accept.html index 856b86b2..58a2fb2c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_accept.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_accept.html @@ -41,7 +41,7 @@ int SSL_accept(SSL *ssl);

    If the underlying BIO is blocking, SSL_accept() will only return once the handshake has been finished or an error occurred.

    -

    If the underlying BIO is non-blocking, SSL_accept() will also return when the underlying BIO could not satisfy the needs of SSL_accept() to continue the handshake, indicating the problem by the return value -1. In this case a call to SSL_get_error() with the return value of SSL_accept() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_accept(). The action depends on the underlying BIO. When using a non-blocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    +

    If the underlying BIO is nonblocking, SSL_accept() will also return when the underlying BIO could not satisfy the needs of SSL_accept() to continue the handshake, indicating the problem by the return value -1. In this case a call to SSL_get_error() with the return value of SSL_accept() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_accept(). The action depends on the underlying BIO. When using a nonblocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    RETURN VALUES

    @@ -64,7 +64,7 @@ int SSL_accept(SSL *ssl);
    <0
    -

    The TLS/SSL handshake was not successful because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation for non-blocking BIOs. Call SSL_get_error() with the return value ret to find out the reason.

    +

    The TLS/SSL handshake was not successful because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation for nonblocking BIOs. Call SSL_get_error() with the return value ret to find out the reason.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add0_chain_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add0_chain_cert.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add0_chain_cert.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_chain_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_chain_cert.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_chain_cert.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_host.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_host.html new file mode 120000 index 00000000..b276994c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_host.html @@ -0,0 +1 @@ +SSL_set1_host.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_to_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_to_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add1_to_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_client_CA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_client_CA.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_client_CA.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_dir_cert_subjects_to_stack.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_dir_cert_subjects_to_stack.html new file mode 120000 index 00000000..52d2294b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_dir_cert_subjects_to_stack.html @@ -0,0 +1 @@ +SSL_load_client_CA_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_file_cert_subjects_to_stack.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_file_cert_subjects_to_stack.html new file mode 120000 index 00000000..52d2294b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_add_file_cert_subjects_to_stack.html @@ -0,0 +1 @@ +SSL_load_client_CA_file.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_desc_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_desc_string.html new file mode 120000 index 00000000..833e4aec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_desc_string.html @@ -0,0 +1 @@ +SSL_alert_type_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_desc_string_long.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_desc_string_long.html new file mode 120000 index 00000000..833e4aec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_desc_string_long.html @@ -0,0 +1 @@ +SSL_alert_type_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_type_string_long.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_type_string_long.html new file mode 120000 index 00000000..833e4aec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alert_type_string_long.html @@ -0,0 +1 @@ +SSL_alert_type_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alloc_buffers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alloc_buffers.html index 85fa8a58..0b501a78 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alloc_buffers.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_alloc_buffers.html @@ -37,7 +37,7 @@ int SSL_alloc_buffers(SSL *ssl);

    The SSL_MODE_RELEASE_BUFFERS mode releases read or write buffers whenever the buffers have been drained. These functions allow applications to manually control when buffers are freed and allocated.

    -

    After freeing the buffers, the buffers are automatically reallocated upon a new read or write. The SSL_alloc_buffers() does not need to be called, but can be used to make sure the buffers are pre-allocated. This can be used to avoid allocation during data processing or with CRYPTO_set_mem_functions() to control where and how buffers are allocated.

    +

    After freeing the buffers, the buffers are automatically reallocated upon a new read or write. The SSL_alloc_buffers() does not need to be called, but can be used to make sure the buffers are preallocated. This can be used to avoid allocation during data processing or with CRYPTO_set_mem_functions() to control where and how buffers are allocated.

    RETURN VALUES

    @@ -65,7 +65,7 @@ int SSL_alloc_buffers(SSL *ssl);

    COPYRIGHT

    -

    Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2017-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_allow_early_data_cb_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_allow_early_data_cb_fn.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_allow_early_data_cb_fn.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_build_cert_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_build_cert_chain.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_build_cert_chain.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_bytes_to_cipher_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_bytes_to_cipher_list.html new file mode 120000 index 00000000..3c738e3d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_bytes_to_cipher_list.html @@ -0,0 +1 @@ +SSL_get_ciphers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_callback_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_callback_ctrl.html new file mode 120000 index 00000000..fe643c8d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_callback_ctrl.html @@ -0,0 +1 @@ +SSL_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_check_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_check_private_key.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_check_private_key.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_chain_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_chain_certs.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_chain_certs.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_mode.html new file mode 120000 index 00000000..59ce589c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_mode.html @@ -0,0 +1 @@ +SSL_CTX_set_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_options.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_options.html new file mode 120000 index 00000000..2b3c746d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_clear_options.html @@ -0,0 +1 @@ +SSL_CTX_set_options.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_cb_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_cb_fn.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_cb_fn.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_ciphers.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_ciphers.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_compression_methods.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_compression_methods.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_compression_methods.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_ext.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_ext.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_legacy_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_legacy_version.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_legacy_version.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_random.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_random.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_random.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_session_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_session_id.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get0_session_id.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get1_extensions_present.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get1_extensions_present.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_get1_extensions_present.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_isv2.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_isv2.html new file mode 120000 index 00000000..701ff871 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_hello_isv2.html @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_version.html new file mode 120000 index 00000000..466230f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_client_version.html @@ -0,0 +1 @@ +SSL_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_config.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_config.html new file mode 120000 index 00000000..f567a3c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_config.html @@ -0,0 +1 @@ +SSL_CTX_config.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_connect.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_connect.html index ba58ceb3..cfd9afad 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_connect.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_connect.html @@ -41,7 +41,7 @@ int SSL_connect(SSL *ssl);

    If the underlying BIO is blocking, SSL_connect() will only return once the handshake has been finished or an error occurred.

    -

    If the underlying BIO is non-blocking, SSL_connect() will also return when the underlying BIO could not satisfy the needs of SSL_connect() to continue the handshake, indicating the problem by the return value -1. In this case a call to SSL_get_error() with the return value of SSL_connect() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_connect(). The action depends on the underlying BIO. When using a non-blocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    +

    If the underlying BIO is nonblocking, SSL_connect() will also return when the underlying BIO could not satisfy the needs of SSL_connect() to continue the handshake, indicating the problem by the return value -1. In this case a call to SSL_get_error() with the return value of SSL_connect() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_connect(). The action depends on the underlying BIO. When using a nonblocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    Many systems implement Nagle's algorithm by default which means that it will buffer outgoing TCP data if a TCP packet has already been sent for which no corresponding ACK has been received yet from the peer. This can have performance impacts after a successful TLSv1.3 handshake or a successful TLSv1.2 (or below) resumption handshake, because the last peer to communicate in the handshake is the client. If the client is also the first to send application data (as is typical for many protocols) then this data could be buffered until an ACK has been received for the final handshake message.

    @@ -68,7 +68,7 @@ int SSL_connect(SSL *ssl);
    <0
    -

    The TLS/SSL handshake was not successful, because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation for non-blocking BIOs. Call SSL_get_error() with the return value ret to find out the reason.

    +

    The TLS/SSL handshake was not successful, because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation for nonblocking BIOs. Call SSL_get_error() with the return value ret to find out the reason.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_ct_is_enabled.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_ct_is_enabled.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_ct_is_enabled.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_ctrl.html new file mode 120000 index 00000000..fe643c8d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_ctrl.html @@ -0,0 +1 @@ +SSL_CTX_ctrl.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_clear_flags.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_clear_flags.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_enable.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_enable.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_enable.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_set_flags.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_set_flags.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_tlsa_add.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_tlsa_add.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dane_tlsa_add.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_disable_ct.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_disable_ct.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_disable_ct.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_do_handshake.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_do_handshake.html index 2cd11a5b..8a6221d4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_do_handshake.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_do_handshake.html @@ -41,7 +41,7 @@ int SSL_do_handshake(SSL *ssl);

    If the underlying BIO is blocking, SSL_do_handshake() will only return once the handshake has been finished or an error occurred.

    -

    If the underlying BIO is non-blocking, SSL_do_handshake() will also return when the underlying BIO could not satisfy the needs of SSL_do_handshake() to continue the handshake. In this case a call to SSL_get_error() with the return value of SSL_do_handshake() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_do_handshake(). The action depends on the underlying BIO. When using a non-blocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    +

    If the underlying BIO is nonblocking, SSL_do_handshake() will also return when the underlying BIO could not satisfy the needs of SSL_do_handshake() to continue the handshake. In this case a call to SSL_get_error() with the return value of SSL_do_handshake() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_do_handshake(). The action depends on the underlying BIO. When using a nonblocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    RETURN VALUES

    @@ -64,7 +64,7 @@ int SSL_do_handshake(SSL *ssl);
    <0
    -

    The TLS/SSL handshake was not successful because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation for non-blocking BIOs. Call SSL_get_error() with the return value ret to find out the reason.

    +

    The TLS/SSL handshake was not successful because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation for nonblocking BIOs. Call SSL_get_error() with the return value ret to find out the reason.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dup.html new file mode 120000 index 00000000..2f51f29a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_dup.html @@ -0,0 +1 @@ +SSL_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_enable_ct.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_enable_ct.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_enable_ct.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_export_keying_material_early.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_export_keying_material_early.html new file mode 120000 index 00000000..ee8ea578 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_export_keying_material_early.html @@ -0,0 +1 @@ +SSL_export_keying_material.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_free_buffers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_free_buffers.html new file mode 120000 index 00000000..4c13e5dd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_free_buffers.html @@ -0,0 +1 @@ +SSL_alloc_buffers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_alpn_selected.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_alpn_selected.html new file mode 120000 index 00000000..5ca0cdfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_alpn_selected.html @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_chain_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_chain_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_chain_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_chain_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_chain_certs.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_chain_certs.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_dane_authority.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_dane_authority.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_dane_authority.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_dane_tlsa.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_dane_tlsa.html new file mode 120000 index 00000000..4aae135b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_dane_tlsa.html @@ -0,0 +1 @@ +SSL_CTX_dane_enable.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_next_proto_negotiated.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_next_proto_negotiated.html new file mode 120000 index 00000000..5ca0cdfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_next_proto_negotiated.html @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_param.html new file mode 120000 index 00000000..6cc1ff84 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_param.html @@ -0,0 +1 @@ +SSL_CTX_get0_param.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_peer_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_peer_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_peer_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_peername.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_peername.html new file mode 120000 index 00000000..b276994c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_peername.html @@ -0,0 +1 @@ +SSL_set1_host.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_security_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_security_ex_data.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_security_ex_data.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_session.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_session.html new file mode 120000 index 00000000..79a2e689 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_session.html @@ -0,0 +1 @@ +SSL_get_session.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_verified_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_verified_chain.html new file mode 120000 index 00000000..09a399dd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_verified_chain.html @@ -0,0 +1 @@ +SSL_get_peer_cert_chain.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_verify_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_verify_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get0_verify_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_curves.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_curves.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_curves.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_groups.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_groups.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_groups.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_session.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_session.html new file mode 120000 index 00000000..79a2e689 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_session.html @@ -0,0 +1 @@ +SSL_get_session.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_supported_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_supported_ciphers.html new file mode 120000 index 00000000..3c738e3d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get1_supported_ciphers.html @@ -0,0 +1 @@ +SSL_get_ciphers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_all_async_fds.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_all_async_fds.html index 45d50898..1c83c786 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_all_async_fds.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_all_async_fds.html @@ -40,7 +40,7 @@ int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, size_t *numaddfds,

    SSL_waiting_for_async() determines whether an SSL connection is currently waiting for asynchronous operations to complete (see the SSL_MODE_ASYNC mode in SSL_CTX_set_mode(3)).

    -

    SSL_get_all_async_fds() returns a list of file descriptor which can be used in a call to select() or poll() to determine whether the current asynchronous operation has completed or not. A completed operation will result in data appearing as "read ready" on the file descriptor (no actual data should be read from the file descriptor). This function should only be called if the SSL object is currently waiting for asynchronous work to complete (i.e. SSL_ERROR_WANT_ASYNC has been received - see SSL_get_error(3)). Typically the list will only contain one file descriptor. However if multiple asynchronous capable engines are in use then more than one is possible. The number of file descriptors returned is stored in *numfds and the file descriptors themselves are in *fds. The fds parameter may be NULL in which case no file descriptors are returned but *numfds is still populated. It is the callers responsibility to ensure sufficient memory is allocated at *fds so typically this function is called twice (once with a NULL fds parameter and once without).

    +

    SSL_get_all_async_fds() returns a list of file descriptor which can be used in a call to select() or poll() to determine whether the current asynchronous operation has completed or not. A completed operation will result in data appearing as "read ready" on the file descriptor (no actual data should be read from the file descriptor). This function should only be called if the SSL object is currently waiting for asynchronous work to complete (i.e. SSL_ERROR_WANT_ASYNC has been received - see SSL_get_error(3)). Typically the list will only contain one file descriptor. However, if multiple asynchronous capable engines are in use then more than one is possible. The number of file descriptors returned is stored in *numfds and the file descriptors themselves are in *fds. The fds parameter may be NULL in which case no file descriptors are returned but *numfds is still populated. It is the callers responsibility to ensure sufficient memory is allocated at *fds so typically this function is called twice (once with a NULL fds parameter and once without).

    SSL_get_changed_async_fds() returns a list of the asynchronous file descriptors that have been added and a list that have been deleted since the last SSL_ERROR_WANT_ASYNC was received (or since the SSL object was created if no SSL_ERROR_WANT_ASYNC has been received). Similar to SSL_get_all_async_fds() it is the callers responsibility to ensure that *addfd and *delfd have sufficient memory allocated, although they may be NULL. The number of added fds and the number of deleted fds are stored in *numaddfds and *numdelfds respectively.

    @@ -52,7 +52,7 @@ int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, size_t *numaddfds,

    NOTES

    -

    On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore it is defined as an application developer's responsibility to include windows.h prior to async.h.

    +

    On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter is included, commonly as one of the first included headers. Therefore, it is defined as an application developer's responsibility to include windows.h prior to async.h.

    SEE ALSO

    @@ -64,7 +64,7 @@ int SSL_get_changed_async_fds(SSL *s, OSSL_ASYNC_FD *addfd, size_t *numaddfds,

    COPYRIGHT

    -

    Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_changed_async_fds.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_changed_async_fds.html new file mode 120000 index 00000000..f3461c8a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_changed_async_fds.html @@ -0,0 +1 @@ +SSL_get_all_async_fds.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher.html new file mode 120000 index 00000000..ba8f5988 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher.html @@ -0,0 +1 @@ +SSL_get_current_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_bits.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_bits.html new file mode 120000 index 00000000..ba8f5988 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_bits.html @@ -0,0 +1 @@ +SSL_get_current_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_list.html new file mode 120000 index 00000000..3c738e3d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_list.html @@ -0,0 +1 @@ +SSL_get_ciphers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_name.html new file mode 120000 index 00000000..ba8f5988 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_name.html @@ -0,0 +1 @@ +SSL_get_current_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_version.html new file mode 120000 index 00000000..ba8f5988 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_cipher_version.html @@ -0,0 +1 @@ +SSL_get_current_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_client_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_client_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_client_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_client_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_client_ciphers.html new file mode 120000 index 00000000..3c738e3d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_client_ciphers.html @@ -0,0 +1 @@ +SSL_get_ciphers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_current_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_current_cipher.html index 68b82824..701c4dc8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_current_cipher.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_current_cipher.html @@ -29,8 +29,8 @@
    #include <openssl/ssl.h>
     
    -SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl);
    -SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl);
    +const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl);
    +const SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl);
     
     const char *SSL_get_cipher_name(const SSL *s);
     const char *SSL_get_cipher(const SSL *s);
    @@ -61,7 +61,7 @@ const char *SSL_get_cipher_version(const SSL *s);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_default_passwd_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_default_passwd_cb.html new file mode 120000 index 00000000..7d830c6b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_default_passwd_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_default_passwd_cb_userdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_default_passwd_cb_userdata.html new file mode 120000 index 00000000..7d830c6b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_default_passwd_cb_userdata.html @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_early_data_status.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_early_data_status.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_early_data_status.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_error.html index 20adf416..f78ef3aa 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_error.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_error.html @@ -61,15 +61,15 @@ int SSL_get_error(const SSL *ssl, int ret);

    The operation did not complete and can be retried later.

    -

    SSL_ERROR_WANT_READ is returned when the last operation was a read operation from a non-blocking BIO. It means that not enough data was available at this time to complete the operation. If at a later time the underlying BIO has data available for reading the same function can be called again.

    +

    SSL_ERROR_WANT_READ is returned when the last operation was a read operation from a nonblocking BIO. It means that not enough data was available at this time to complete the operation. If at a later time the underlying BIO has data available for reading the same function can be called again.

    SSL_read() and SSL_read_ex() can also set SSL_ERROR_WANT_READ when there is still unprocessed data available at either the SSL or the BIO layer, even for a blocking BIO. See SSL_read(3) for more information.

    -

    SSL_ERROR_WANT_WRITE is returned when the last operation was a write to a non-blocking BIO and it was unable to sent all data to the BIO. When the BIO is writeable again, the same function can be called again.

    +

    SSL_ERROR_WANT_WRITE is returned when the last operation was a write to a nonblocking BIO and it was unable to sent all data to the BIO. When the BIO is writable again, the same function can be called again.

    Note that the retry may again lead to an SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE condition. There is no fixed upper limit for the number of iterations that may be necessary until progress becomes visible at application protocol level.

    -

    It is safe to call SSL_read() or SSL_read_ex() when more data is available even when the call that set this error was an SSL_write() or SSL_write_ex(). However if the call was an SSL_write() or SSL_write_ex(), it should be called again to continue sending the application data.

    +

    It is safe to call SSL_read() or SSL_read_ex() when more data is available even when the call that set this error was an SSL_write() or SSL_write_ex(). However, if the call was an SSL_write() or SSL_write_ex(), it should be called again to continue sending the application data.

    For socket BIOs (e.g. when SSL_set_fd() was used), select() or poll() on the underlying socket can be used to find out when the TLS/SSL I/O function should be retried.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ex_data.html new file mode 120000 index 00000000..541b4ec6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ex_data.html @@ -0,0 +1 @@ +SSL_CTX_set_ex_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ex_data_X509_STORE_CTX_idx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ex_data_X509_STORE_CTX_idx.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ex_data_X509_STORE_CTX_idx.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_info_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_info_callback.html new file mode 120000 index 00000000..0c6819c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_info_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_info_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_key_update_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_key_update_type.html new file mode 120000 index 00000000..75b4af6d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_key_update_type.html @@ -0,0 +1 @@ +SSL_key_update.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_cert_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_cert_list.html new file mode 120000 index 00000000..76351597 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_cert_list.html @@ -0,0 +1 @@ +SSL_CTX_set_max_cert_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_proto_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_proto_version.html new file mode 120000 index 00000000..9fa31522 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_max_proto_version.html @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_min_proto_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_min_proto_version.html new file mode 120000 index 00000000..9fa31522 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_min_proto_version.html @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_mode.html new file mode 120000 index 00000000..59ce589c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_mode.html @@ -0,0 +1 @@ +SSL_CTX_set_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_num_tickets.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_num_tickets.html new file mode 120000 index 00000000..7a45892a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_num_tickets.html @@ -0,0 +1 @@ +SSL_CTX_set_num_tickets.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_options.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_options.html new file mode 120000 index 00000000..2b3c746d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_options.html @@ -0,0 +1 @@ +SSL_CTX_set_options.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_peer_signature_type_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_peer_signature_type_nid.html new file mode 120000 index 00000000..3e5f1a4e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_peer_signature_type_nid.html @@ -0,0 +1 @@ +SSL_get_peer_signature_nid.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_pending_cipher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_pending_cipher.html new file mode 120000 index 00000000..ba8f5988 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_pending_cipher.html @@ -0,0 +1 @@ +SSL_get_current_cipher.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_psk_identity_hint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_psk_identity_hint.html new file mode 120000 index 00000000..fd773ccf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_psk_identity_hint.html @@ -0,0 +1 @@ +SSL_get_psk_identity.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_quiet_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_quiet_shutdown.html new file mode 120000 index 00000000..5bf42d2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_quiet_shutdown.html @@ -0,0 +1 @@ +SSL_CTX_set_quiet_shutdown.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_read_ahead.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_read_ahead.html new file mode 120000 index 00000000..4afbdd77 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_read_ahead.html @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_record_padding_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_record_padding_callback_arg.html new file mode 120000 index 00000000..d080916b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_record_padding_callback_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_recv_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_recv_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_recv_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_rfd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_rfd.html new file mode 120000 index 00000000..662e353f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_rfd.html @@ -0,0 +1 @@ +SSL_get_fd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_secure_renegotiation_support.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_secure_renegotiation_support.html new file mode 120000 index 00000000..2b3c746d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_secure_renegotiation_support.html @@ -0,0 +1 @@ +SSL_CTX_set_options.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_security_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_security_callback.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_security_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_security_level.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_security_level.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_security_level.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_selected_srtp_profile.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_selected_srtp_profile.html new file mode 120000 index 00000000..8ff8be09 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_selected_srtp_profile.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_use_srtp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_server_random.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_server_random.html new file mode 120000 index 00000000..586cfd8b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_server_random.html @@ -0,0 +1 @@ +SSL_get_client_random.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_server_tmp_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_server_tmp_key.html new file mode 120000 index 00000000..92db778e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_server_tmp_key.html @@ -0,0 +1 @@ +SSL_get_peer_tmp_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_servername.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_servername.html new file mode 120000 index 00000000..cafe23d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_servername.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_servername_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_servername_type.html new file mode 120000 index 00000000..cafe23d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_servername_type.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_session.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_session.html index 11f71929..8c8990ca 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_session.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_session.html @@ -45,7 +45,7 @@ SSL_SESSION *SSL_get1_session(SSL *ssl);

    The ssl session contains all information required to re-establish the connection without a full handshake for SSL versions up to and including TLSv1.2. In TLSv1.3 the same is true, but sessions are established after the main handshake has occurred. The server will send the session information to the client at a time of its choosing, which may be some while after the initial connection is established (or never). Calling these functions on the client side in TLSv1.3 before the session has been established will still return an SSL_SESSION object but that object cannot be used for resuming the session. See SSL_SESSION_is_resumable(3) for information on how to determine whether an SSL_SESSION object can be used for resumption or not.

    -

    Additionally, in TLSv1.3, a server can send multiple messages that establish a session for a single connection. In that case the above functions will only return information on the last session that was received.

    +

    Additionally, in TLSv1.3, a server can send multiple messages that establish a session for a single connection. In that case, on the client side, the above functions will only return information on the last session that was received. On the server side they will only return information on the last session that was sent, or if no session tickets were sent then the session for the current connection.

    The preferred way for applications to obtain a resumable SSL_SESSION object is to use a new session callback as described in SSL_CTX_sess_set_new_cb(3). The new session callback is only invoked when a session is actually established, so this avoids the problem described above where an application obtains an SSL_SESSION object that cannot be used for resumption in TLSv1.3. It also enables applications to obtain information about all sessions sent by the server.

    @@ -85,7 +85,7 @@ SSL_SESSION *SSL_get1_session(SSL *ssl);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_ciphers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_ciphers.html new file mode 120000 index 00000000..3c738e3d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_ciphers.html @@ -0,0 +1 @@ +SSL_get_ciphers.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_curve.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_curve.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_curve.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_group.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_group.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shared_group.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shutdown.html new file mode 120000 index 00000000..d72c13eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_shutdown.html @@ -0,0 +1 @@ +SSL_set_shutdown.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_sigalgs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_sigalgs.html new file mode 120000 index 00000000..48fa9aad --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_sigalgs.html @@ -0,0 +1 @@ +SSL_get_shared_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_signature_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_signature_nid.html new file mode 120000 index 00000000..3e5f1a4e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_signature_nid.html @@ -0,0 +1 @@ +SSL_get_peer_signature_nid.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_signature_type_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_signature_type_nid.html new file mode 120000 index 00000000..3e5f1a4e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_signature_type_nid.html @@ -0,0 +1 @@ +SSL_get_peer_signature_nid.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_srtp_profiles.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_srtp_profiles.html new file mode 120000 index 00000000..8ff8be09 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_srtp_profiles.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_use_srtp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ssl_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ssl_method.html new file mode 120000 index 00000000..7bd95e6a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_ssl_method.html @@ -0,0 +1 @@ +SSL_CTX_set_ssl_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_state.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_state.html new file mode 120000 index 00000000..5d38e429 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_state.html @@ -0,0 +1 @@ +SSL_in_init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_time.html new file mode 120000 index 00000000..df70e4ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_time.html @@ -0,0 +1 @@ +SSL_SESSION_get_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_timeout.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_timeout.html new file mode 120000 index 00000000..df70e4ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_timeout.html @@ -0,0 +1 @@ +SSL_SESSION_get_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tlsext_status_ocsp_resp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tlsext_status_ocsp_resp.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tlsext_status_ocsp_resp.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tlsext_status_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tlsext_status_type.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tlsext_status_type.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tmp_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tmp_key.html new file mode 120000 index 00000000..92db778e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_tmp_key.html @@ -0,0 +1 @@ +SSL_get_peer_tmp_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_callback.html new file mode 120000 index 00000000..9179e4fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_callback.html @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_depth.html new file mode 120000 index 00000000..9179e4fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_depth.html @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_mode.html new file mode 120000 index 00000000..9179e4fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_verify_mode.html @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_wbio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_wbio.html new file mode 120000 index 00000000..c18996cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_wbio.html @@ -0,0 +1 @@ +SSL_get_rbio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_wfd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_wfd.html new file mode 120000 index 00000000..662e353f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_get_wfd.html @@ -0,0 +1 @@ +SSL_get_fd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_has_matching_session_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_has_matching_session_id.html new file mode 120000 index 00000000..6c5144d5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_has_matching_session_id.html @@ -0,0 +1 @@ +SSL_CTX_set_generate_session_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_has_pending.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_has_pending.html new file mode 120000 index 00000000..18b2cb88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_has_pending.html @@ -0,0 +1 @@ +SSL_pending.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_accept_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_accept_init.html new file mode 120000 index 00000000..5d38e429 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_accept_init.html @@ -0,0 +1 @@ +SSL_in_init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_before.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_before.html new file mode 120000 index 00000000..5d38e429 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_before.html @@ -0,0 +1 @@ +SSL_in_init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_connect_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_connect_init.html new file mode 120000 index 00000000..5d38e429 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_in_connect_init.html @@ -0,0 +1 @@ +SSL_in_init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_dtls.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_dtls.html new file mode 120000 index 00000000..466230f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_dtls.html @@ -0,0 +1 @@ +SSL_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_init_finished.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_init_finished.html new file mode 120000 index 00000000..5d38e429 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_init_finished.html @@ -0,0 +1 @@ +SSL_in_init.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_server.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_server.html new file mode 120000 index 00000000..f8a643ca --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_is_server.html @@ -0,0 +1 @@ +SSL_set_connect_state.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_load_error_strings.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_load_error_strings.html new file mode 120000 index 00000000..5dd87d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_load_error_strings.html @@ -0,0 +1 @@ +ERR_load_crypto_strings.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_new.html index 8c4a2dce..a25a420f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_new.html @@ -38,7 +38,107 @@ int SSL_up_ref(SSL *s);

    SSL_up_ref() increments the reference count for an existing SSL structure.

    -

    SSL_dup() duplicates an existing SSL structure into a new allocated one. All settings are inherited from the original SSL structure. Dynamic data (i.e. existing connection details) are not copied, the new SSL is set into an initial accept (server) or connect (client) state.

    +

    The function SSL_dup() creates and returns a new SSL structure from the same SSL_CTX that was used to create s. It additionally duplicates a subset of the settings in s into the new SSL object.

    + +

    For SSL_dup() to work, the connection MUST be in its initial state and MUST NOT have yet started the SSL handshake. For connections that are not in their initial state SSL_dup() just increments an internal reference count and returns the same handle. It may be possible to use SSL_clear(3) to recycle an SSL handle that is not in its initial state for re-use, but this is best avoided. Instead, save and restore the session, if desired, and construct a fresh handle for each connection.

    + +

    The subset of settings in s that are duplicated are:

    + +
    + +
    any session data if configured (including the session_id_context)
    +
    + +
    +
    any tmp_dh settings set via SSL_set_tmp_dh(3), SSL_set_tmp_dh_callback(3), or SSL_set_dh_auto(3)
    +
    + +
    +
    any configured certificates, private keys or certificate chains
    +
    + +
    +
    any configured signature algorithms, or client signature algorithms
    +
    + +
    +
    any DANE settings
    +
    + +
    +
    any Options set via SSL_set_options(3)
    +
    + +
    +
    any Mode set via SSL_set_mode(3)
    +
    + +
    +
    any minimum or maximum protocol settings set via SSL_set_min_proto_version(3) or SSL_set_max_proto_version(3) (Note: Only from OpenSSL 1.1.1h and above)
    +
    + +
    +
    any Verify mode, callback or depth set via SSL_set_verify(3) or SSL_set_verify_depth(3) or any configured X509 verification parameters
    +
    + +
    +
    any msg callback or info callback set via SSL_set_msg_callback(3) or SSL_set_info_callback(3)
    +
    + +
    +
    any default password callback set via SSL_set_default_passwd_cb(3)
    +
    + +
    +
    any session id generation callback set via SSL_set_generate_session_id(3)
    +
    + +
    +
    any configured Cipher List
    +
    + +
    +
    initial accept (server) or connect (client) state
    +
    + +
    +
    the max cert list value set via SSL_set_max_cert_list(3)
    +
    + +
    +
    the read_ahead value set via SSL_set_read_ahead(3)
    +
    + +
    +
    application specific data set via SSL_set_ex_data(3)
    +
    + +
    +
    any CA list or client CA list set via SSL_set0_CA_list(3), SSL_set0_client_CA_list() or similar functions
    +
    + +
    +
    any security level settings or callbacks
    +
    + +
    +
    any configured serverinfo data
    +
    + +
    +
    any configured PSK identity hint
    +
    + +
    +
    any configured custom extensions
    +
    + +
    +
    any client certificate types configured via SSL_set1_client_certificate_types
    +
    + +
    +

    RETURN VALUES

    @@ -68,7 +168,7 @@ int SSL_up_ref(SSL *s);

    COPYRIGHT

    -

    Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_peek.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_peek.html new file mode 120000 index 00000000..bb8bbeee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_peek.html @@ -0,0 +1 @@ +SSL_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_peek_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_peek_ex.html new file mode 120000 index 00000000..bb8bbeee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_peek_ex.html @@ -0,0 +1 @@ +SSL_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_pending.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_pending.html index ed0a2335..2ed64a69 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_pending.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_pending.html @@ -38,7 +38,7 @@ int SSL_has_pending(const SSL *s);

    SSL_pending() returns the number of bytes which have been processed, buffered and are available inside ssl for immediate read.

    -

    If the SSL object's read_ahead flag is set (see SSL_CTX_set_read_ahead(3)), additional protocol bytes (beyond the current record) may have been read containing more TLS/SSL records. This also applies to DTLS and pipelining (see SSL_CTX_set_split_send_fragment(3)). These additional bytes will be buffered by OpenSSL but will remain unprocessed until they are needed. As these bytes are still in an unprocessed state SSL_pending() will ignore them. Therefore it is possible for no more bytes to be readable from the underlying BIO (because OpenSSL has already read them) and for SSL_pending() to return 0, even though readable application data bytes are available (because the data is in unprocessed buffered records).

    +

    If the SSL object's read_ahead flag is set (see SSL_CTX_set_read_ahead(3)), additional protocol bytes (beyond the current record) may have been read containing more TLS/SSL records. This also applies to DTLS and pipelining (see SSL_CTX_set_split_send_fragment(3)). These additional bytes will be buffered by OpenSSL but will remain unprocessed until they are needed. As these bytes are still in an unprocessed state SSL_pending() will ignore them. Therefore, it is possible for no more bytes to be readable from the underlying BIO (because OpenSSL has already read them) and for SSL_pending() to return 0, even though readable application data bytes are available (because the data is in unprocessed buffered records).

    SSL_has_pending() returns 1 if s has buffered data (whether processed or unprocessed) and 0 otherwise. Note that it is possible for SSL_has_pending() to return 1, and then a subsequent call to SSL_read_ex() or SSL_read() to return no data because the unprocessed buffered data when processed yielded no application data (for example this can happen during renegotiation). It is also possible in this scenario for SSL_has_pending() to continue to return 1 even after an SSL_read_ex() or SSL_read() call because the buffered and unprocessed data is not yet processable (e.g. because OpenSSL has only received a partial record so far).

    @@ -56,7 +56,7 @@ int SSL_has_pending(const SSL *s);

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_client_cb_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_client_cb_func.html new file mode 120000 index 00000000..faa87649 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_client_cb_func.html @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_find_session_cb_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_find_session_cb_func.html new file mode 120000 index 00000000..9b21e683 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_find_session_cb_func.html @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_server_cb_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_server_cb_func.html new file mode 120000 index 00000000..9b21e683 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_server_cb_func.html @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_use_session_cb_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_use_session_cb_func.html new file mode 120000 index 00000000..faa87649 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_psk_use_session_cb_func.html @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read.html index 9e10f776..6988cb4c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read.html @@ -50,13 +50,13 @@ int SSL_peek(SSL *ssl, void *buf, int num);

    For the transparent negotiation to succeed, the ssl must have been initialized to client or server mode. This is being done by calling SSL_set_connect_state(3) or SSL_set_accept_state() before the first invocation of a read function.

    -

    The read functions work based on the SSL/TLS records. The data are received in records (with a maximum record size of 16kB). Only when a record has been completely received, can it be processed (decryption and check of integrity). Therefore data that was not retrieved at the last read call can still be buffered inside the SSL layer and will be retrieved on the next read call. If num is higher than the number of bytes buffered then the read functions will return with the bytes buffered. If no more bytes are in the buffer, the read functions will trigger the processing of the next record. Only when the record has been received and processed completely will the read functions return reporting success. At most the contents of one record will be returned. As the size of an SSL/TLS record may exceed the maximum packet size of the underlying transport (e.g. TCP), it may be necessary to read several packets from the transport layer before the record is complete and the read call can succeed.

    +

    The read functions work based on the SSL/TLS records. The data are received in records (with a maximum record size of 16kB). Only when a record has been completely received, can it be processed (decryption and check of integrity). Therefore, data that was not retrieved at the last read call can still be buffered inside the SSL layer and will be retrieved on the next read call. If num is higher than the number of bytes buffered then the read functions will return with the bytes buffered. If no more bytes are in the buffer, the read functions will trigger the processing of the next record. Only when the record has been received and processed completely will the read functions return reporting success. At most the contents of one record will be returned. As the size of an SSL/TLS record may exceed the maximum packet size of the underlying transport (e.g. TCP), it may be necessary to read several packets from the transport layer before the record is complete and the read call can succeed.

    If SSL_MODE_AUTO_RETRY has been switched off and a non-application data record has been processed, the read function can return and set the error to SSL_ERROR_WANT_READ. In this case there might still be unprocessed data available in the BIO. If read ahead was set using SSL_CTX_set_read_ahead(3), there might also still be unprocessed data available in the SSL. This behaviour can be controlled using the SSL_CTX_set_mode(3) call.

    If the underlying BIO is blocking, a read function will only return once the read operation has been finished or an error occurred, except when a non-application data record has been processed and SSL_MODE_AUTO_RETRY is not set. Note that if SSL_MODE_AUTO_RETRY is set and only non-application data is available the call will hang.

    -

    If the underlying BIO is non-blocking, a read function will also return when the underlying BIO could not satisfy the needs of the function to continue the operation. In this case a call to SSL_get_error(3) with the return value of the read function will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. As at any time it's possible that non-application data needs to be sent, a read function can also cause write operations. The calling process then must repeat the call after taking appropriate action to satisfy the needs of the read function. The action depends on the underlying BIO. When using a non-blocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    +

    If the underlying BIO is nonblocking, a read function will also return when the underlying BIO could not satisfy the needs of the function to continue the operation. In this case a call to SSL_get_error(3) with the return value of the read function will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. As at any time it's possible that non-application data needs to be sent, a read function can also cause write operations. The calling process then must repeat the call after taking appropriate action to satisfy the needs of the read function. The action depends on the underlying BIO. When using a nonblocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    SSL_pending(3) can be used to find out whether there are buffered bytes available for immediate retrieval. In this case the read function can be called without blocking or actually receiving new data from the underlying socket.

    @@ -94,7 +94,7 @@ int SSL_peek(SSL *ssl, void *buf, int num);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read_early_data.html index a95d72ef..a15e4a50 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read_early_data.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read_early_data.html @@ -62,7 +62,7 @@ void SSL_set_allow_early_data_cb(SSL *s,

    DESCRIPTION

    -

    These functions are used to send and receive early data where TLSv1.3 has been negotiated. Early data can be sent by the client immediately after its initial ClientHello without having to wait for the server to complete the handshake. Early data can only be sent if a session has previously been established with the server, and the server is known to support it. Additionally these functions can be used to send data from the server to the client when the client has not yet completed the authentication stage of the handshake.

    +

    These functions are used to send and receive early data where TLSv1.3 has been negotiated. Early data can be sent by the client immediately after its initial ClientHello without having to wait for the server to complete the handshake. Early data can be sent if a session has previously been established with the server or when establishing a new session using an out-of-band PSK, and only when the server is known to support it. Additionally these functions can be used to send data from the server to the client when the client has not yet completed the authentication stage of the handshake.

    Early data has weaker security properties than other data sent over an SSL/TLS connection. In particular the data does not have forward secrecy. There are also additional considerations around replay attacks (see "REPLAY PROTECTION" below). For these reasons extreme care should be exercised when using early data. For specific details, consult the TLS 1.3 specification.

    @@ -120,13 +120,13 @@ void SSL_set_allow_early_data_cb(SSL *s,

    Calls to SSL_read_early_data() may, in certain circumstances, complete the connection immediately without further need to call a function such as SSL_accept(3). This can happen if the client is using a protocol version less than TLSv1.3. Applications can test for this by calling SSL_is_init_finished(3). Alternatively, applications may choose to call SSL_accept(3) anyway. Such a call will successfully return immediately with no further action taken.

    -

    When a session is created between a server and a client the server will specify the maximum amount of any early data that it will accept on any future connection attempt. By default the server does not accept early data; a server may indicate support for early data by calling SSL_CTX_set_max_early_data() or SSL_set_max_early_data() to set it for the whole SSL_CTX or an individual SSL object respectively. The max_early_data parameter specifies the maximum amount of early data in bytes that is permitted to be sent on a single connection. Similarly the SSL_CTX_get_max_early_data() and SSL_get_max_early_data() functions can be used to obtain the current maximum early data settings for the SSL_CTX and SSL objects respectively. Generally a server application will either use both of SSL_read_early_data() and SSL_CTX_set_max_early_data() (or SSL_set_max_early_data()), or neither of them, since there is no practical benefit from using only one of them. If the maximum early data setting for a server is non-zero then replay protection is automatically enabled (see "REPLAY PROTECTION" below).

    +

    When a session is created between a server and a client the server will specify the maximum amount of any early data that it will accept on any future connection attempt. By default the server does not accept early data; a server may indicate support for early data by calling SSL_CTX_set_max_early_data() or SSL_set_max_early_data() to set it for the whole SSL_CTX or an individual SSL object respectively. The max_early_data parameter specifies the maximum amount of early data in bytes that is permitted to be sent on a single connection. Similarly the SSL_CTX_get_max_early_data() and SSL_get_max_early_data() functions can be used to obtain the current maximum early data settings for the SSL_CTX and SSL objects respectively. Generally a server application will either use both of SSL_read_early_data() and SSL_CTX_set_max_early_data() (or SSL_set_max_early_data()), or neither of them, since there is no practical benefit from using only one of them. If the maximum early data setting for a server is nonzero then replay protection is automatically enabled (see "REPLAY PROTECTION" below).

    If the server rejects the early data sent by a client then it will skip over the data that is sent. The maximum amount of received early data that is skipped is controlled by the recv_max_early_data setting. If a client sends more than this then the connection will abort. This value can be set by calling SSL_CTX_set_recv_max_early_data() or SSL_set_recv_max_early_data(). The current value for this setting can be obtained by calling SSL_CTX_get_recv_max_early_data() or SSL_get_recv_max_early_data(). The default value for this setting is 16,384 bytes.

    The recv_max_early_data value also has an impact on early data that is accepted. The amount of data that is accepted will always be the lower of the max_early_data for the session and the recv_max_early_data setting for the server. If a client sends more data than this then the connection will abort.

    -

    The configured value for max_early_data on a server may change over time as required. However clients may have tickets containing the previously configured max_early_data value. The recv_max_early_data should always be equal to or higher than any recently configured max_early_data value in order to avoid aborted connections. The recv_max_early_data should never be set to less than the current configured max_early_data value.

    +

    The configured value for max_early_data on a server may change over time as required. However, clients may have tickets containing the previously configured max_early_data value. The recv_max_early_data should always be equal to or higher than any recently configured max_early_data value in order to avoid aborted connections. The recv_max_early_data should never be set to less than the current configured max_early_data value.

    Some server applications may wish to have more control over whether early data is accepted or not, for example to mitigate replay risks (see "REPLAY PROTECTION" below) or to decline early_data when the server is heavily loaded. The functions SSL_CTX_set_allow_early_data_cb() and SSL_set_allow_early_data_cb() set a callback which is called at a point in the handshake immediately before a decision is made to accept or reject early data. The callback is provided with a pointer to the user data argument that was provided when the callback was first set. Returning 1 from the callback will allow early data and returning 0 will reject it. Note that the OpenSSL library may reject early data for other reasons in which case this callback will not get called. Notably, the built-in replay protection feature will still be used even if a callback is present unless it has been explicitly disabled using the SSL_OP_NO_ANTI_REPLAY option. See "REPLAY PROTECTION" below.

    @@ -140,13 +140,13 @@ void SSL_set_allow_early_data_cb(SSL *s,

    REPLAY PROTECTION

    -

    When early data is in use the TLS protocol provides no security guarantees that the same early data was not replayed across multiple connections. As a mitigation for this issue OpenSSL automatically enables replay protection if the server is configured with a non-zero max early data value. With replay protection enabled sessions are forced to be single use only. If a client attempts to reuse a session ticket more than once, then the second and subsequent attempts will fall back to a full handshake (and any early data that was submitted will be ignored). Note that single use tickets are enforced even if a client does not send any early data.

    +

    When early data is in use the TLS protocol provides no security guarantees that the same early data was not replayed across multiple connections. As a mitigation for this issue OpenSSL automatically enables replay protection if the server is configured with a nonzero max early data value. With replay protection enabled sessions are forced to be single use only. If a client attempts to reuse a session ticket more than once, then the second and subsequent attempts will fall back to a full handshake (and any early data that was submitted will be ignored). Note that single use tickets are enforced even if a client does not send any early data.

    The replay protection mechanism relies on the internal OpenSSL server session cache (see SSL_CTX_set_session_cache_mode(3)). When replay protection is being used the server will operate as if the SSL_OP_NO_TICKET option had been selected (see SSL_CTX_set_options(3)). Sessions will be added to the cache whenever a session ticket is issued. When a client attempts to resume the session, OpenSSL will check for its presence in the internal cache. If it exists then the resumption is allowed and the session is removed from the cache. If it does not exist then the resumption is not allowed and a full handshake will occur.

    Note that some applications may maintain an external cache of sessions (see SSL_CTX_sess_set_new_cb(3) and similar functions). It is the application's responsibility to ensure that any sessions in the external cache are also populated in the internal cache and that once removed from the internal cache they are similarly removed from the external cache. Failing to do this could result in an application becoming vulnerable to replay attacks. Note that OpenSSL will lock the internal cache while a session is removed but that lock is not held when the remove session callback (see SSL_CTX_sess_set_remove_cb(3)) is called. This could result in a small amount of time where the session has been removed from the internal cache but is still available in the external cache. Applications should be designed with this in mind in order to minimise the possibility of replay attacks.

    -

    The OpenSSL replay protection does not apply to external Pre Shared Keys (PSKs) (e.g. see SSL_CTX_set_psk_find_session_callback(3)). Therefore extreme caution should be applied when combining external PSKs with early data.

    +

    The OpenSSL replay protection does not apply to external Pre Shared Keys (PSKs) (e.g. see SSL_CTX_set_psk_find_session_callback(3)). Therefore, extreme caution should be applied when combining external PSKs with early data.

    Some applications may mitigate the replay risks in other ways. For those applications it is possible to turn off the built-in replay protection feature using the SSL_OP_NO_ANTI_REPLAY option. See SSL_CTX_set_options(3) for details. Applications can also set a callback to make decisions about accepting early data or not. See SSL_CTX_set_allow_early_data_cb() above for details.

    @@ -172,7 +172,7 @@ void SSL_set_allow_early_data_cb(SSL *s,

    COPYRIGHT

    -

    Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2017-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read_ex.html new file mode 120000 index 00000000..bb8bbeee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_read_ex.html @@ -0,0 +1 @@ +SSL_read.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate.html new file mode 120000 index 00000000..75b4af6d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate.html @@ -0,0 +1 @@ +SSL_key_update.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate_abbreviated.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate_abbreviated.html new file mode 120000 index 00000000..75b4af6d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate_abbreviated.html @@ -0,0 +1 @@ +SSL_key_update.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate_pending.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate_pending.html new file mode 120000 index 00000000..75b4af6d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_renegotiate_pending.html @@ -0,0 +1 @@ +SSL_key_update.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_rstate_string_long.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_rstate_string_long.html new file mode 120000 index 00000000..8ef2b507 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_rstate_string_long.html @@ -0,0 +1 @@ +SSL_rstate_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_select_current_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_select_current_cert.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_select_current_cert.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_select_next_proto.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_select_next_proto.html new file mode 120000 index 00000000..5ca0cdfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_select_next_proto.html @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_chain.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_chain.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_chain_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_chain_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_chain_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_rbio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_rbio.html new file mode 120000 index 00000000..7240f23a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_rbio.html @@ -0,0 +1 @@ +SSL_set_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_security_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_security_ex_data.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_security_ex_data.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_verify_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_verify_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_verify_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_wbio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_wbio.html new file mode 120000 index 00000000..7240f23a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set0_wbio.html @@ -0,0 +1 @@ +SSL_set_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_chain.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_chain.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_chain_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_chain_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_chain_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_client_sigalgs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_client_sigalgs.html new file mode 120000 index 00000000..b87af34f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_client_sigalgs.html @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_client_sigalgs_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_client_sigalgs_list.html new file mode 120000 index 00000000..b87af34f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_client_sigalgs_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_curves.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_curves.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_curves.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_curves_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_curves_list.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_curves_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_groups.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_groups.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_groups.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_groups_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_groups_list.html new file mode 120000 index 00000000..09b98eed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_groups_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_curves.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_host.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_host.html index 61a0a507..d353710f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_host.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_host.html @@ -39,7 +39,7 @@ const char *SSL_get0_peername(SSL *s);

    These functions configure server hostname checks in the SSL client.

    -

    SSL_set1_host() sets the expected DNS hostname to name clearing any previously specified host name or names. If name is NULL, or the empty string the list of hostnames is cleared, and name checks are not performed on the peer certificate. When a non-empty name is specified, certificate verification automatically checks the peer hostname via X509_check_host(3) with flags as specified via SSL_set_hostflags(). Clients that enable DANE TLSA authentication via SSL_dane_enable(3) should leave it to that function to set the primary reference identifier of the peer, and should not call SSL_set1_host().

    +

    SSL_set1_host() sets the expected DNS hostname to name clearing any previously specified hostname or names. If name is NULL, or the empty string the list of hostnames is cleared, and name checks are not performed on the peer certificate. When a nonempty name is specified, certificate verification automatically checks the peer hostname via X509_check_host(3) with flags as specified via SSL_set_hostflags(). Clients that enable DANE TLSA authentication via SSL_dane_enable(3) should leave it to that function to set the primary reference identifier of the peer, and should not call SSL_set1_host().

    SSL_add1_host() adds name as an additional reference identifier that can match the peer's certificate. Any previous names set via SSL_set1_host() or SSL_add1_host() are retained, no change is made if name is NULL or empty. When multiple names are configured, the peer is considered verified when any name matches. This function is required for DANE TLSA in the presence of service name indirection via CNAME, MX or SRV records as specified in RFC7671, RFC7672 or RFC7673.

    @@ -84,7 +84,7 @@ if (SSL_get_verify_result(ssl) == X509_V_OK) {

    COPYRIGHT

    -

    Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_param.html new file mode 120000 index 00000000..6cc1ff84 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_param.html @@ -0,0 +1 @@ +SSL_CTX_get0_param.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_sigalgs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_sigalgs.html new file mode 120000 index 00000000..b87af34f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_sigalgs.html @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_sigalgs_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_sigalgs_list.html new file mode 120000 index 00000000..b87af34f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_sigalgs_list.html @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_verify_cert_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_verify_cert_store.html new file mode 120000 index 00000000..5af1bbc1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set1_verify_cert_store.html @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_accept_state.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_accept_state.html new file mode 120000 index 00000000..f8a643ca --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_accept_state.html @@ -0,0 +1 @@ +SSL_set_connect_state.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_allow_early_data_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_allow_early_data_cb.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_allow_early_data_cb.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_alpn_protos.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_alpn_protos.html new file mode 120000 index 00000000..5ca0cdfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_alpn_protos.html @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_bio.html index ec174a6b..d5ac975a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_bio.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_bio.html @@ -35,9 +35,9 @@ void SSL_set0_wbio(SSL *s, BIO *wbio);

    DESCRIPTION

    -

    SSL_set0_rbio() connects the BIO rbio for the read operations of the ssl object. The SSL engine inherits the behaviour of rbio. If the BIO is non-blocking then the ssl object will also have non-blocking behaviour. This function transfers ownership of rbio to ssl. It will be automatically freed using BIO_free_all(3) when the ssl is freed. On calling this function, any existing rbio that was previously set will also be freed via a call to BIO_free_all(3) (this includes the case where the rbio is set to the same value as previously).

    +

    SSL_set0_rbio() connects the BIO rbio for the read operations of the ssl object. The SSL engine inherits the behaviour of rbio. If the BIO is nonblocking then the ssl object will also have nonblocking behaviour. This function transfers ownership of rbio to ssl. It will be automatically freed using BIO_free_all(3) when the ssl is freed. On calling this function, any existing rbio that was previously set will also be freed via a call to BIO_free_all(3) (this includes the case where the rbio is set to the same value as previously).

    -

    SSL_set0_wbio() works in the same as SSL_set0_rbio() except that it connects the BIO wbio for the write operations of the ssl object. Note that if the rbio and wbio are the same then SSL_set0_rbio() and SSL_set0_wbio() each take ownership of one reference. Therefore it may be necessary to increment the number of references available using BIO_up_ref(3) before calling the set0 functions.

    +

    SSL_set0_wbio() works in the same as SSL_set0_rbio() except that it connects the BIO wbio for the write operations of the ssl object. Note that if the rbio and wbio are the same then SSL_set0_rbio() and SSL_set0_wbio() each take ownership of one reference. Therefore, it may be necessary to increment the number of references available using BIO_up_ref(3) before calling the set0 functions.

    SSL_set_bio() is similar to SSL_set0_rbio() and SSL_set0_wbio() except that it connects both the rbio and the wbio at the same time, and transfers the ownership of rbio and wbio to ssl according to the following set of rules:

    @@ -82,7 +82,7 @@ void SSL_set0_wbio(SSL *s, BIO *wbio);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_block_padding.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_block_padding.html new file mode 120000 index 00000000..d080916b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_block_padding.html @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_cert_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_cert_cb.html new file mode 120000 index 00000000..5e861c17 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_cert_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_cert_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_cipher_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_cipher_list.html new file mode 120000 index 00000000..f9ebd142 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_cipher_list.html @@ -0,0 +1 @@ +SSL_CTX_set_cipher_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ciphersuites.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ciphersuites.html new file mode 120000 index 00000000..f9ebd142 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ciphersuites.html @@ -0,0 +1 @@ +SSL_CTX_set_cipher_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_client_CA_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_client_CA_list.html new file mode 120000 index 00000000..98fbbb48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_client_CA_list.html @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ct_validation_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ct_validation_callback.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ct_validation_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_current_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_current_cert.html new file mode 120000 index 00000000..ac5ec155 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_current_cert.html @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_passwd_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_passwd_cb.html new file mode 120000 index 00000000..7d830c6b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_passwd_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_passwd_cb_userdata.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_passwd_cb_userdata.html new file mode 120000 index 00000000..7d830c6b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_passwd_cb_userdata.html @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_read_buffer_len.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_read_buffer_len.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_default_read_buffer_len.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ex_data.html new file mode 120000 index 00000000..541b4ec6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ex_data.html @@ -0,0 +1 @@ +SSL_CTX_set_ex_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_fd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_fd.html index bc1056fe..d5b9b3e1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_fd.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_fd.html @@ -16,6 +16,7 @@
  • SYNOPSIS
  • DESCRIPTION
  • RETURN VALUES
  • +
  • NOTES
  • SEE ALSO
  • COPYRIGHT
  • @@ -36,7 +37,7 @@ int SSL_set_wfd(SSL *ssl, int fd);

    SSL_set_fd() sets the file descriptor fd as the input/output facility for the TLS/SSL (encrypted) side of ssl. fd will typically be the socket file descriptor of a network connection.

    -

    When performing the operation, a socket BIO is automatically created to interface between the ssl and fd. The BIO and hence the SSL engine inherit the behaviour of fd. If fd is non-blocking, the ssl will also have non-blocking behaviour.

    +

    When performing the operation, a socket BIO is automatically created to interface between the ssl and fd. The BIO and hence the SSL engine inherit the behaviour of fd. If fd is nonblocking, the ssl will also have nonblocking behaviour.

    If there was already a BIO connected to ssl, BIO_free() will be called (for both the reading and writing side, if different).

    @@ -62,13 +63,17 @@ int SSL_set_wfd(SSL *ssl, int fd); +

    NOTES

    + +

    On Windows, a socket handle is a 64-bit data type (UINT_PTR), which leads to a compiler warning (conversion from 'SOCKET' to 'int', possible loss of data) when passing the socket handle to SSL_set_*fd(). For the time being, this warning can safely be ignored, because although the Microsoft documentation claims that the upper limit is INVALID_SOCKET-1 (2^64 - 2), in practice the current socket() implementation returns an index into the kernel handle table, the size of which is limited to 2^24.

    +

    SEE ALSO

    SSL_get_fd(3), SSL_set_bio(3), SSL_connect(3), SSL_accept(3), SSL_shutdown(3), ssl(7) , bio(7)

    COPYRIGHT

    -

    Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_generate_session_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_generate_session_id.html new file mode 120000 index 00000000..6c5144d5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_generate_session_id.html @@ -0,0 +1 @@ +SSL_CTX_set_generate_session_id.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_hostflags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_hostflags.html new file mode 120000 index 00000000..b276994c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_hostflags.html @@ -0,0 +1 @@ +SSL_set1_host.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_info_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_info_callback.html new file mode 120000 index 00000000..0c6819c3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_info_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_info_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_cert_list.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_cert_list.html new file mode 120000 index 00000000..76351597 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_cert_list.html @@ -0,0 +1 @@ +SSL_CTX_set_max_cert_list.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_pipelines.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_pipelines.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_pipelines.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_proto_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_proto_version.html new file mode 120000 index 00000000..9fa31522 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_proto_version.html @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_send_fragment.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_send_fragment.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_max_send_fragment.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_min_proto_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_min_proto_version.html new file mode 120000 index 00000000..9fa31522 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_min_proto_version.html @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_mode.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_mode.html new file mode 120000 index 00000000..59ce589c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_mode.html @@ -0,0 +1 @@ +SSL_CTX_set_mode.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_msg_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_msg_callback.html new file mode 120000 index 00000000..2991e5eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_msg_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_msg_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_msg_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_msg_callback_arg.html new file mode 120000 index 00000000..2991e5eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_msg_callback_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_msg_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_num_tickets.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_num_tickets.html new file mode 120000 index 00000000..7a45892a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_num_tickets.html @@ -0,0 +1 @@ +SSL_CTX_set_num_tickets.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_options.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_options.html new file mode 120000 index 00000000..2b3c746d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_options.html @@ -0,0 +1 @@ +SSL_CTX_set_options.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_post_handshake_auth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_post_handshake_auth.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_post_handshake_auth.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_client_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_client_callback.html new file mode 120000 index 00000000..faa87649 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_client_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_find_session_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_find_session_callback.html new file mode 120000 index 00000000..9b21e683 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_find_session_callback.html @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_server_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_server_callback.html new file mode 120000 index 00000000..9b21e683 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_server_callback.html @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_use_session_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_use_session_callback.html new file mode 120000 index 00000000..faa87649 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_psk_use_session_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_quiet_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_quiet_shutdown.html new file mode 120000 index 00000000..5bf42d2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_quiet_shutdown.html @@ -0,0 +1 @@ +SSL_CTX_set_quiet_shutdown.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_read_ahead.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_read_ahead.html new file mode 120000 index 00000000..4afbdd77 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_read_ahead.html @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_record_padding_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_record_padding_callback.html new file mode 120000 index 00000000..d080916b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_record_padding_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_record_padding_callback_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_record_padding_callback_arg.html new file mode 120000 index 00000000..d080916b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_record_padding_callback_arg.html @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_recv_max_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_recv_max_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_recv_max_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_rfd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_rfd.html new file mode 120000 index 00000000..7950f343 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_rfd.html @@ -0,0 +1 @@ +SSL_set_fd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_security_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_security_callback.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_security_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_security_level.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_security_level.html new file mode 120000 index 00000000..9c5134c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_security_level.html @@ -0,0 +1 @@ +SSL_CTX_set_security_level.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_session_id_context.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_session_id_context.html new file mode 120000 index 00000000..7bfd2efb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_session_id_context.html @@ -0,0 +1 @@ +SSL_CTX_set_session_id_context.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_shutdown.html index 1d660eb9..81620b98 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_shutdown.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_shutdown.html @@ -41,7 +41,7 @@ int SSL_get_shutdown(const SSL *ssl);

    NOTES

    -

    The shutdown state of an ssl connection is a bitmask of:

    +

    The shutdown state of an ssl connection is a bit mask of:

    @@ -83,7 +83,7 @@ int SSL_get_shutdown(const SSL *ssl);

    COPYRIGHT

    -

    Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_split_send_fragment.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_split_send_fragment.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_split_send_fragment.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ssl_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ssl_method.html new file mode 120000 index 00000000..7bd95e6a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_ssl_method.html @@ -0,0 +1 @@ +SSL_CTX_set_ssl_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_time.html new file mode 120000 index 00000000..df70e4ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_time.html @@ -0,0 +1 @@ +SSL_SESSION_get_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_timeout.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_timeout.html new file mode 120000 index 00000000..df70e4ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_timeout.html @@ -0,0 +1 @@ +SSL_SESSION_get_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_host_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_host_name.html new file mode 120000 index 00000000..cafe23d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_host_name.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_max_fragment_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_max_fragment_length.html new file mode 120000 index 00000000..8d3f23ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_max_fragment_length.html @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_status_ocsp_resp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_status_ocsp_resp.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_status_ocsp_resp.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_status_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_status_type.html new file mode 120000 index 00000000..66e939c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_status_type.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_use_srtp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_use_srtp.html new file mode 120000 index 00000000..8ff8be09 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tlsext_use_srtp.html @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_use_srtp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tmp_dh.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tmp_dh.html new file mode 120000 index 00000000..b7fec45a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tmp_dh.html @@ -0,0 +1 @@ +SSL_CTX_set_tmp_dh_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tmp_dh_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tmp_dh_callback.html new file mode 120000 index 00000000..b7fec45a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_tmp_dh_callback.html @@ -0,0 +1 @@ +SSL_CTX_set_tmp_dh_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_verify.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_verify.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_verify_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_verify_depth.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_verify_depth.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_wfd.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_wfd.html new file mode 120000 index 00000000..7950f343 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_set_wfd.html @@ -0,0 +1 @@ +SSL_set_fd.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_shutdown.html index 5b75df45..f7d99b2d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_shutdown.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_shutdown.html @@ -77,11 +77,13 @@ int SSL_shutdown(SSL *ssl);

    The behaviour of SSL_shutdown() additionally depends on the underlying BIO. If the underlying BIO is blocking, SSL_shutdown() will only return once the handshake step has been finished or an error occurred.

    -

    If the underlying BIO is non-blocking, SSL_shutdown() will also return when the underlying BIO could not satisfy the needs of SSL_shutdown() to continue the handshake. In this case a call to SSL_get_error() with the return value of SSL_shutdown() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_shutdown(). The action depends on the underlying BIO. When using a non-blocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    +

    If the underlying BIO is nonblocking, SSL_shutdown() will also return when the underlying BIO could not satisfy the needs of SSL_shutdown() to continue the handshake. In this case a call to SSL_get_error() with the return value of SSL_shutdown() will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. The calling process then must repeat the call after taking appropriate action to satisfy the needs of SSL_shutdown(). The action depends on the underlying BIO. When using a nonblocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    After SSL_shutdown() returned 0, it is possible to call SSL_shutdown() again to wait for the peer's close_notify alert. SSL_shutdown() will return 1 in that case. However, it is recommended to wait for it using SSL_read() instead.

    -

    SSL_shutdown() can be modified to only set the connection to "shutdown" state but not actually send the close_notify alert messages, see SSL_CTX_set_quiet_shutdown(3). When "quiet shutdown" is enabled, SSL_shutdown() will always succeed and return 1.

    +

    SSL_shutdown() can be modified to only set the connection to "shutdown" state but not actually send the close_notify alert messages, see SSL_CTX_set_quiet_shutdown(3). When "quiet shutdown" is enabled, SSL_shutdown() will always succeed and return 1. Note that this is not standard compliant behaviour. It should only be done when the peer has a way to make sure all data has been received and doesn't wait for the close_notify alert message, otherwise an unexpected EOF will be reported.

    + +

    There are implementations that do not send the required close_notify alert. If there is a need to communicate with such an implementation, and it's clear that all data has been received, do not wait for the peer's close_notify alert. Waiting for the close_notify alert when the peer just closes the connection will result in an error being generated.

    RETURN VALUES

    @@ -92,7 +94,9 @@ int SSL_shutdown(SSL *ssl);
    0
    -

    The shutdown is not yet finished: the close_notify was sent but the peer did not send it back yet. Call SSL_read() to do a bidirectional shutdown. The output of SSL_get_error(3) may be misleading, as an erroneous SSL_ERROR_SYSCALL may be flagged even though no error occurred.

    +

    The shutdown is not yet finished: the close_notify was sent but the peer did not send it back yet. Call SSL_read() to do a bidirectional shutdown.

    + +

    Unlike most other function, returning 0 does not indicate an error. SSL_get_error(3) should not get called, it may misleadingly indicate an error even though no error occurred.

    1
    @@ -104,7 +108,7 @@ int SSL_shutdown(SSL *ssl);
    <0
    -

    The shutdown was not successful. Call SSL_get_error(3) with the return value ret to find out the reason. It can occur if an action is needed to continue the operation for non-blocking BIOs.

    +

    The shutdown was not successful. Call SSL_get_error(3) with the return value ret to find out the reason. It can occur if an action is needed to continue the operation for nonblocking BIOs.

    It can also occur when not all data was read using SSL_read().

    @@ -117,7 +121,7 @@ int SSL_shutdown(SSL *ssl);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_state_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_state_string.html index 97f7552d..f40b66c7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_state_string.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_state_string.html @@ -42,9 +42,9 @@ const char *SSL_state_string_long(const SSL *ssl);

    During its use, an SSL objects passes several states. The state is internally maintained. Querying the state information is not very informative before or when a connection has been established. It however can be of significant interest during the handshake.

    -

    When using non-blocking sockets, the function call performing the handshake may return with SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE condition, so that SSL_state_string[_long]() may be called.

    +

    When using nonblocking sockets, the function call performing the handshake may return with SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE condition, so that SSL_state_string[_long]() may be called.

    -

    For both blocking or non-blocking sockets, the details state information can be used within the info_callback function set with the SSL_set_info_callback() call.

    +

    For both blocking or nonblocking sockets, the details state information can be used within the info_callback function set with the SSL_set_info_callback() call.

    RETURN VALUES

    @@ -56,7 +56,7 @@ const char *SSL_state_string_long(const SSL *ssl);

    COPYRIGHT

    -

    Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_state_string_long.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_state_string_long.html new file mode 120000 index 00000000..1a7a5cff --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_state_string_long.html @@ -0,0 +1 @@ +SSL_state_string.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_stateless.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_stateless.html new file mode 120000 index 00000000..ab1a8606 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_stateless.html @@ -0,0 +1 @@ +DTLSv1_listen.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_up_ref.html new file mode 120000 index 00000000..2f51f29a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_up_ref.html @@ -0,0 +1 @@ +SSL_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey_ASN1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey_ASN1.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey_ASN1.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_PrivateKey_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey_ASN1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey_ASN1.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey_ASN1.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_RSAPrivateKey_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_cert_and_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_cert_and_key.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_cert_and_key.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_ASN1.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_ASN1.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_ASN1.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_chain_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_chain_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_chain_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_file.html new file mode 120000 index 00000000..f60d0ce6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_certificate_file.html @@ -0,0 +1 @@ +SSL_CTX_use_certificate.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_psk_identity_hint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_psk_identity_hint.html new file mode 120000 index 00000000..9b21e683 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_use_psk_identity_hint.html @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_verify_cb.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_verify_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_verify_client_post_handshake.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_verify_client_post_handshake.html new file mode 120000 index 00000000..60918961 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_verify_client_post_handshake.html @@ -0,0 +1 @@ +SSL_CTX_set_verify.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_version.html new file mode 120000 index 00000000..466230f2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_version.html @@ -0,0 +1 @@ +SSL_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_waiting_for_async.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_waiting_for_async.html new file mode 120000 index 00000000..f3461c8a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_waiting_for_async.html @@ -0,0 +1 @@ +SSL_get_all_async_fds.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want.html index 2414cb00..03728f9f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want.html @@ -47,7 +47,7 @@ int SSL_want_client_hello_cb(const SSL *ssl);

    NOTES

    -

    SSL_want() examines the internal state information of the SSL object. Its return values are similar to that of SSL_get_error(3). Unlike SSL_get_error(3), which also evaluates the error queue, the results are obtained by examining an internal state flag only. The information must therefore only be used for normal operation under non-blocking I/O. Error conditions are not handled and must be treated using SSL_get_error(3).

    +

    SSL_want() examines the internal state information of the SSL object. Its return values are similar to that of SSL_get_error(3). Unlike SSL_get_error(3), which also evaluates the error queue, the results are obtained by examining an internal state flag only. The information must therefore only be used for normal operation under nonblocking I/O. Error conditions are not handled and must be treated using SSL_get_error(3).

    The result returned by SSL_want() should always be consistent with the result of SSL_get_error(3).

    @@ -113,7 +113,7 @@ int SSL_want_client_hello_cb(const SSL *ssl);

    COPYRIGHT

    -

    Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_async.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_async.html new file mode 120000 index 00000000..ba622045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_async.html @@ -0,0 +1 @@ +SSL_want.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_async_job.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_async_job.html new file mode 120000 index 00000000..ba622045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_async_job.html @@ -0,0 +1 @@ +SSL_want.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_client_hello_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_client_hello_cb.html new file mode 120000 index 00000000..ba622045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_client_hello_cb.html @@ -0,0 +1 @@ +SSL_want.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_nothing.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_nothing.html new file mode 120000 index 00000000..ba622045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_nothing.html @@ -0,0 +1 @@ +SSL_want.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_read.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_read.html new file mode 120000 index 00000000..ba622045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_read.html @@ -0,0 +1 @@ +SSL_want.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_write.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_write.html new file mode 120000 index 00000000..ba622045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_write.html @@ -0,0 +1 @@ +SSL_want.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_x509_lookup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_x509_lookup.html new file mode 120000 index 00000000..ba622045 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_want_x509_lookup.html @@ -0,0 +1 @@ +SSL_want.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write.html index 0b9646f0..68de2665 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write.html @@ -48,7 +48,7 @@ int SSL_write(SSL *ssl, const void *buf, int num);

    If the underlying BIO is blocking, the write functions will only return, once the write operation has been finished or an error occurred.

    -

    If the underlying BIO is non-blocking the write functions will also return when the underlying BIO could not satisfy the needs of the function to continue the operation. In this case a call to SSL_get_error(3) with the return value of the write function will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. As at any time a re-negotiation is possible, a call to a write function can also cause read operations! The calling process then must repeat the call after taking appropriate action to satisfy the needs of the write function. The action depends on the underlying BIO. When using a non-blocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    +

    If the underlying BIO is nonblocking the write functions will also return when the underlying BIO could not satisfy the needs of the function to continue the operation. In this case a call to SSL_get_error(3) with the return value of the write function will yield SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE. As at any time a re-negotiation is possible, a call to a write function can also cause read operations! The calling process then must repeat the call after taking appropriate action to satisfy the needs of the write function. The action depends on the underlying BIO. When using a nonblocking socket, nothing is to be done, but select() can be used to check for the required condition. When using a buffering BIO, like a BIO pair, data must be written into or retrieved out of the BIO before being able to continue.

    The write functions will only return with success when the complete contents of buf of length num has been written. This default behaviour can be changed with the SSL_MODE_ENABLE_PARTIAL_WRITE option of SSL_CTX_set_mode(3). When this flag is set the write functions will also return with success when a partial write has been successfully completed. In this case the write function operation is considered completed. The bytes are sent and a new write call with a new buffer (with the already sent bytes removed) must be started. A partial write is performed with the size of a message block, which is 16kB.

    @@ -92,7 +92,7 @@ int SSL_write(SSL *ssl, const void *buf, int num);

    COPYRIGHT

    -

    Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write_early_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write_early_data.html new file mode 120000 index 00000000..f8ca3820 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write_early_data.html @@ -0,0 +1 @@ +SSL_read_early_data.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write_ex.html new file mode 120000 index 00000000..fec26398 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSL_write_ex.html @@ -0,0 +1 @@ +SSL_write.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv23_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SSLv3_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNETID_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNETID_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNETID_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNETID_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNETID_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNETID_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNET_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNET_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNET_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNET_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNET_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/SXNET_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_FEATURE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_FEATURE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_FEATURE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_FEATURE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_FEATURE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_FEATURE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLS_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_1_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_2_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_client_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_client_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_client_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_server_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_server_method.html new file mode 120000 index 00000000..6e8810c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TLSv1_server_method.html @@ -0,0 +1 @@ +SSL_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_ACCURACY_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_MSG_IMPRINT_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_REQ_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_RESP_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_STATUS_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/TS_TST_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_METHOD.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_METHOD.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_METHOD.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_OpenSSL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_OpenSSL.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_OpenSSL.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_read_pw.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_read_pw.html index 08a54847..e64bf250 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_read_pw.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_read_pw.html @@ -37,7 +37,7 @@ UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag);DESCRIPTION -

    UI_UTIL_read_pw_string() asks for a passphrase, using prompt as a prompt, and stores it in buf. The maximum allowed size is given with length, including the terminating NUL byte. If verify is non-zero, the password will be verified as well.

    +

    UI_UTIL_read_pw_string() asks for a passphrase, using prompt as a prompt, and stores it in buf. The maximum allowed size is given with length, including the terminating NUL byte. If verify is nonzero, the password will be verified as well.

    UI_UTIL_read_pw() does the same as UI_UTIL_read_pw_string(), the difference is that you can give it an external buffer buff for the verification passphrase.

    @@ -61,7 +61,7 @@ UI_METHOD *UI_UTIL_wrap_read_pem_callback(pem_password_cb *cb, int rwflag);COPYRIGHT -

    Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_read_pw_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_read_pw_string.html new file mode 120000 index 00000000..a5ba1549 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_read_pw_string.html @@ -0,0 +1 @@ +UI_UTIL_read_pw.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_wrap_read_pem_callback.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_wrap_read_pem_callback.html new file mode 120000 index 00000000..a5ba1549 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_UTIL_wrap_read_pem_callback.html @@ -0,0 +1 @@ +UI_UTIL_read_pw.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_error_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_error_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_error_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_info_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_info_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_info_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_input_boolean.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_input_boolean.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_input_boolean.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_input_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_input_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_input_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_user_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_user_data.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_user_data.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_verify_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_verify_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_add_verify_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_construct_prompt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_construct_prompt.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_construct_prompt.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_create_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_create_method.html index 3fa4e33c..0e45d410 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_create_method.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_create_method.html @@ -63,7 +63,7 @@ const void *UI_method_get_ex_data(const UI_METHOD *method, int idx);DESCRIPTION -

    A method contains a few functions that implement the low level of the User Interface. These functions are:

    +

    A method contains a few functions that implement the low-level of the User Interface. These functions are:

    @@ -166,7 +166,7 @@ const void *UI_method_get_ex_data(const UI_METHOD *method, int idx);COPYRIGHT -

    Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_ctrl.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_ctrl.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_destroy_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_destroy_method.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_destroy_method.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_error_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_error_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_error_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_info_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_info_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_info_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_input_boolean.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_input_boolean.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_input_boolean.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_input_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_input_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_input_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_user_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_user_data.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_user_data.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_verify_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_verify_string.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_dup_verify_string.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_free.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_free.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_action_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_action_string.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_action_string.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_output_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_output_string.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_output_string.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_result.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_result.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_result.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_result_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_result_string.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_result_string.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_test_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_test_string.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_test_string.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_user_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_user_data.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get0_user_data.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_default_method.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_default_method.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_input_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_input_flags.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_input_flags.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_method.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_method.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_length.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_length.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_maxsize.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_maxsize.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_maxsize.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_minsize.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_minsize.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_minsize.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_string_length.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_string_length.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_result_string_length.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_string_type.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_string_type.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_get_string_type.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_closer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_closer.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_closer.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_data_destructor.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_data_destructor.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_data_destructor.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_data_duplicator.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_data_duplicator.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_data_duplicator.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_ex_data.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_ex_data.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_flusher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_flusher.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_flusher.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_opener.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_opener.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_opener.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_prompt_constructor.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_prompt_constructor.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_prompt_constructor.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_reader.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_reader.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_reader.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_writer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_writer.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_get_writer.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_closer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_closer.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_closer.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_data_duplicator.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_data_duplicator.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_data_duplicator.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_ex_data.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_ex_data.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_flusher.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_flusher.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_flusher.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_opener.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_opener.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_opener.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_prompt_constructor.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_prompt_constructor.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_prompt_constructor.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_reader.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_reader.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_reader.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_writer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_writer.html new file mode 120000 index 00000000..d1020a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_method_set_writer.html @@ -0,0 +1 @@ +UI_create_method.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_new.html index 11594b5d..221c926e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_new.html @@ -112,7 +112,7 @@ const UI_METHOD *UI_null(void);

    UI_dup_input_string(), UI_dup_verify_string(), UI_dup_input_boolean(), UI_dup_info_string() and UI_dup_error_string() are basically the same as their UI_add counterparts, except that they make their own copies of all strings.

    -

    UI_construct_prompt() is a helper function that can be used to create a prompt from two pieces of information: an description and a name. The default constructor (if there is none provided by the method used) creates a string "Enter description for name:". With the description "pass phrase" and the file name "foo.key", that becomes "Enter pass phrase for foo.key:". Other methods may create whatever string and may include encodings that will be processed by the other method functions.

    +

    UI_construct_prompt() is a helper function that can be used to create a prompt from two pieces of information: an description and a name. The default constructor (if there is none provided by the method used) creates a string "Enter description for name:". With the description "pass phrase" and the filename "foo.key", that becomes "Enter pass phrase for foo.key:". Other methods may create whatever string and may include encodings that will be processed by the other method functions.

    UI_add_user_data() adds a user data pointer for the method to use at any time. The builtin UI method doesn't care about this info. Note that several calls to this function doesn't add data, it replaces the previous blob with the one given as argument.

    @@ -166,7 +166,7 @@ const UI_METHOD *UI_null(void);

    COPYRIGHT

    -

    Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2001-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_new_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_new_method.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_new_method.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_null.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_null.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_null.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_process.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_process.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_process.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_default_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_default_method.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_default_method.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_method.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_method.html new file mode 120000 index 00000000..91ed3669 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_method.html @@ -0,0 +1 @@ +UI_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_result.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_result.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_result.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_result_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_result_ex.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_set_result_ex.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_string_types.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_string_types.html new file mode 120000 index 00000000..142e355d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/UI_string_types.html @@ -0,0 +1 @@ +UI_STRING.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/USERNOTICE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/USERNOTICE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/USERNOTICE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/USERNOTICE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/USERNOTICE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/USERNOTICE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_EXT_d2i.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_EXT_d2i.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_EXT_d2i.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_EXT_i2d.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_EXT_i2d.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_EXT_i2d.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_add1_i2d.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_add1_i2d.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_add1_i2d.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_get_d2i.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_get_d2i.html index 356629b7..d647e8f0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_get_d2i.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509V3_get_d2i.html @@ -83,7 +83,7 @@ const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(const X509_REVOKED

    NOTES

    -

    In almost all cases an extension can occur at most once and multiple occurrences is an error. Therefore the idx parameter is usually NULL.

    +

    In almost all cases an extension can occur at most once and multiple occurrences is an error. Therefore, the idx parameter is usually NULL.

    The flags parameter may be one of the following values.

    @@ -202,7 +202,7 @@ CT Certificate SCTs NID_ct_cert_scts

    COPYRIGHT

    -

    Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_cmp.html new file mode 120000 index 00000000..ffd38a32 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_cmp.html @@ -0,0 +1 @@ +X509_ALGOR_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_copy.html new file mode 120000 index 00000000..ffd38a32 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_copy.html @@ -0,0 +1 @@ +X509_ALGOR_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_dup.html index 62f5c9f1..8776f064 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_dup.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_dup.html @@ -16,12 +16,13 @@
  • SYNOPSIS
  • DESCRIPTION
  • RETURN VALUES
  • +
  • HISTORY
  • COPYRIGHT
  • NAME

    -

    X509_ALGOR_dup, X509_ALGOR_set0, X509_ALGOR_get0, X509_ALGOR_set_md, X509_ALGOR_cmp - AlgorithmIdentifier functions

    +

    X509_ALGOR_dup, X509_ALGOR_set0, X509_ALGOR_get0, X509_ALGOR_set_md, X509_ALGOR_cmp, X509_ALGOR_copy - AlgorithmIdentifier functions

    SYNOPSIS

    @@ -32,7 +33,8 @@ int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *aobj, int ptype, void *pval); void X509_ALGOR_get0(const ASN1_OBJECT **paobj, int *pptype, const void **ppval, const X509_ALGOR *alg); void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md); -int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b); +int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b); +int X509_ALGOR_copy(X509_ALGOR *dest, const X509_ALGOR *src);

    DESCRIPTION

    @@ -44,21 +46,27 @@ int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);

    X509_ALGOR_set_md() sets the AlgorithmIdentifier alg to appropriate values for the message digest md.

    -

    X509_ALGOR_cmp() compares a and b and returns 0 if they have identical encodings and non-zero otherwise.

    +

    X509_ALGOR_cmp() compares a and b and returns 0 if they have identical encodings and nonzero otherwise.

    + +

    X509_ALGOR_copy() copies the source values into the dest structs; making a duplicate of each (and free any thing pointed to from within *dest).

    RETURN VALUES

    X509_ALGOR_dup() returns a valid X509_ALGOR structure or NULL if an error occurred.

    -

    X509_ALGOR_set0() returns 1 on success or 0 on error.

    +

    X509_ALGOR_set0() and X509_ALGOR_copy() return 1 on success or 0 on error.

    X509_ALGOR_get0() and X509_ALGOR_set_md() return no values.

    -

    X509_ALGOR_cmp() returns 0 if the two parameters have identical encodings and non-zero otherwise.

    +

    X509_ALGOR_cmp() returns 0 if the two parameters have identical encodings and nonzero otherwise.

    + +

    HISTORY

    + +

    The X509_ALGOR_copy() was added in 1.1.1e.

    COPYRIGHT

    -

    Copyright 2002-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2002-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_get0.html new file mode 120000 index 00000000..ffd38a32 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_get0.html @@ -0,0 +1 @@ +X509_ALGOR_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_set0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_set0.html new file mode 120000 index 00000000..ffd38a32 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_set0.html @@ -0,0 +1 @@ +X509_ALGOR_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_set_md.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_set_md.html new file mode 120000 index 00000000..ffd38a32 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ALGOR_set_md.html @@ -0,0 +1 @@ +X509_ALGOR_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_ATTRIBUTE_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CERT_AUX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CERT_AUX_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CERT_AUX_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CERT_AUX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CERT_AUX_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CERT_AUX_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CINF_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CINF_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CINF_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CINF_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CINF_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CINF_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add0_revoked.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add0_revoked.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add0_revoked.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add1_ext_i2d.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add1_ext_i2d.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add1_ext_i2d.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_add_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_cmp.html new file mode 120000 index 00000000..04b18b5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_cmp.html @@ -0,0 +1 @@ +X509_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_delete_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_delete_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_delete_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_digest.html new file mode 120000 index 00000000..f1684187 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_digest.html @@ -0,0 +1 @@ +X509_digest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_by_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_by_cert.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_by_cert.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_extensions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_extensions.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_extensions.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_lastUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_lastUpdate.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_lastUpdate.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_nextUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_nextUpdate.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_nextUpdate.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_signature.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get0_signature.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_REVOKED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_REVOKED.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_REVOKED.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_NID.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_NID.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_OBJ.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_OBJ.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_critical.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_critical.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_by_critical.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_count.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_count.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_d2i.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_d2i.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_ext_d2i.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_issuer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_issuer.html new file mode 120000 index 00000000..dc12338c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_issuer.html @@ -0,0 +1 @@ +X509_get_subject_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_signature_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_signature_nid.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_signature_nid.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_version.html new file mode 120000 index 00000000..28a20db8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_get_version.html @@ -0,0 +1 @@ +X509_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_match.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_match.html new file mode 120000 index 00000000..04b18b5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_match.html @@ -0,0 +1 @@ +X509_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set1_lastUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set1_lastUpdate.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set1_lastUpdate.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set1_nextUpdate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set1_nextUpdate.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set1_nextUpdate.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set_issuer_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set_issuer_name.html new file mode 120000 index 00000000..dc12338c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set_issuer_name.html @@ -0,0 +1 @@ +X509_get_subject_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set_version.html new file mode 120000 index 00000000..28a20db8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_set_version.html @@ -0,0 +1 @@ +X509_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sign.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sign.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sign_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sign_ctx.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sign_ctx.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sort.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sort.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_sort.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_verify.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_CRL_verify.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_create_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_create_by_NID.html new file mode 120000 index 00000000..dc8cfa33 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_create_by_NID.html @@ -0,0 +1 @@ +X509_EXTENSION_set_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_create_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_create_by_OBJ.html new file mode 120000 index 00000000..dc8cfa33 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_create_by_OBJ.html @@ -0,0 +1 @@ +X509_EXTENSION_set_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_critical.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_critical.html new file mode 120000 index 00000000..dc8cfa33 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_critical.html @@ -0,0 +1 @@ +X509_EXTENSION_set_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_data.html new file mode 120000 index 00000000..dc8cfa33 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_data.html @@ -0,0 +1 @@ +X509_EXTENSION_set_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_object.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_object.html new file mode 120000 index 00000000..dc8cfa33 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_get_object.html @@ -0,0 +1 @@ +X509_EXTENSION_set_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_set_critical.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_set_critical.html new file mode 120000 index 00000000..dc8cfa33 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_set_critical.html @@ -0,0 +1 @@ +X509_EXTENSION_set_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_set_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_set_data.html new file mode 120000 index 00000000..dc8cfa33 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_EXTENSION_set_data.html @@ -0,0 +1 @@ +X509_EXTENSION_set_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_METHOD.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_METHOD.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_METHOD.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_TYPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_TYPE.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_TYPE.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_add_dir.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_add_dir.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_add_dir.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_alias.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_alias.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_alias.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_fingerprint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_fingerprint.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_fingerprint.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_issuer_serial.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_issuer_serial.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_issuer_serial.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_subject.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_subject.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_by_subject.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_ctrl.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_ctrl.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_ctrl_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_ctrl_fn.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_ctrl_fn.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_file.html new file mode 120000 index 00000000..0adfa80c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_file.html @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_free.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_free.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_alias_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_alias_fn.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_alias_fn.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_fingerprint_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_fingerprint_fn.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_fingerprint_fn.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_issuer_serial_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_issuer_serial_fn.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_issuer_serial_fn.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_subject_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_subject_fn.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_by_subject_fn.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_method_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_method_data.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_method_data.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_store.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_get_store.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_hash_dir.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_hash_dir.html index f5f09924..1eb0034e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_hash_dir.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_hash_dir.html @@ -70,7 +70,7 @@ int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type);X509_LOOKUP_hash_dir is a more advanced method, which loads certificates and CRLs on demand, and caches them in memory once they are loaded. As of OpenSSL 1.0.0, it also checks for newer CRLs upon each lookup, so that newer CRLs are as soon as they appear in the directory.

    -

    The directory should contain one certificate or CRL per file in PEM format, with a file name of the form hash.N for a certificate, or hash.rN for a CRL. The hash is the value returned by the X509_NAME_hash(3) function applied to the subject name for certificates or issuer name for CRLs. The hash can also be obtained via the -hash option of the x509(1) or crl(1) commands.

    +

    The directory should contain one certificate or CRL per file in PEM format, with a filename of the form hash.N for a certificate, or hash.rN for a CRL. The hash is the value returned by the X509_NAME_hash(3) function applied to the subject name for certificates or issuer name for CRLs. The hash can also be obtained via the -hash option of the x509(1) or crl(1) commands.

    The .N or .rN suffix is a sequence number that starts at zero, and is incremented consecutively for each certificate or CRL with the same hash value. Gaps in the sequence numbers are not supported, it is assumed that there are no more objects with the same hash beyond the first missing number in the sequence.

    @@ -94,7 +94,7 @@ int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file, int type);COPYRIGHT -

    Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_init.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_init.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_load_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_load_file.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_load_file.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_free.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_free.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_ctrl.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_ctrl.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_free.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_free.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_alias.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_alias.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_alias.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_fingerprint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_fingerprint.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_fingerprint.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_issuer_serial.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_issuer_serial.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_issuer_serial.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_subject.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_subject.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_get_by_subject.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_init.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_init.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_new_item.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_new_item.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_new_item.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_shutdown.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_get_shutdown.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_new.html index 99b3a24d..1eb32a13 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_new.html @@ -122,7 +122,7 @@ int X509_OBJECT_set1_X509_CRL(X509_OBJECT *a, X509_CRL *obj);

    X509_LOOKUP_set_get_by_subject(), X509_LOOKUP_set_get_by_issuer_serial(), X509_LOOKUP_set_get_by_fingerprint(), X509_LOOKUP_set_get_by_alias() set the functions used to retrieve an X509 or X509_CRL object by the object's subject, issuer, fingerprint, and alias respectively. These functions are given the X509_LOOKUP context, the type of the X509_OBJECT being requested, parameters related to the lookup, and an X509_OBJECT that will receive the requested object.

    -

    Implementations must add objects they find to the X509_STORE object using X509_STORE_add_cert() or X509_STORE_add_crl(). This increments its reference count. However, the X509_STORE_CTX_get_by_subject() function also increases the reference count which leads to one too many references being held. Therefore applications should additionally call X509_free() or X509_CRL_free() to decrement the reference count again.

    +

    Implementations must add objects they find to the X509_STORE object using X509_STORE_add_cert() or X509_STORE_add_crl(). This increments its reference count. However, the X509_STORE_CTX_get_by_subject() function also increases the reference count which leads to one too many references being held. Therefore, applications should additionally call X509_free() or X509_CRL_free() to decrement the reference count again.

    Implementations should also use either X509_OBJECT_set1_X509() or X509_OBJECT_set1_X509_CRL() to set the result. Note that this also increments the result's reference count.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_ctrl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_ctrl.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_ctrl.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_free.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_free.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_alias.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_alias.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_alias.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_fingerprint.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_fingerprint.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_fingerprint.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_issuer_serial.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_issuer_serial.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_issuer_serial.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_subject.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_subject.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_get_by_subject.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_init.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_init.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_new_item.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_new_item.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_new_item.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_shutdown.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_meth_set_shutdown.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_new.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_new.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_set_method_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_set_method_data.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_set_method_data.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_shutdown.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_shutdown.html new file mode 120000 index 00000000..0b7fc6b7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_LOOKUP_shutdown.html @@ -0,0 +1 @@ +X509_LOOKUP.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_NID.html new file mode 120000 index 00000000..8df65091 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_NID.html @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_OBJ.html new file mode 120000 index 00000000..8df65091 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_OBJ.html @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_txt.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_txt.html new file mode 120000 index 00000000..8df65091 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_create_by_txt.html @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_get_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_get_data.html new file mode 120000 index 00000000..8df65091 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_get_data.html @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_set_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_set_data.html new file mode 120000 index 00000000..8df65091 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_set_data.html @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_set_object.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_set_object.html new file mode 120000 index 00000000..8df65091 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_ENTRY_set_object.html @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry.html new file mode 120000 index 00000000..97ecbfd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry.html @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry_by_NID.html new file mode 120000 index 00000000..97ecbfd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry_by_NID.html @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry_by_OBJ.html new file mode 120000 index 00000000..97ecbfd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_add_entry_by_OBJ.html @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_cmp.html new file mode 120000 index 00000000..04b18b5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_cmp.html @@ -0,0 +1 @@ +X509_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_delete_entry.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_delete_entry.html new file mode 120000 index 00000000..97ecbfd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_delete_entry.html @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_digest.html new file mode 120000 index 00000000..f1684187 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_digest.html @@ -0,0 +1 @@ +X509_digest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_entry_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_entry_count.html new file mode 120000 index 00000000..d406d27e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_entry_count.html @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_entry.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_entry.html new file mode 120000 index 00000000..d406d27e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_entry.html @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_index_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_index_by_OBJ.html new file mode 120000 index 00000000..d406d27e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_index_by_OBJ.html @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_text_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_text_by_NID.html new file mode 120000 index 00000000..d406d27e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_text_by_NID.html @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_text_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_text_by_OBJ.html new file mode 120000 index 00000000..d406d27e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_get_text_by_OBJ.html @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_oneline.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_oneline.html new file mode 120000 index 00000000..eafdddd7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_oneline.html @@ -0,0 +1 @@ +X509_NAME_print_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_print.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_print.html new file mode 120000 index 00000000..eafdddd7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_print.html @@ -0,0 +1 @@ +X509_NAME_print_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_print_ex_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_print_ex_fp.html new file mode 120000 index 00000000..eafdddd7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_NAME_print_ex_fp.html @@ -0,0 +1 @@ +X509_NAME_print_ex.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_OBJECT_set1_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_OBJECT_set1_X509.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_OBJECT_set1_X509.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_OBJECT_set1_X509_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_OBJECT_set1_X509_CRL.html new file mode 120000 index 00000000..83f399ce --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_OBJECT_set1_X509_CRL.html @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_free.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_free.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get0.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get0.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get0.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get0_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get0_param.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_get0_param.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_set.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_set.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_set0_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_set0_param.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_PUBKEY_set0_param.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_INFO_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_INFO_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_INFO_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_INFO_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_INFO_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_INFO_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_check_private_key.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_check_private_key.html new file mode 120000 index 00000000..0a205268 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_check_private_key.html @@ -0,0 +1 @@ +X509_check_private_key.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_digest.html new file mode 120000 index 00000000..f1684187 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_digest.html @@ -0,0 +1 @@ +X509_digest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get0_pubkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get0_pubkey.html new file mode 120000 index 00000000..9bfcb011 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get0_pubkey.html @@ -0,0 +1 @@ +X509_get_pubkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get0_signature.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get0_signature.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_X509_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_X509_PUBKEY.html new file mode 120000 index 00000000..9bfcb011 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_X509_PUBKEY.html @@ -0,0 +1 @@ +X509_get_pubkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_pubkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_pubkey.html new file mode 120000 index 00000000..9bfcb011 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_pubkey.html @@ -0,0 +1 @@ +X509_get_pubkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_signature_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_signature_nid.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_signature_nid.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_subject_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_subject_name.html new file mode 120000 index 00000000..dc12338c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_subject_name.html @@ -0,0 +1 @@ +X509_get_subject_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_version.html new file mode 120000 index 00000000..28a20db8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_get_version.html @@ -0,0 +1 @@ +X509_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set0_signature.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set0_signature.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set1_signature_algo.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set1_signature_algo.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set1_signature_algo.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_pubkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_pubkey.html new file mode 120000 index 00000000..9bfcb011 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_pubkey.html @@ -0,0 +1 @@ +X509_get_pubkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_subject_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_subject_name.html new file mode 120000 index 00000000..dc12338c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_subject_name.html @@ -0,0 +1 @@ +X509_get_subject_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_version.html new file mode 120000 index 00000000..28a20db8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_set_version.html @@ -0,0 +1 @@ +X509_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_sign.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_sign.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_sign.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_sign_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_sign_ctx.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_sign_ctx.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_verify.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REQ_verify.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_add1_ext_i2d.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_add1_ext_i2d.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_add1_ext_i2d.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_add_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_add_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_add_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_delete_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_delete_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_delete_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_dup.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_dup.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_extensions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_extensions.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_extensions.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_revocationDate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_revocationDate.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_revocationDate.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_serialNumber.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_serialNumber.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get0_serialNumber.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_NID.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_NID.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_OBJ.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_OBJ.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_critical.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_critical.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_by_critical.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_count.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_count.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_d2i.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_d2i.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_get_ext_d2i.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_set_revocationDate.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_set_revocationDate.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_set_revocationDate.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_set_serialNumber.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_set_serialNumber.html new file mode 120000 index 00000000..c73f89cd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_REVOKED_set_serialNumber.html @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_INFO_get.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_INFO_get.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_INFO_get.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_INFO_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_INFO_set.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_INFO_set.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_getm.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_getm.html new file mode 120000 index 00000000..050223e4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_getm.html @@ -0,0 +1 @@ +X509_SIG_get0.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_SIG_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cert_crl_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cert_crl_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cert_crl_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_crl_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_crl_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_crl_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_issued_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_issued_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_issued_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_policy_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_policy_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_policy_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_revocation_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_revocation_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_check_revocation_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cleanup.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cleanup.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cleanup_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cleanup_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_cleanup_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_free.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_free.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_cert.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_cert.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_chain.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_chain.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_param.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_param.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_untrusted.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_untrusted.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get0_untrusted.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get1_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get1_chain.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get1_chain.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_cert_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_cert_crl.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_cert_crl.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_crl.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_crl.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_issued.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_issued.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_issued.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_policy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_policy.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_policy.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_revocation.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_revocation.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_check_revocation.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_cleanup.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_cleanup.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_crl_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_crl_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_crl_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_current_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_current_cert.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_current_cert.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_error.html index 98ec5ca0..22d14788 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_error.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_error.html @@ -50,7 +50,7 @@ const char *X509_verify_cert_error_string(long n);

    X509_STORE_CTX_set_error() sets the error code of ctx to s. For example it might be used in a verification callback to set an error based on additional checks.

    -

    X509_STORE_CTX_get_error_depth() returns the depth of the error. This is a non-negative integer representing where in the certificate chain the error occurred. If it is zero it occurred in the end entity certificate, one if it is the certificate which signed the end entity certificate and so on.

    +

    X509_STORE_CTX_get_error_depth() returns the depth of the error. This is a nonnegative integer representing where in the certificate chain the error occurred. If it is zero it occurred in the end entity certificate, one if it is the certificate which signed the end entity certificate and so on.

    X509_STORE_CTX_set_error_depth() sets the error depth. This can be used in combination with X509_STORE_CTX_set_error() to set the depth at which an error condition was detected.

    @@ -70,7 +70,7 @@ const char *X509_verify_cert_error_string(long n);

    X509_STORE_CTX_get_error() returns X509_V_OK or an error code.

    -

    X509_STORE_CTX_get_error_depth() returns a non-negative error depth.

    +

    X509_STORE_CTX_get_error_depth() returns a nonnegative error depth.

    X509_STORE_CTX_get_current_cert() returns the certificate which caused the error or NULL if no certificate is relevant to the error.

    @@ -362,7 +362,7 @@ const char *X509_verify_cert_error_string(long n);

    COPYRIGHT

    -

    Copyright 2009-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2009-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_error_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_error_depth.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_error_depth.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_get_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_get_crl.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_get_crl.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_get_issuer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_get_issuer.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_get_issuer.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_issuer_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_issuer_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_issuer_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_lookup_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_lookup_certs.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_lookup_certs.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_lookup_crls.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_lookup_crls.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_lookup_crls.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_num_untrusted.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_num_untrusted.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_num_untrusted.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_verify.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_verify.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_verify_cb.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_get_verify_cb.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_init.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_init.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_init.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_lookup_certs_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_lookup_certs_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_lookup_certs_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_lookup_crls_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_lookup_crls_fn.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_lookup_crls_fn.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_new.html index cc1d19c4..d59d3c4f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_new.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_new.html @@ -25,7 +25,7 @@

    NAME

    -

    X509_STORE_CTX_new, X509_STORE_CTX_cleanup, X509_STORE_CTX_free, X509_STORE_CTX_init, X509_STORE_CTX_set0_trusted_stack, X509_STORE_CTX_set_cert, X509_STORE_CTX_set0_crls, X509_STORE_CTX_get0_chain, X509_STORE_CTX_set0_verified_chain, X509_STORE_CTX_get0_param, X509_STORE_CTX_set0_param, X509_STORE_CTX_get0_untrusted, X509_STORE_CTX_set0_untrusted, X509_STORE_CTX_get_num_untrusted, X509_STORE_CTX_set_default, X509_STORE_CTX_set_verify, X509_STORE_CTX_verify_fn - X509_STORE_CTX initialisation

    +

    X509_STORE_CTX_new, X509_STORE_CTX_cleanup, X509_STORE_CTX_free, X509_STORE_CTX_init, X509_STORE_CTX_set0_trusted_stack, X509_STORE_CTX_set_cert, X509_STORE_CTX_set0_crls, X509_STORE_CTX_get0_chain, X509_STORE_CTX_set0_verified_chain, X509_STORE_CTX_get0_param, X509_STORE_CTX_set0_param, X509_STORE_CTX_get0_untrusted, X509_STORE_CTX_set0_untrusted, X509_STORE_CTX_get_num_untrusted, X509_STORE_CTX_set_default, X509_STORE_CTX_set_verify, X509_STORE_CTX_verify_fn, X509_STORE_CTX_set_purpose, X509_STORE_CTX_set_trust, X509_STORE_CTX_purpose_inherit - X509_STORE_CTX initialisation

    SYNOPSIS

    @@ -55,7 +55,12 @@ void X509_STORE_CTX_set0_untrusted(X509_STORE_CTX *ctx, STACK_OF(X509) *sk); int X509_STORE_CTX_get_num_untrusted(X509_STORE_CTX *ctx); typedef int (*X509_STORE_CTX_verify_fn)(X509_STORE_CTX *); -void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn verify); +void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn verify); + +int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose); +int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust); +int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose, + int purpose, int trust);

    DESCRIPTION

    @@ -63,7 +68,7 @@ void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn ver

    X509_STORE_CTX_new() returns a newly initialised X509_STORE_CTX structure.

    -

    X509_STORE_CTX_cleanup() internally cleans up an X509_STORE_CTX structure. The context can then be reused with an new call to X509_STORE_CTX_init().

    +

    X509_STORE_CTX_cleanup() internally cleans up an X509_STORE_CTX structure. The context can then be reused with a new call to X509_STORE_CTX_init().

    X509_STORE_CTX_free() completely frees up ctx. After this call ctx is no longer valid. If ctx is NULL nothing is done.

    @@ -73,7 +78,7 @@ void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn ver

    X509_STORE_CTX_set_cert() sets the certificate to be verified in ctx to x.

    -

    X509_STORE_CTX_set0_verified_chain() sets the validated chain used by ctx to be chain. Ownership of the chain is transferred to ctx and should not be free'd by the caller. X509_STORE_CTX_get0_chain() returns a the internal pointer used by the ctx that contains the validated chain.

    +

    X509_STORE_CTX_set0_verified_chain() sets the validated chain used by ctx to be chain. Ownership of the chain is transferred to ctx and should not be free'd by the caller. X509_STORE_CTX_get0_chain() returns the internal pointer used by the ctx that contains the validated chain.

    X509_STORE_CTX_set0_crls() sets a set of CRLs to use to aid certificate verification to sk. These CRLs will only be used if CRL verification is enabled in the associated X509_VERIFY_PARAM structure. This might be used where additional "useful" CRLs are supplied as part of a protocol, for example in a PKCS#7 structure.

    @@ -97,6 +102,14 @@ void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn ver

    This function should receive the current X509_STORE_CTX as a parameter and return 1 on success or 0 on failure.

    +

    X509 certificates may contain information about what purposes keys contained within them can be used for. For example "TLS WWW Server Authentication" or "Email Protection". This "key usage" information is held internally to the certificate itself. In addition the trust store containing trusted certificates can declare what purposes we trust different certificates for. This "trust" information is not held within the certificate itself but is "meta" information held alongside it. This "meta" information is associated with the certificate after it is issued and could be determined by a system administrator. For example a certificate might declare that it is suitable for use for both "TLS WWW Server Authentication" and "TLS Client Authentication", but a system administrator might only trust it for the former. An X.509 certificate extension exists that can record extended key usage information to supplement the purpose information described above. This extended mechanism is arbitrarily extensible and not well suited for a generic library API; applications that need to validate extended key usage information in certifiates will need to define a custom "purpose" (see below) or supply a nondefault verification callback (X509_STORE_set_verify_cb_func(3)).

    + +

    X509_STORE_CTX_set_purpose() sets the purpose for the target certificate being verified in the ctx. Built-in available values for the purpose argument are X509_PURPOSE_SSL_CLIENT, X509_PURPOSE_SSL_SERVER, X509_PURPOSE_NS_SSL_SERVER, X509_PURPOSE_SMIME_SIGN, X509_PURPOSE_SMIME_ENCRYPT, X509_PURPOSE_CRL_SIGN, X509_PURPOSE_ANY, X509_PURPOSE_OCSP_HELPER and X509_PURPOSE_TIMESTAMP_SIGN. It is also possible to create a custom purpose value. Setting a purpose will ensure that the key usage declared within certificates in the chain being verified is consistent with that purpose as well as, potentially, other checks. Every purpose also has an associated default trust value which will also be set at the same time. During verification this trust setting will be verified to check it is consistent with the trust set by the system administrator for certificates in the chain.

    + +

    X509_STORE_CTX_set_trust() sets the trust value for the target certificate being verified in the ctx. Built-in available values for the trust argument are X509_TRUST_COMPAT, X509_TRUST_SSL_CLIENT, X509_TRUST_SSL_SERVER, X509_TRUST_EMAIL, X509_TRUST_OBJECT_SIGN, X509_TRUST_OCSP_SIGN, X509_TRUST_OCSP_REQUEST and X509_TRUST_TSA. It is also possible to create a custom trust value. Since X509_STORE_CTX_set_purpose() also sets the trust value it is normally sufficient to only call that function. If both are called then X509_STORE_CTX_set_trust() should be called after X509_STORE_CTX_set_purpose() since the trust setting of the last call will be used.

    + +

    It should not normally be necessary for end user applications to call X509_STORE_CTX_purpose_inherit() directly. Typically applications should call X509_STORE_CTX_set_purpose() or X509_STORE_CTX_set_trust() instead. Using this function it is possible to set the purpose and trust values for the ctx at the same time. Both ctx and its internal verification parameter pointer must not be NULL. The def_purpose and purpose arguments can have the same purpose values as described for X509_STORE_CTX_set_purpose() above. The trust argument can have the same trust values as described in X509_STORE_CTX_set_trust() above. Any of the def_purpose, purpose or trust values may also have the value 0 to indicate that the supplied parameter should be ignored. After calling this function the purpose to be used for verification is set from the purpose argument unless the purpose was already set in ctx before, and the trust is set from the trust argument unless the trust was already set in ctx before. If trust is 0 then the trust value will be set from the default trust value for purpose. If the default trust value for the purpose is X509_TRUST_DEFAULT and trust is 0 then the default trust value associated with the def_purpose value is used for the trust setting instead.

    +

    NOTES

    The certificates and CRLs in a store are used internally and should not be freed up until after the associated X509_STORE_CTX is freed.

    @@ -107,7 +120,7 @@ void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn ver

    RETURN VALUES

    -

    X509_STORE_CTX_new() returns an newly allocates context or NULL is an error occurred.

    +

    X509_STORE_CTX_new() returns a newly allocated context or NULL if an error occurred.

    X509_STORE_CTX_init() returns 1 for success or 0 if an error occurred.

    @@ -129,7 +142,7 @@ void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn ver

    COPYRIGHT

    -

    Copyright 2009-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2009-2022 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_purpose_inherit.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_purpose_inherit.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_purpose_inherit.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_crls.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_crls.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_crls.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_param.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_param.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_trusted_stack.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_trusted_stack.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_trusted_stack.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_untrusted.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_untrusted.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_untrusted.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_verified_chain.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_verified_chain.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set0_verified_chain.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_cert.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_cert.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_current_cert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_current_cert.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_current_cert.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_default.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_default.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_default.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_error.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_error.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_error_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_error_depth.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_error_depth.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_purpose.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_purpose.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_purpose.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_trust.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_trust.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_trust.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_verify.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_verify.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_verify_cb.html index b0179448..47cd36fa 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_verify_cb.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_set_verify_cb.html @@ -56,7 +56,7 @@ X509_STORE_CTX_cleanup_fn X509_STORE_CTX_get_cleanup(X509_STORE_CTX *ctx);The verification callback can be used to customise the operation of certificate verification, either by overriding error conditions or logging errors for debugging purposes.

    -

    However a verification callback is not essential and the default operation is often sufficient.

    +

    However, a verification callback is not essential and the default operation is often sufficient.

    The ok parameter to the callback indicates the value the callback should return to retain the default behaviour. If it is zero then an error condition is indicated. If it is 1 then no error occurred. If the flag X509_V_FLAG_NOTIFY_POLICY is set then ok is set to 2 to indicate the policy checking is complete.

    @@ -172,7 +172,7 @@ X509_STORE_CTX_cleanup_fn X509_STORE_CTX_get_cleanup(X509_STORE_CTX *ctx);COPYRIGHT -

    Copyright 2009-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2009-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_verify_cb.html new file mode 120000 index 00000000..ffc599e3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_verify_cb.html @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_verify_fn.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_verify_fn.html new file mode 120000 index 00000000..48d2a57d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_CTX_verify_fn.html @@ -0,0 +1 @@ +X509_STORE_CTX_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_add_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_add_crl.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_add_crl.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_add_lookup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_add_lookup.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_add_lookup.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_free.html new file mode 120000 index 00000000..e5fc8993 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_free.html @@ -0,0 +1 @@ +X509_STORE_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get0_objects.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get0_objects.html new file mode 120000 index 00000000..23e0ed27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get0_objects.html @@ -0,0 +1 @@ +X509_STORE_get0_param.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_cert_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_cert_crl.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_cert_crl.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_crl.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_crl.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_issued.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_issued.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_issued.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_policy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_policy.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_policy.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_revocation.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_revocation.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_check_revocation.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_cleanup.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_cleanup.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_get_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_get_crl.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_get_crl.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_get_issuer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_get_issuer.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_get_issuer.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_lookup_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_lookup_certs.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_lookup_certs.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_lookup_crls.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_lookup_crls.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_lookup_crls.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_verify_cb.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_get_verify_cb.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_load_locations.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_load_locations.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_load_locations.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_lock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_lock.html new file mode 120000 index 00000000..e5fc8993 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_lock.html @@ -0,0 +1 @@ +X509_STORE_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set1_param.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set1_param.html new file mode 120000 index 00000000..23e0ed27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set1_param.html @@ -0,0 +1 @@ +X509_STORE_get0_param.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_cert_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_cert_crl.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_cert_crl.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_crl.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_crl.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_issued.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_issued.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_issued.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_policy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_policy.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_policy.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_revocation.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_revocation.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_check_revocation.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_cleanup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_cleanup.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_cleanup.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_default_paths.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_default_paths.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_default_paths.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_depth.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_depth.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_flags.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_flags.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_get_crl.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_get_crl.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_get_crl.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_get_issuer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_get_issuer.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_get_issuer.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_certs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_certs.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_certs.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_crls.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_crls.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_crls.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_crls_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_crls_cb.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_lookup_crls_cb.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_purpose.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_purpose.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_purpose.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_trust.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_trust.html new file mode 120000 index 00000000..f9bdec2c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_trust.html @@ -0,0 +1 @@ +X509_STORE_add_cert.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_cb.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_cb.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_cb_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_cb_func.html index bfab73c9..58ce3517 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_cb_func.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_cb_func.html @@ -111,7 +111,7 @@ void X509_STORE_set_lookup_crls_cb(X509_STORE *ctx,

    X509_STORE_set_get_issuer() sets the function to get the issuer certificate that verifies the given certificate x. When found, the issuer certificate must be assigned to *issuer. This function must return 0 on failure and 1 on success. If no function to get the issuer is provided, the internal default function will be used instead.

    -

    X509_STORE_set_check_issued() sets the function to check that a given certificate x is issued with the issuer certificate issuer. This function must return 0 on failure (among others if x hasn't been issued with issuer) and 1 on success. If no function to get the issuer is provided, the internal default function will be used instead.

    +

    X509_STORE_set_check_issued() sets the function to check that a given certificate x is issued by the issuer certificate issuer. This function must return 0 on failure (among others if x hasn't been issued with issuer) and 1 on success. If no function to get the issuer is provided, the internal default function will be used instead.

    X509_STORE_set_check_revocation() sets the revocation checking function. Its purpose is to look through the final chain and check the revocation status for each certificate. It must return 0 on failure and 1 on success. If no function to get the issuer is provided, the internal default function will be used instead.

    @@ -157,7 +157,7 @@ void X509_STORE_set_lookup_crls_cb(X509_STORE *ctx,

    COPYRIGHT

    -

    Copyright 2009-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2009-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_func.html new file mode 120000 index 00000000..286bd1a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_set_verify_func.html @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_unlock.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_unlock.html new file mode 120000 index 00000000..e5fc8993 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_unlock.html @@ -0,0 +1 @@ +X509_STORE_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_up_ref.html new file mode 120000 index 00000000..e5fc8993 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_STORE_up_ref.html @@ -0,0 +1 @@ +X509_STORE_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VAL_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VAL_free.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VAL_free.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VAL_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VAL_new.html new file mode 120000 index 00000000..f36ea42a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VAL_new.html @@ -0,0 +1 @@ +X509_dup.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_add0_policy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_add0_policy.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_add0_policy.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_add1_host.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_add1_host.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_add1_host.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_clear_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_clear_flags.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_clear_flags.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get0_peername.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get0_peername.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get0_peername.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_auth_level.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_auth_level.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_auth_level.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_depth.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_depth.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_flags.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_flags.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_hostflags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_hostflags.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_hostflags.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_inh_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_inh_flags.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_inh_flags.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_time.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_get_time.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_email.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_email.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_email.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_host.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_host.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_host.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_ip.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_ip.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_ip.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_ip_asc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_ip_asc.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_ip_asc.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_policies.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_policies.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set1_policies.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_auth_level.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_auth_level.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_auth_level.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_depth.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_depth.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_depth.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_flags.html index 7a465270..c3a2ac7a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_flags.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_flags.html @@ -102,7 +102,7 @@ int X509_VERIFY_PARAM_set1_ip_asc(X509_VERIFY_PARAM *param, const char *ipasc);<

    X509_VERIFY_PARAM_set_auth_level() sets the authentication security level to auth_level. The authentication security level determines the acceptable signature and public key strength when verifying certificate chains. For a certificate chain to validate, the public keys of all the certificates must meet the specified security level. The signature algorithm security level is not enforced for the chain's trust anchor certificate, which is either directly trusted or validated by means other than its signature. See SSL_CTX_set_security_level(3) for the definitions of the available levels. The default security level is -1, or "not set". At security level 0 or lower all algorithms are acceptable. Security level 1 requires at least 80-bit-equivalent security and is broadly interoperable, though it will, for example, reject MD5 signatures or RSA keys shorter than 1024 bits.

    -

    X509_VERIFY_PARAM_set1_host() sets the expected DNS hostname to name clearing any previously specified host name or names. If name is NULL, or empty the list of hostnames is cleared, and name checks are not performed on the peer certificate. If name is NUL-terminated, namelen may be zero, otherwise namelen must be set to the length of name.

    +

    X509_VERIFY_PARAM_set1_host() sets the expected DNS hostname to name clearing any previously specified hostname or names. If name is NULL, or empty the list of hostnames is cleared, and name checks are not performed on the peer certificate. If name is NUL-terminated, namelen may be zero, otherwise namelen must be set to the length of name.

    When a hostname is specified, certificate verification automatically invokes X509_check_host(3) with flags equal to the flags argument given to X509_VERIFY_PARAM_set_hostflags() (default zero). Applications are strongly advised to use this interface in preference to explicitly calling X509_check_host(3), hostname checks may be out of scope with the DANE-EE(3) certificate usage, and the internal check will be suppressed as appropriate when DANE verification is enabled.

    @@ -162,7 +162,7 @@ int X509_VERIFY_PARAM_set1_ip_asc(X509_VERIFY_PARAM *param, const char *ipasc);<

    If X509_V_FLAG_USE_DELTAS is set delta CRLs (if present) are used to determine certificate status. If not set deltas are ignored.

    -

    X509_V_FLAG_CHECK_SS_SIGNATURE enables checking of the root CA self signed certificate signature. By default this check is disabled because it doesn't add any additional security but in some cases applications might want to check the signature anyway. A side effect of not checking the root CA signature is that disabled or unsupported message digests on the root CA are not treated as fatal errors.

    +

    X509_V_FLAG_CHECK_SS_SIGNATURE requests checking the signature of the last certificate in a chain if the certificate is supposedly self-signed. This is prohibited and will result in an error if it is a non-conforming CA certificate with key usage restrictions not including the keyCertSign bit. By default this check is disabled because it doesn't add any additional security but in some cases applications might want to check the signature anyway. A side effect of not checking the self-signature of such a certificate is that disabled or unsupported message digests used for the signature are not treated as fatal errors.

    When X509_V_FLAG_TRUSTED_FIRST is set, construction of the certificate chain in X509_verify_cert(3) will search the trust store for issuer certificates before searching the provided untrusted certificates. Local issuer certificates are often more likely to satisfy local security requirements and lead to a locally trusted root. This is especially important when some certificates in the trust store have explicit trust settings (see "TRUST SETTINGS" in x509(1)). As of OpenSSL 1.1.0 this option is on by default.

    @@ -219,7 +219,7 @@ X509_VERIFY_PARAM_free(param);

    COPYRIGHT

    -

    Copyright 2009-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2009-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_hostflags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_hostflags.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_hostflags.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_inh_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_inh_flags.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_inh_flags.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_purpose.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_purpose.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_purpose.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_time.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_time.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_trust.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_trust.html new file mode 120000 index 00000000..3f838c08 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_VERIFY_PARAM_set_trust.html @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_add1_ext_i2d.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_add1_ext_i2d.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_add1_ext_i2d.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_add_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_add_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_add_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_chain_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_chain_up_ref.html new file mode 120000 index 00000000..19dcda38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_chain_up_ref.html @@ -0,0 +1 @@ +X509_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ca.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ca.html index a80f9b83..29579899 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ca.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ca.html @@ -38,7 +38,7 @@ int X509_check_ca(X509 *cert);

    Function return 0, if it is not CA certificate, 1 if it is proper X509v3 CA certificate with basicConstraints extension CA:TRUE, 3, if it is self-signed X509 v1 certificate, 4, if it is certificate with keyUsage extension with bit keyCertSign set, but without basicConstraints, and 5 if it has outdated Netscape Certificate Type extension telling that it is CA certificate.

    -

    Actually, any non-zero value means that this certificate could have been used to sign other certificates.

    +

    Actually, any nonzero value means that this certificate could have been used to sign other certificates.

    SEE ALSO

    @@ -46,7 +46,7 @@ int X509_check_ca(X509 *cert);

    COPYRIGHT

    -

    Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_email.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_email.html new file mode 120000 index 00000000..a07cf5a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_email.html @@ -0,0 +1 @@ +X509_check_host.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_host.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_host.html index c5bbc1d5..faeebfc1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_host.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_host.html @@ -40,11 +40,11 @@ int X509_check_ip_asc(X509 *, const char *address, unsigned int flags);DESCRIPTION -

    The certificate matching functions are used to check whether a certificate matches a given host name, email address, or IP address. The validity of the certificate and its trust level has to be checked by other means.

    +

    The certificate matching functions are used to check whether a certificate matches a given hostname, email address, or IP address. The validity of the certificate and its trust level has to be checked by other means.

    -

    X509_check_host() checks if the certificate Subject Alternative Name (SAN) or Subject CommonName (CN) matches the specified host name, which must be encoded in the preferred name syntax described in section 3.5 of RFC 1034. By default, wildcards are supported and they match only in the left-most label; but they may match part of that label with an explicit prefix or suffix. For example, by default, the host name "www.example.com" would match a certificate with a SAN or CN value of "*.example.com", "w*.example.com" or "*w.example.com".

    +

    X509_check_host() checks if the certificate Subject Alternative Name (SAN) or Subject CommonName (CN) matches the specified hostname, which must be encoded in the preferred name syntax described in section 3.5 of RFC 1034. By default, wildcards are supported and they match only in the left-most label; but they may match part of that label with an explicit prefix or suffix. For example, by default, the host name "www.example.com" would match a certificate with a SAN or CN value of "*.example.com", "w*.example.com" or "*w.example.com".

    -

    Per section 6.4.2 of RFC 6125, name values representing international domain names must be given in A-label form. The namelen argument must be the number of characters in the name string or zero in which case the length is calculated with strlen(name). When name starts with a dot (e.g ".example.com"), it will be matched by a certificate valid for any sub-domain of name, (see also X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS below).

    +

    Per section 6.4.2 of RFC 6125, name values representing international domain names must be given in A-label form. The namelen argument must be the number of characters in the name string or zero in which case the length is calculated with strlen(name). When name starts with a dot (e.g. ".example.com"), it will be matched by a certificate valid for any sub-domain of name, (see also X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS below).

    When the certificate is matched, and peername is not NULL, a pointer to a copy of the matching SAN or CN from the peer certificate is stored at the address passed in peername. The application is responsible for freeing the peername via OPENSSL_free() when it is no longer needed.

    @@ -116,7 +116,7 @@ int X509_check_ip_asc(X509 *, const char *address, unsigned int flags);COPYRIGHT -

    Copyright 2012-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2012-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ip.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ip.html new file mode 120000 index 00000000..a07cf5a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ip.html @@ -0,0 +1 @@ +X509_check_host.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ip_asc.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ip_asc.html new file mode 120000 index 00000000..a07cf5a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_ip_asc.html @@ -0,0 +1 @@ +X509_check_host.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_issued.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_issued.html index ba83e80a..94d4b1b5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_issued.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_issued.html @@ -22,7 +22,7 @@

    NAME

    -

    X509_check_issued - checks if certificate is issued by another certificate

    +

    X509_check_issued - checks if certificate is apparently issued by another certificate

    SYNOPSIS

    @@ -32,7 +32,7 @@ int X509_check_issued(X509 *issuer, X509 *subject);

    DESCRIPTION

    -

    This function checks if certificate subject was issued using CA certificate issuer. This function takes into account not only matching of issuer field of subject with subject field of issuer, but also compares authorityKeyIdentifier extension of subject with subjectKeyIdentifier of issuer if authorityKeyIdentifier present in the subject certificate and checks keyUsage field of issuer.

    +

    X509_check_issued() checks if certificate subject was apparently issued using (CA) certificate issuer. This function takes into account not only matching of the issuer field of subject with the subject field of issuer, but also compares all sub-fields of the authorityKeyIdentifier extension of subject, as far as present, with the respective subjectKeyIdentifier, serial number, and issuer fields of issuer, as far as present. It also checks if the keyUsage field (if present) of issuer allows certificate signing. It does not check the certificate signature.

    RETURN VALUES

    @@ -44,7 +44,7 @@ int X509_check_issued(X509 *issuer, X509 *subject);

    COPYRIGHT

    -

    Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_purpose.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_purpose.html index 9d7c7a13..e4321a1f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_purpose.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_check_purpose.html @@ -51,7 +51,7 @@ int X509_check_purpose(X509 *x, int id, int ca)
    -
    -1 an error condition has occured
    +
    -1 an error condition has occurred
    @@ -69,7 +69,7 @@ int X509_check_purpose(X509 *x, int id, int ca)
    -
    -1 an error condition has occured
    +
    -1 an error condition has occurred
    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_cmp_current_time.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_cmp_current_time.html new file mode 120000 index 00000000..6b40179c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_cmp_current_time.html @@ -0,0 +1 @@ +X509_cmp_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_delete_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_delete_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_delete_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_free.html new file mode 120000 index 00000000..19dcda38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_free.html @@ -0,0 +1 @@ +X509_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_issuer.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_issuer.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_issuer.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_key_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_key_id.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_key_id.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_serial.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_serial.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_authority_serial.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_extensions.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_extensions.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_extensions.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_notAfter.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_notAfter.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_notAfter.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_pubkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_pubkey.html new file mode 120000 index 00000000..9bfcb011 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_pubkey.html @@ -0,0 +1 @@ +X509_get_pubkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_serialNumber.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_serialNumber.html new file mode 120000 index 00000000..8aba1da0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_serialNumber.html @@ -0,0 +1 @@ +X509_get_serialNumber.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_signature.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_signature.html index 23da8c9b..704a5817 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_signature.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_signature.html @@ -24,7 +24,7 @@

    NAME

    -

    X509_get0_signature, X509_get_signature_nid, X509_get0_tbs_sigalg, X509_REQ_get0_signature, X509_REQ_get_signature_nid, X509_CRL_get0_signature, X509_CRL_get_signature_nid, X509_get_signature_info, X509_SIG_INFO_get, X509_SIG_INFO_set - signature information

    +

    X509_get0_signature, X509_REQ_set0_signature, X509_REQ_set1_signature_algo, X509_get_signature_nid, X509_get0_tbs_sigalg, X509_REQ_get0_signature, X509_REQ_get_signature_nid, X509_CRL_get0_signature, X509_CRL_get_signature_nid, X509_get_signature_info, X509_SIG_INFO_get, X509_SIG_INFO_set - signature information

    SYNOPSIS

    @@ -33,6 +33,8 @@ void X509_get0_signature(const ASN1_BIT_STRING **psig, const X509_ALGOR **palg, const X509 *x); +void X509_REQ_set0_signature(X509_REQ *req, ASN1_BIT_STRING *psig); +int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg); int X509_get_signature_nid(const X509 *x); const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x); @@ -58,6 +60,8 @@ void X509_SIG_INFO_set(X509_SIG_INFO *siginf, int mdnid, int pknid,

    X509_get0_signature() sets *psig to the signature of x and *palg to the signature algorithm of x. The values returned are internal pointers which MUST NOT be freed up after the call.

    +

    X509_set0_signature() and X509_REQ_set1_signature_algo() are the equivalent setters for the two values of X509_get0_signature().

    +

    X509_get0_tbs_sigalg() returns the signature algorithm in the signed portion of x.

    X509_get_signature_nid() returns the NID corresponding to the signature algorithm of x.

    @@ -82,6 +86,8 @@ void X509_SIG_INFO_set(X509_SIG_INFO *siginf, int mdnid, int pknid,

    X509_get_signature_info() returns 1 if the signature information returned is valid or 0 if the information is not available (e.g. unknown algorithms or malformed parameters).

    +

    X509_REQ_set1_signature_algo() returns 0 on success; or 1 on an error (e.g. null ALGO pointer). X509_REQ_set0_signature does not return an error value.

    +

    SEE ALSO

    d2i_X509(3), ERR_get_error(3), X509_CRL_get0_by_serial(3), X509_get_ext_d2i(3), X509_get_extension_flags(3), X509_get_pubkey(3), X509_get_subject_name(3), X509_get_version(3), X509_NAME_add_entry_by_txt(3), X509_NAME_ENTRY_get_object(3), X509_NAME_get_index_by_NID(3), X509_NAME_print_ex(3), X509_new(3), X509_sign(3), X509V3_get_d2i(3), X509_verify_cert(3)

    @@ -92,9 +98,11 @@ void X509_SIG_INFO_set(X509_SIG_INFO *siginf, int mdnid, int pknid,

    The X509_REQ_get0_signature(), X509_REQ_get_signature_nid(), X509_CRL_get0_signature() and X509_CRL_get_signature_nid() were added in OpenSSL 1.1.0.

    +

    The X509_REQ_set0_signature() and X509_REQ_set1_signature_algo() were added in OpenSSL 1.1.1e.

    +

    COPYRIGHT

    -

    Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_subject_key_id.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_subject_key_id.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_subject_key_id.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_tbs_sigalg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_tbs_sigalg.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get0_tbs_sigalg.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_X509_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_X509_PUBKEY.html new file mode 120000 index 00000000..9bfcb011 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_X509_PUBKEY.html @@ -0,0 +1 @@ +X509_get_pubkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ex_new_index.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ex_new_index.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ex_new_index.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_NID.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_NID.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_OBJ.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_OBJ.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_critical.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_critical.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_by_critical.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_count.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_count.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_d2i.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_d2i.html new file mode 120000 index 00000000..3a167bde --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_ext_d2i.html @@ -0,0 +1 @@ +X509V3_get_d2i.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_extended_key_usage.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_extended_key_usage.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_extended_key_usage.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_extension_flags.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_extension_flags.html index 517df845..2ddd8659 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_extension_flags.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_extension_flags.html @@ -105,6 +105,12 @@ long X509_get_proxy_pathlen(X509 *x);

    Some certificate extension values are invalid or inconsistent. The certificate should be rejected. This bit may also be raised after an out-of-memory error while processing the X509 object, so it may not be related to the processed ASN1 object itself.

    +
    +
    EXFLAG_NO_FINGERPRINT
    +
    + +

    Failed to compute the internal SHA1 hash value of the certificate. This may be due to malloc failure or because no SHA1 implementation was found.

    +
    EXFLAG_INVALID_POLICY
    @@ -172,7 +178,7 @@ long X509_get_proxy_pathlen(X509 *x);

    COPYRIGHT

    -

    Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_issuer_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_issuer_name.html new file mode 120000 index 00000000..dc12338c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_issuer_name.html @@ -0,0 +1 @@ +X509_get_subject_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_key_usage.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_key_usage.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_key_usage.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_pathlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_pathlen.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_pathlen.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_proxy_pathlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_proxy_pathlen.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_proxy_pathlen.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_signature_info.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_signature_info.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_signature_info.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_signature_nid.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_signature_nid.html new file mode 120000 index 00000000..61801624 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_get_signature_nid.html @@ -0,0 +1 @@ +X509_get0_signature.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_getm_notAfter.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_getm_notAfter.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_getm_notAfter.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_getm_notBefore.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_getm_notBefore.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_getm_notBefore.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_issuer_and_serial_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_issuer_and_serial_cmp.html new file mode 120000 index 00000000..04b18b5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_issuer_and_serial_cmp.html @@ -0,0 +1 @@ +X509_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_issuer_name_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_issuer_name_cmp.html new file mode 120000 index 00000000..04b18b5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_issuer_name_cmp.html @@ -0,0 +1 @@ +X509_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_cert_crl_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_cert_crl_file.html new file mode 120000 index 00000000..0adfa80c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_cert_crl_file.html @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_cert_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_cert_file.html new file mode 120000 index 00000000..0adfa80c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_cert_file.html @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_crl_file.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_crl_file.html new file mode 120000 index 00000000..0adfa80c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_load_crl_file.html @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_pubkey_digest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_pubkey_digest.html new file mode 120000 index 00000000..f1684187 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_pubkey_digest.html @@ -0,0 +1 @@ +X509_digest.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set1_notAfter.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set1_notAfter.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set1_notAfter.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set1_notBefore.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set1_notBefore.html new file mode 120000 index 00000000..fdbbcecf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set1_notBefore.html @@ -0,0 +1 @@ +X509_get0_notBefore.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_ex_data.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_ex_data.html new file mode 120000 index 00000000..6d5f2d24 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_ex_data.html @@ -0,0 +1 @@ +BIO_get_ex_new_index.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_issuer_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_issuer_name.html new file mode 120000 index 00000000..dc12338c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_issuer_name.html @@ -0,0 +1 @@ +X509_get_subject_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_proxy_flag.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_proxy_flag.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_proxy_flag.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_proxy_pathlen.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_proxy_pathlen.html new file mode 120000 index 00000000..d70e7970 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_proxy_pathlen.html @@ -0,0 +1 @@ +X509_get_extension_flags.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_pubkey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_pubkey.html new file mode 120000 index 00000000..9bfcb011 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_pubkey.html @@ -0,0 +1 @@ +X509_get_pubkey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_serialNumber.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_serialNumber.html new file mode 120000 index 00000000..8aba1da0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_serialNumber.html @@ -0,0 +1 @@ +X509_get_serialNumber.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_subject_name.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_subject_name.html new file mode 120000 index 00000000..dc12338c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_subject_name.html @@ -0,0 +1 @@ +X509_get_subject_name.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_version.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_version.html new file mode 120000 index 00000000..28a20db8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_set_version.html @@ -0,0 +1 @@ +X509_get_version.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_sign_ctx.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_sign_ctx.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_sign_ctx.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_subject_name_cmp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_subject_name_cmp.html new file mode 120000 index 00000000..04b18b5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_subject_name_cmp.html @@ -0,0 +1 @@ +X509_cmp.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_time_adj.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_time_adj.html new file mode 120000 index 00000000..6b40179c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_time_adj.html @@ -0,0 +1 @@ +X509_cmp_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_time_adj_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_time_adj_ex.html new file mode 120000 index 00000000..6b40179c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_time_adj_ex.html @@ -0,0 +1 @@ +X509_cmp_time.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_up_ref.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_up_ref.html new file mode 120000 index 00000000..19dcda38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_up_ref.html @@ -0,0 +1 @@ +X509_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_verify.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_verify.html new file mode 120000 index 00000000..77e6e230 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_verify.html @@ -0,0 +1 @@ +X509_sign.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_verify_cert_error_string.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_verify_cert_error_string.html new file mode 120000 index 00000000..542dc2e0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509_verify_cert_error_string.html @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_add_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_add_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_add_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_delete_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_delete_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_delete_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_NID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_NID.html index 67599aba..6d9ac02c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_NID.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_NID.html @@ -75,7 +75,7 @@ int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);X509v3_get_ext_by_NID() and X509v3_get_ext_by_OBJ() look for an extension with nid or obj from extension stack x. The search starts from the extension after lastpos or from the beginning if <lastpos> is -1. If the extension is found its index is returned otherwise -1 is returned.

    -

    X509v3_get_ext_by_critical() is similar to X509v3_get_ext_by_NID() except it looks for an extension of criticality crit. A zero value for crit looks for a non-critical extension a non-zero value looks for a critical extension.

    +

    X509v3_get_ext_by_critical() is similar to X509v3_get_ext_by_NID() except it looks for an extension of criticality crit. A zero value for crit looks for a non-critical extension a nonzero value looks for a critical extension.

    X509v3_delete_ext() deletes the extension with index loc from x. The deleted extension is returned and must be freed by the caller. If loc is in invalid index value NULL is returned.

    @@ -111,7 +111,7 @@ int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc);COPYRIGHT -

    Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2015-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_OBJ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_OBJ.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_OBJ.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_critical.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_critical.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_by_critical.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_count.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_count.html new file mode 120000 index 00000000..f251fd64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/X509v3_get_ext_count.html @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_add_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_add_cb.html new file mode 120000 index 00000000..b90842b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_add_cb.html @@ -0,0 +1 @@ +SSL_extension_supported.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_free_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_free_cb.html new file mode 120000 index 00000000..b90842b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_free_cb.html @@ -0,0 +1 @@ +SSL_extension_supported.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_parse_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_parse_cb.html new file mode 120000 index 00000000..b90842b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/custom_ext_parse_cb.html @@ -0,0 +1 @@ +SSL_extension_supported.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ACCESS_DESCRIPTION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ACCESS_DESCRIPTION.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ACCESS_DESCRIPTION.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ADMISSIONS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ADMISSIONS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ADMISSIONS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ADMISSION_SYNTAX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ADMISSION_SYNTAX.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ADMISSION_SYNTAX.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdOrRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdOrRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdOrRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdentifierChoice.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdentifierChoice.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdentifierChoice.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdentifiers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdentifiers.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASIdentifiers.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_BIT_STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_BIT_STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_BIT_STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_BMPSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_BMPSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_BMPSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_ENUMERATED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_ENUMERATED.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_ENUMERATED.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_GENERALIZEDTIME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_GENERALIZEDTIME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_GENERALIZEDTIME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_GENERALSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_GENERALSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_GENERALSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_IA5STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_IA5STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_IA5STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_INTEGER.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_INTEGER.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_INTEGER.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_NULL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_NULL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_NULL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_OBJECT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_OBJECT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_OBJECT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_OCTET_STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_OCTET_STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_OCTET_STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_PRINTABLE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_PRINTABLE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_PRINTABLE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_PRINTABLESTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_PRINTABLESTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_PRINTABLESTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_SEQUENCE_ANY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_SEQUENCE_ANY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_SEQUENCE_ANY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_SET_ANY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_SET_ANY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_SET_ANY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_T61STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_T61STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_T61STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_TIME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_TIME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_TIME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_TYPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_TYPE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_TYPE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UINTEGER.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UINTEGER.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UINTEGER.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UNIVERSALSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UNIVERSALSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UNIVERSALSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UTCTIME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UTCTIME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UTCTIME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UTF8STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UTF8STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_UTF8STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_VISIBLESTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_VISIBLESTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASN1_VISIBLESTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ASRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AUTHORITY_INFO_ACCESS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AUTHORITY_INFO_ACCESS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AUTHORITY_INFO_ACCESS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AUTHORITY_KEYID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AUTHORITY_KEYID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AUTHORITY_KEYID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AutoPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AutoPrivateKey.html new file mode 120000 index 00000000..462b13cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_AutoPrivateKey.html @@ -0,0 +1 @@ +d2i_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_BASIC_CONSTRAINTS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_BASIC_CONSTRAINTS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_BASIC_CONSTRAINTS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CERTIFICATEPOLICIES.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CERTIFICATEPOLICIES.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CERTIFICATEPOLICIES.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_ContentInfo.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_ContentInfo.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_ContentInfo.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_ReceiptRequest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_ReceiptRequest.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_ReceiptRequest.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CMS_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CRL_DIST_POINTS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CRL_DIST_POINTS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_CRL_DIST_POINTS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DHparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DHparams.html index f221f44a..e91db336 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DHparams.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DHparams.html @@ -28,7 +28,7 @@
    #include <openssl/dh.h>
     
    -DH *d2i_DHparams(DH **a, unsigned char **pp, long length);
    +DH *d2i_DHparams(DH **a, const unsigned char **pp, long length);
     int i2d_DHparams(DH *a, unsigned char **pp);

    DESCRIPTION

    @@ -49,7 +49,7 @@ int i2d_DHparams(DH *a, unsigned char **pp);

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DHxparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DHxparams.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DHxparams.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIRECTORYSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIRECTORYSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIRECTORYSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DISPLAYTEXT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DISPLAYTEXT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DISPLAYTEXT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIST_POINT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIST_POINT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIST_POINT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIST_POINT_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIST_POINT_NAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DIST_POINT_NAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPrivateKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPublicKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAPublicKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_PUBKEY_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_SIG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_SIG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSA_SIG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAparams.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_DSAparams.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECDSA_SIG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECDSA_SIG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECDSA_SIG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPKParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPKParameters.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPKParameters.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECParameters.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECParameters.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ECPrivateKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EC_PUBKEY_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EDIPARTYNAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EDIPARTYNAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EDIPARTYNAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_CERT_ID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_CERT_ID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_CERT_ID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_ISSUER_SERIAL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_ISSUER_SERIAL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_ISSUER_SERIAL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_SIGNING_CERT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_SIGNING_CERT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ESS_SIGNING_CERT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EXTENDED_KEY_USAGE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EXTENDED_KEY_USAGE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_EXTENDED_KEY_USAGE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_GENERAL_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_GENERAL_NAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_GENERAL_NAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_GENERAL_NAMES.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_GENERAL_NAMES.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_GENERAL_NAMES.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressChoice.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressChoice.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressChoice.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressFamily.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressFamily.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressFamily.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressOrRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressOrRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressOrRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_IPAddressRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ISSUING_DIST_POINT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ISSUING_DIST_POINT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_ISSUING_DIST_POINT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NAMING_AUTHORITY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NAMING_AUTHORITY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NAMING_AUTHORITY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_CERT_SEQUENCE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_CERT_SEQUENCE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_CERT_SEQUENCE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_SPKAC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_SPKAC.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_SPKAC.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_SPKI.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_SPKI.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NETSCAPE_SPKI.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NOTICEREF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NOTICEREF.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_NOTICEREF.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_BASICRESP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_BASICRESP.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_BASICRESP.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CERTID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CERTID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CERTID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CERTSTATUS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CERTSTATUS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CERTSTATUS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CRLID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CRLID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_CRLID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_ONEREQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_ONEREQ.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_ONEREQ.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REQINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REQINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REQINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REQUEST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REQUEST.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REQUEST.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPBYTES.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPBYTES.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPBYTES.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPDATA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPDATA.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPDATA.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPONSE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPONSE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_RESPONSE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REVOKEDINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REVOKEDINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_REVOKEDINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SERVICELOC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SERVICELOC.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SERVICELOC.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SIGNATURE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SIGNATURE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SIGNATURE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SINGLERESP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SINGLERESP.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OCSP_SINGLERESP.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OTHERNAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OTHERNAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_OTHERNAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBE2PARAM.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBE2PARAM.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBE2PARAM.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBEPARAM.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBEPARAM.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBEPARAM.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBKDF2PARAM.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBKDF2PARAM.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PBKDF2PARAM.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_BAGS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_BAGS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_BAGS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_MAC_DATA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_MAC_DATA.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_MAC_DATA.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_SAFEBAG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_SAFEBAG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_SAFEBAG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS12_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_DIGEST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_DIGEST.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_DIGEST.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENCRYPT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENCRYPT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENCRYPT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENC_CONTENT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENC_CONTENT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENC_CONTENT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENVELOPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENVELOPE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ENVELOPE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ISSUER_AND_SERIAL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ISSUER_AND_SERIAL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_ISSUER_AND_SERIAL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_RECIP_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_RECIP_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_RECIP_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGNED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGNED.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGNED.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGNER_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGNER_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGNER_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGN_ENVELOPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGN_ENVELOPE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_SIGN_ENVELOPE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS7_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8PrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8PrivateKey_fp.html new file mode 120000 index 00000000..dadbc764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8PrivateKey_fp.html @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_PRIV_KEY_INFO_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKCS8_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKEY_USAGE_PERIOD.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKEY_USAGE_PERIOD.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PKEY_USAGE_PERIOD.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_POLICYINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_POLICYINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_POLICYINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_POLICYQUALINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_POLICYQUALINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_POLICYQUALINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROFESSION_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROFESSION_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROFESSION_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROXY_CERT_INFO_EXTENSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROXY_CERT_INFO_EXTENSION.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROXY_CERT_INFO_EXTENSION.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROXY_POLICY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROXY_POLICY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PROXY_POLICY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY_bio.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY_bio.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY_fp.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PUBKEY_fp.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey.html index 5ff925bb..fb6dcbf5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey.html @@ -53,6 +53,8 @@ EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a)

    NOTES

    +

    All the functions that operate on data in memory update the data pointer *pp after a successful operation, just like the other d2i and i2d functions; see d2i_X509(3).

    +

    All these functions use DER format and unencrypted keys. Applications wishing to encrypt or decrypt private keys should use other functions such as d2i_PKCS8PrivateKey() instead.

    If the *a is not NULL when calling d2i_PrivateKey() or d2i_AutoPrivateKey() (i.e. an existing structure is being reused) and the key format is PKCS#8 then *a will be freed and replaced on a successful call.

    @@ -71,7 +73,7 @@ EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a)

    COPYRIGHT

    -

    Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2017-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey_bio.html new file mode 120000 index 00000000..462b13cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey_bio.html @@ -0,0 +1 @@ +d2i_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey_fp.html new file mode 120000 index 00000000..462b13cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PrivateKey_fp.html @@ -0,0 +1 @@ +d2i_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PublicKey.html new file mode 120000 index 00000000..462b13cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_PublicKey.html @@ -0,0 +1 @@ +d2i_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPrivateKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSAPublicKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_OAEP_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_OAEP_PARAMS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_OAEP_PARAMS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PSS_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PSS_PARAMS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PSS_PARAMS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_RSA_PUBKEY_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SCRYPT_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SCRYPT_PARAMS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SCRYPT_PARAMS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SCT_LIST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SCT_LIST.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SCT_LIST.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SXNET.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SXNET.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SXNET.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SXNETID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SXNETID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_SXNETID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_ACCURACY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_ACCURACY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_ACCURACY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_MSG_IMPRINT_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_REQ_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_RESP_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_STATUS_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_STATUS_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_STATUS_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_TS_TST_INFO_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_USERNOTICE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_USERNOTICE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_USERNOTICE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509.html index 33454690..e3b02831 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509.html @@ -25,11 +25,11 @@

    NAME

    -

    d2i_ACCESS_DESCRIPTION, d2i_ADMISSIONS, d2i_ADMISSION_SYNTAX, d2i_ASIdOrRange, d2i_ASIdentifierChoice, d2i_ASIdentifiers, d2i_ASN1_BIT_STRING, d2i_ASN1_BMPSTRING, d2i_ASN1_ENUMERATED, d2i_ASN1_GENERALIZEDTIME, d2i_ASN1_GENERALSTRING, d2i_ASN1_IA5STRING, d2i_ASN1_INTEGER, d2i_ASN1_NULL, d2i_ASN1_OBJECT, d2i_ASN1_OCTET_STRING, d2i_ASN1_PRINTABLE, d2i_ASN1_PRINTABLESTRING, d2i_ASN1_SEQUENCE_ANY, d2i_ASN1_SET_ANY, d2i_ASN1_T61STRING, d2i_ASN1_TIME, d2i_ASN1_TYPE, d2i_ASN1_UINTEGER, d2i_ASN1_UNIVERSALSTRING, d2i_ASN1_UTCTIME, d2i_ASN1_UTF8STRING, d2i_ASN1_VISIBLESTRING, d2i_ASRange, d2i_AUTHORITY_INFO_ACCESS, d2i_AUTHORITY_KEYID, d2i_BASIC_CONSTRAINTS, d2i_CERTIFICATEPOLICIES, d2i_CMS_ContentInfo, d2i_CMS_ReceiptRequest, d2i_CMS_bio, d2i_CRL_DIST_POINTS, d2i_DHxparams, d2i_DIRECTORYSTRING, d2i_DISPLAYTEXT, d2i_DIST_POINT, d2i_DIST_POINT_NAME, d2i_DSAPrivateKey, d2i_DSAPrivateKey_bio, d2i_DSAPrivateKey_fp, d2i_DSAPublicKey, d2i_DSA_PUBKEY, d2i_DSA_PUBKEY_bio, d2i_DSA_PUBKEY_fp, d2i_DSA_SIG, d2i_DSAparams, d2i_ECDSA_SIG, d2i_ECPKParameters, d2i_ECParameters, d2i_ECPrivateKey, d2i_ECPrivateKey_bio, d2i_ECPrivateKey_fp, d2i_EC_PUBKEY, d2i_EC_PUBKEY_bio, d2i_EC_PUBKEY_fp, d2i_EDIPARTYNAME, d2i_ESS_CERT_ID, d2i_ESS_ISSUER_SERIAL, d2i_ESS_SIGNING_CERT, d2i_EXTENDED_KEY_USAGE, d2i_GENERAL_NAME, d2i_GENERAL_NAMES, d2i_IPAddressChoice, d2i_IPAddressFamily, d2i_IPAddressOrRange, d2i_IPAddressRange, d2i_ISSUING_DIST_POINT, d2i_NAMING_AUTHORITY, d2i_NETSCAPE_CERT_SEQUENCE, d2i_NETSCAPE_SPKAC, d2i_NETSCAPE_SPKI, d2i_NOTICEREF, d2i_OCSP_BASICRESP, d2i_OCSP_CERTID, d2i_OCSP_CERTSTATUS, d2i_OCSP_CRLID, d2i_OCSP_ONEREQ, d2i_OCSP_REQINFO, d2i_OCSP_REQUEST, d2i_OCSP_RESPBYTES, d2i_OCSP_RESPDATA, d2i_OCSP_RESPID, d2i_OCSP_RESPONSE, d2i_OCSP_REVOKEDINFO, d2i_OCSP_SERVICELOC, d2i_OCSP_SIGNATURE, d2i_OCSP_SINGLERESP, d2i_OTHERNAME, d2i_PBE2PARAM, d2i_PBEPARAM, d2i_PBKDF2PARAM, d2i_PKCS12, d2i_PKCS12_BAGS, d2i_PKCS12_MAC_DATA, d2i_PKCS12_SAFEBAG, d2i_PKCS12_bio, d2i_PKCS12_fp, d2i_PKCS7, d2i_PKCS7_DIGEST, d2i_PKCS7_ENCRYPT, d2i_PKCS7_ENC_CONTENT, d2i_PKCS7_ENVELOPE, d2i_PKCS7_ISSUER_AND_SERIAL, d2i_PKCS7_RECIP_INFO, d2i_PKCS7_SIGNED, d2i_PKCS7_SIGNER_INFO, d2i_PKCS7_SIGN_ENVELOPE, d2i_PKCS7_bio, d2i_PKCS7_fp, d2i_PKCS8_PRIV_KEY_INFO, d2i_PKCS8_PRIV_KEY_INFO_bio, d2i_PKCS8_PRIV_KEY_INFO_fp, d2i_PKCS8_bio, d2i_PKCS8_fp, d2i_PKEY_USAGE_PERIOD, d2i_POLICYINFO, d2i_POLICYQUALINFO, d2i_PROFESSION_INFO, d2i_PROXY_CERT_INFO_EXTENSION, d2i_PROXY_POLICY, d2i_RSAPrivateKey, d2i_RSAPrivateKey_bio, d2i_RSAPrivateKey_fp, d2i_RSAPublicKey, d2i_RSAPublicKey_bio, d2i_RSAPublicKey_fp, d2i_RSA_OAEP_PARAMS, d2i_RSA_PSS_PARAMS, d2i_RSA_PUBKEY, d2i_RSA_PUBKEY_bio, d2i_RSA_PUBKEY_fp, d2i_SCRYPT_PARAMS, d2i_SCT_LIST, d2i_SXNET, d2i_SXNETID, d2i_TS_ACCURACY, d2i_TS_MSG_IMPRINT, d2i_TS_MSG_IMPRINT_bio, d2i_TS_MSG_IMPRINT_fp, d2i_TS_REQ, d2i_TS_REQ_bio, d2i_TS_REQ_fp, d2i_TS_RESP, d2i_TS_RESP_bio, d2i_TS_RESP_fp, d2i_TS_STATUS_INFO, d2i_TS_TST_INFO, d2i_TS_TST_INFO_bio, d2i_TS_TST_INFO_fp, d2i_USERNOTICE, d2i_X509, d2i_X509_ALGOR, d2i_X509_ALGORS, d2i_X509_ATTRIBUTE, d2i_X509_CERT_AUX, d2i_X509_CINF, d2i_X509_CRL, d2i_X509_CRL_INFO, d2i_X509_CRL_bio, d2i_X509_CRL_fp, d2i_X509_EXTENSION, d2i_X509_EXTENSIONS, d2i_X509_NAME, d2i_X509_NAME_ENTRY, d2i_X509_PUBKEY, d2i_X509_REQ, d2i_X509_REQ_INFO, d2i_X509_REQ_bio, d2i_X509_REQ_fp, d2i_X509_REVOKED, d2i_X509_SIG, d2i_X509_VAL, i2d_ACCESS_DESCRIPTION, i2d_ADMISSIONS, i2d_ADMISSION_SYNTAX, i2d_ASIdOrRange, i2d_ASIdentifierChoice, i2d_ASIdentifiers, i2d_ASN1_BIT_STRING, i2d_ASN1_BMPSTRING, i2d_ASN1_ENUMERATED, i2d_ASN1_GENERALIZEDTIME, i2d_ASN1_GENERALSTRING, i2d_ASN1_IA5STRING, i2d_ASN1_INTEGER, i2d_ASN1_NULL, i2d_ASN1_OBJECT, i2d_ASN1_OCTET_STRING, i2d_ASN1_PRINTABLE, i2d_ASN1_PRINTABLESTRING, i2d_ASN1_SEQUENCE_ANY, i2d_ASN1_SET_ANY, i2d_ASN1_T61STRING, i2d_ASN1_TIME, i2d_ASN1_TYPE, i2d_ASN1_UNIVERSALSTRING, i2d_ASN1_UTCTIME, i2d_ASN1_UTF8STRING, i2d_ASN1_VISIBLESTRING, i2d_ASN1_bio_stream, i2d_ASRange, i2d_AUTHORITY_INFO_ACCESS, i2d_AUTHORITY_KEYID, i2d_BASIC_CONSTRAINTS, i2d_CERTIFICATEPOLICIES, i2d_CMS_ContentInfo, i2d_CMS_ReceiptRequest, i2d_CMS_bio, i2d_CRL_DIST_POINTS, i2d_DHxparams, i2d_DIRECTORYSTRING, i2d_DISPLAYTEXT, i2d_DIST_POINT, i2d_DIST_POINT_NAME, i2d_DSAPrivateKey, i2d_DSAPrivateKey_bio, i2d_DSAPrivateKey_fp, i2d_DSAPublicKey, i2d_DSA_PUBKEY, i2d_DSA_PUBKEY_bio, i2d_DSA_PUBKEY_fp, i2d_DSA_SIG, i2d_DSAparams, i2d_ECDSA_SIG, i2d_ECPKParameters, i2d_ECParameters, i2d_ECPrivateKey, i2d_ECPrivateKey_bio, i2d_ECPrivateKey_fp, i2d_EC_PUBKEY, i2d_EC_PUBKEY_bio, i2d_EC_PUBKEY_fp, i2d_EDIPARTYNAME, i2d_ESS_CERT_ID, i2d_ESS_ISSUER_SERIAL, i2d_ESS_SIGNING_CERT, i2d_EXTENDED_KEY_USAGE, i2d_GENERAL_NAME, i2d_GENERAL_NAMES, i2d_IPAddressChoice, i2d_IPAddressFamily, i2d_IPAddressOrRange, i2d_IPAddressRange, i2d_ISSUING_DIST_POINT, i2d_NAMING_AUTHORITY, i2d_NETSCAPE_CERT_SEQUENCE, i2d_NETSCAPE_SPKAC, i2d_NETSCAPE_SPKI, i2d_NOTICEREF, i2d_OCSP_BASICRESP, i2d_OCSP_CERTID, i2d_OCSP_CERTSTATUS, i2d_OCSP_CRLID, i2d_OCSP_ONEREQ, i2d_OCSP_REQINFO, i2d_OCSP_REQUEST, i2d_OCSP_RESPBYTES, i2d_OCSP_RESPDATA, i2d_OCSP_RESPID, i2d_OCSP_RESPONSE, i2d_OCSP_REVOKEDINFO, i2d_OCSP_SERVICELOC, i2d_OCSP_SIGNATURE, i2d_OCSP_SINGLERESP, i2d_OTHERNAME, i2d_PBE2PARAM, i2d_PBEPARAM, i2d_PBKDF2PARAM, i2d_PKCS12, i2d_PKCS12_BAGS, i2d_PKCS12_MAC_DATA, i2d_PKCS12_SAFEBAG, i2d_PKCS12_bio, i2d_PKCS12_fp, i2d_PKCS7, i2d_PKCS7_DIGEST, i2d_PKCS7_ENCRYPT, i2d_PKCS7_ENC_CONTENT, i2d_PKCS7_ENVELOPE, i2d_PKCS7_ISSUER_AND_SERIAL, i2d_PKCS7_NDEF, i2d_PKCS7_RECIP_INFO, i2d_PKCS7_SIGNED, i2d_PKCS7_SIGNER_INFO, i2d_PKCS7_SIGN_ENVELOPE, i2d_PKCS7_bio, i2d_PKCS7_fp, i2d_PKCS8PrivateKeyInfo_bio, i2d_PKCS8PrivateKeyInfo_fp, i2d_PKCS8_PRIV_KEY_INFO, i2d_PKCS8_PRIV_KEY_INFO_bio, i2d_PKCS8_PRIV_KEY_INFO_fp, i2d_PKCS8_bio, i2d_PKCS8_fp, i2d_PKEY_USAGE_PERIOD, i2d_POLICYINFO, i2d_POLICYQUALINFO, i2d_PROFESSION_INFO, i2d_PROXY_CERT_INFO_EXTENSION, i2d_PROXY_POLICY, i2d_RSAPrivateKey, i2d_RSAPrivateKey_bio, i2d_RSAPrivateKey_fp, i2d_RSAPublicKey, i2d_RSAPublicKey_bio, i2d_RSAPublicKey_fp, i2d_RSA_OAEP_PARAMS, i2d_RSA_PSS_PARAMS, i2d_RSA_PUBKEY, i2d_RSA_PUBKEY_bio, i2d_RSA_PUBKEY_fp, i2d_SCRYPT_PARAMS, i2d_SCT_LIST, i2d_SXNET, i2d_SXNETID, i2d_TS_ACCURACY, i2d_TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT_bio, i2d_TS_MSG_IMPRINT_fp, i2d_TS_REQ, i2d_TS_REQ_bio, i2d_TS_REQ_fp, i2d_TS_RESP, i2d_TS_RESP_bio, i2d_TS_RESP_fp, i2d_TS_STATUS_INFO, i2d_TS_TST_INFO, i2d_TS_TST_INFO_bio, i2d_TS_TST_INFO_fp, i2d_USERNOTICE, i2d_X509, i2d_X509_ALGOR, i2d_X509_ALGORS, i2d_X509_ATTRIBUTE, i2d_X509_CERT_AUX, i2d_X509_CINF, i2d_X509_CRL, i2d_X509_CRL_INFO, i2d_X509_CRL_bio, i2d_X509_CRL_fp, i2d_X509_EXTENSION, i2d_X509_EXTENSIONS, i2d_X509_NAME, i2d_X509_NAME_ENTRY, i2d_X509_PUBKEY, i2d_X509_REQ, i2d_X509_REQ_INFO, i2d_X509_REQ_bio, i2d_X509_REQ_fp, i2d_X509_REVOKED, i2d_X509_SIG, i2d_X509_VAL, - convert objects from/to ASN.1/DER representation

    +

    d2i_ACCESS_DESCRIPTION, d2i_ADMISSIONS, d2i_ADMISSION_SYNTAX, d2i_ASIdOrRange, d2i_ASIdentifierChoice, d2i_ASIdentifiers, d2i_ASN1_BIT_STRING, d2i_ASN1_BMPSTRING, d2i_ASN1_ENUMERATED, d2i_ASN1_GENERALIZEDTIME, d2i_ASN1_GENERALSTRING, d2i_ASN1_IA5STRING, d2i_ASN1_INTEGER, d2i_ASN1_NULL, d2i_ASN1_OBJECT, d2i_ASN1_OCTET_STRING, d2i_ASN1_PRINTABLE, d2i_ASN1_PRINTABLESTRING, d2i_ASN1_SEQUENCE_ANY, d2i_ASN1_SET_ANY, d2i_ASN1_T61STRING, d2i_ASN1_TIME, d2i_ASN1_TYPE, d2i_ASN1_UINTEGER, d2i_ASN1_UNIVERSALSTRING, d2i_ASN1_UTCTIME, d2i_ASN1_UTF8STRING, d2i_ASN1_VISIBLESTRING, d2i_ASRange, d2i_AUTHORITY_INFO_ACCESS, d2i_AUTHORITY_KEYID, d2i_BASIC_CONSTRAINTS, d2i_CERTIFICATEPOLICIES, d2i_CMS_ContentInfo, d2i_CMS_ReceiptRequest, d2i_CMS_bio, d2i_CRL_DIST_POINTS, d2i_DHxparams, d2i_DIRECTORYSTRING, d2i_DISPLAYTEXT, d2i_DIST_POINT, d2i_DIST_POINT_NAME, d2i_DSAPrivateKey, d2i_DSAPrivateKey_bio, d2i_DSAPrivateKey_fp, d2i_DSAPublicKey, d2i_DSA_PUBKEY, d2i_DSA_PUBKEY_bio, d2i_DSA_PUBKEY_fp, d2i_DSA_SIG, d2i_DSAparams, d2i_ECDSA_SIG, d2i_ECPKParameters, d2i_ECParameters, d2i_ECPrivateKey, d2i_ECPrivateKey_bio, d2i_ECPrivateKey_fp, d2i_EC_PUBKEY, d2i_EC_PUBKEY_bio, d2i_EC_PUBKEY_fp, d2i_EDIPARTYNAME, d2i_ESS_CERT_ID, d2i_ESS_ISSUER_SERIAL, d2i_ESS_SIGNING_CERT, d2i_EXTENDED_KEY_USAGE, d2i_GENERAL_NAME, d2i_GENERAL_NAMES, d2i_IPAddressChoice, d2i_IPAddressFamily, d2i_IPAddressOrRange, d2i_IPAddressRange, d2i_ISSUING_DIST_POINT, d2i_NAMING_AUTHORITY, d2i_NETSCAPE_CERT_SEQUENCE, d2i_NETSCAPE_SPKAC, d2i_NETSCAPE_SPKI, d2i_NOTICEREF, d2i_OCSP_BASICRESP, d2i_OCSP_CERTID, d2i_OCSP_CERTSTATUS, d2i_OCSP_CRLID, d2i_OCSP_ONEREQ, d2i_OCSP_REQINFO, d2i_OCSP_REQUEST, d2i_OCSP_RESPBYTES, d2i_OCSP_RESPDATA, d2i_OCSP_RESPID, d2i_OCSP_RESPONSE, d2i_OCSP_REVOKEDINFO, d2i_OCSP_SERVICELOC, d2i_OCSP_SIGNATURE, d2i_OCSP_SINGLERESP, d2i_OTHERNAME, d2i_PBE2PARAM, d2i_PBEPARAM, d2i_PBKDF2PARAM, d2i_PKCS12, d2i_PKCS12_BAGS, d2i_PKCS12_MAC_DATA, d2i_PKCS12_SAFEBAG, d2i_PKCS12_bio, d2i_PKCS12_fp, d2i_PKCS7, d2i_PKCS7_DIGEST, d2i_PKCS7_ENCRYPT, d2i_PKCS7_ENC_CONTENT, d2i_PKCS7_ENVELOPE, d2i_PKCS7_ISSUER_AND_SERIAL, d2i_PKCS7_RECIP_INFO, d2i_PKCS7_SIGNED, d2i_PKCS7_SIGNER_INFO, d2i_PKCS7_SIGN_ENVELOPE, d2i_PKCS7_bio, d2i_PKCS7_fp, d2i_PKCS8_PRIV_KEY_INFO, d2i_PKCS8_PRIV_KEY_INFO_bio, d2i_PKCS8_PRIV_KEY_INFO_fp, d2i_PKCS8_bio, d2i_PKCS8_fp, d2i_PKEY_USAGE_PERIOD, d2i_POLICYINFO, d2i_POLICYQUALINFO, d2i_PROFESSION_INFO, d2i_PROXY_CERT_INFO_EXTENSION, d2i_PROXY_POLICY, d2i_RSAPrivateKey, d2i_RSAPrivateKey_bio, d2i_RSAPrivateKey_fp, d2i_RSAPublicKey, d2i_RSAPublicKey_bio, d2i_RSAPublicKey_fp, d2i_RSA_OAEP_PARAMS, d2i_RSA_PSS_PARAMS, d2i_RSA_PUBKEY, d2i_RSA_PUBKEY_bio, d2i_RSA_PUBKEY_fp, d2i_SCRYPT_PARAMS, d2i_SCT_LIST, d2i_SXNET, d2i_SXNETID, d2i_TS_ACCURACY, d2i_TS_MSG_IMPRINT, d2i_TS_MSG_IMPRINT_bio, d2i_TS_MSG_IMPRINT_fp, d2i_TS_REQ, d2i_TS_REQ_bio, d2i_TS_REQ_fp, d2i_TS_RESP, d2i_TS_RESP_bio, d2i_TS_RESP_fp, d2i_TS_STATUS_INFO, d2i_TS_TST_INFO, d2i_TS_TST_INFO_bio, d2i_TS_TST_INFO_fp, d2i_USERNOTICE, d2i_X509, d2i_X509_bio, d2i_X509_fp, d2i_X509_ALGOR, d2i_X509_ALGORS, d2i_X509_ATTRIBUTE, d2i_X509_CERT_AUX, d2i_X509_CINF, d2i_X509_CRL, d2i_X509_CRL_INFO, d2i_X509_CRL_bio, d2i_X509_CRL_fp, d2i_X509_EXTENSION, d2i_X509_EXTENSIONS, d2i_X509_NAME, d2i_X509_NAME_ENTRY, d2i_X509_PUBKEY, d2i_X509_REQ, d2i_X509_REQ_INFO, d2i_X509_REQ_bio, d2i_X509_REQ_fp, d2i_X509_REVOKED, d2i_X509_SIG, d2i_X509_VAL, i2d_ACCESS_DESCRIPTION, i2d_ADMISSIONS, i2d_ADMISSION_SYNTAX, i2d_ASIdOrRange, i2d_ASIdentifierChoice, i2d_ASIdentifiers, i2d_ASN1_BIT_STRING, i2d_ASN1_BMPSTRING, i2d_ASN1_ENUMERATED, i2d_ASN1_GENERALIZEDTIME, i2d_ASN1_GENERALSTRING, i2d_ASN1_IA5STRING, i2d_ASN1_INTEGER, i2d_ASN1_NULL, i2d_ASN1_OBJECT, i2d_ASN1_OCTET_STRING, i2d_ASN1_PRINTABLE, i2d_ASN1_PRINTABLESTRING, i2d_ASN1_SEQUENCE_ANY, i2d_ASN1_SET_ANY, i2d_ASN1_T61STRING, i2d_ASN1_TIME, i2d_ASN1_TYPE, i2d_ASN1_UNIVERSALSTRING, i2d_ASN1_UTCTIME, i2d_ASN1_UTF8STRING, i2d_ASN1_VISIBLESTRING, i2d_ASN1_bio_stream, i2d_ASRange, i2d_AUTHORITY_INFO_ACCESS, i2d_AUTHORITY_KEYID, i2d_BASIC_CONSTRAINTS, i2d_CERTIFICATEPOLICIES, i2d_CMS_ContentInfo, i2d_CMS_ReceiptRequest, i2d_CMS_bio, i2d_CRL_DIST_POINTS, i2d_DHxparams, i2d_DIRECTORYSTRING, i2d_DISPLAYTEXT, i2d_DIST_POINT, i2d_DIST_POINT_NAME, i2d_DSAPrivateKey, i2d_DSAPrivateKey_bio, i2d_DSAPrivateKey_fp, i2d_DSAPublicKey, i2d_DSA_PUBKEY, i2d_DSA_PUBKEY_bio, i2d_DSA_PUBKEY_fp, i2d_DSA_SIG, i2d_DSAparams, i2d_ECDSA_SIG, i2d_ECPKParameters, i2d_ECParameters, i2d_ECPrivateKey, i2d_ECPrivateKey_bio, i2d_ECPrivateKey_fp, i2d_EC_PUBKEY, i2d_EC_PUBKEY_bio, i2d_EC_PUBKEY_fp, i2d_EDIPARTYNAME, i2d_ESS_CERT_ID, i2d_ESS_ISSUER_SERIAL, i2d_ESS_SIGNING_CERT, i2d_EXTENDED_KEY_USAGE, i2d_GENERAL_NAME, i2d_GENERAL_NAMES, i2d_IPAddressChoice, i2d_IPAddressFamily, i2d_IPAddressOrRange, i2d_IPAddressRange, i2d_ISSUING_DIST_POINT, i2d_NAMING_AUTHORITY, i2d_NETSCAPE_CERT_SEQUENCE, i2d_NETSCAPE_SPKAC, i2d_NETSCAPE_SPKI, i2d_NOTICEREF, i2d_OCSP_BASICRESP, i2d_OCSP_CERTID, i2d_OCSP_CERTSTATUS, i2d_OCSP_CRLID, i2d_OCSP_ONEREQ, i2d_OCSP_REQINFO, i2d_OCSP_REQUEST, i2d_OCSP_RESPBYTES, i2d_OCSP_RESPDATA, i2d_OCSP_RESPID, i2d_OCSP_RESPONSE, i2d_OCSP_REVOKEDINFO, i2d_OCSP_SERVICELOC, i2d_OCSP_SIGNATURE, i2d_OCSP_SINGLERESP, i2d_OTHERNAME, i2d_PBE2PARAM, i2d_PBEPARAM, i2d_PBKDF2PARAM, i2d_PKCS12, i2d_PKCS12_BAGS, i2d_PKCS12_MAC_DATA, i2d_PKCS12_SAFEBAG, i2d_PKCS12_bio, i2d_PKCS12_fp, i2d_PKCS7, i2d_PKCS7_DIGEST, i2d_PKCS7_ENCRYPT, i2d_PKCS7_ENC_CONTENT, i2d_PKCS7_ENVELOPE, i2d_PKCS7_ISSUER_AND_SERIAL, i2d_PKCS7_NDEF, i2d_PKCS7_RECIP_INFO, i2d_PKCS7_SIGNED, i2d_PKCS7_SIGNER_INFO, i2d_PKCS7_SIGN_ENVELOPE, i2d_PKCS7_bio, i2d_PKCS7_fp, i2d_PKCS8PrivateKeyInfo_bio, i2d_PKCS8PrivateKeyInfo_fp, i2d_PKCS8_PRIV_KEY_INFO, i2d_PKCS8_PRIV_KEY_INFO_bio, i2d_PKCS8_PRIV_KEY_INFO_fp, i2d_PKCS8_bio, i2d_PKCS8_fp, i2d_PKEY_USAGE_PERIOD, i2d_POLICYINFO, i2d_POLICYQUALINFO, i2d_PROFESSION_INFO, i2d_PROXY_CERT_INFO_EXTENSION, i2d_PROXY_POLICY, i2d_RSAPrivateKey, i2d_RSAPrivateKey_bio, i2d_RSAPrivateKey_fp, i2d_RSAPublicKey, i2d_RSAPublicKey_bio, i2d_RSAPublicKey_fp, i2d_RSA_OAEP_PARAMS, i2d_RSA_PSS_PARAMS, i2d_RSA_PUBKEY, i2d_RSA_PUBKEY_bio, i2d_RSA_PUBKEY_fp, i2d_SCRYPT_PARAMS, i2d_SCT_LIST, i2d_SXNET, i2d_SXNETID, i2d_TS_ACCURACY, i2d_TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT_bio, i2d_TS_MSG_IMPRINT_fp, i2d_TS_REQ, i2d_TS_REQ_bio, i2d_TS_REQ_fp, i2d_TS_RESP, i2d_TS_RESP_bio, i2d_TS_RESP_fp, i2d_TS_STATUS_INFO, i2d_TS_TST_INFO, i2d_TS_TST_INFO_bio, i2d_TS_TST_INFO_fp, i2d_USERNOTICE, i2d_X509, i2d_X509_bio, i2d_X509_fp, i2d_X509_ALGOR, i2d_X509_ALGORS, i2d_X509_ATTRIBUTE, i2d_X509_CERT_AUX, i2d_X509_CINF, i2d_X509_CRL, i2d_X509_CRL_INFO, i2d_X509_CRL_bio, i2d_X509_CRL_fp, i2d_X509_EXTENSION, i2d_X509_EXTENSIONS, i2d_X509_NAME, i2d_X509_NAME_ENTRY, i2d_X509_PUBKEY, i2d_X509_REQ, i2d_X509_REQ_INFO, i2d_X509_REQ_bio, i2d_X509_REQ_fp, i2d_X509_REVOKED, i2d_X509_SIG, i2d_X509_VAL, - convert objects from/to ASN.1/DER representation

    SYNOPSIS

    -
    TYPE *d2i_TYPE(TYPE **a, unsigned char **ppin, long length);
    +
    TYPE *d2i_TYPE(TYPE **a, const unsigned char **ppin, long length);
     TYPE *d2i_TYPE_bio(BIO *bp, TYPE **a);
     TYPE *d2i_TYPE_fp(FILE *fp, TYPE **a);
     
    @@ -69,7 +69,7 @@ int i2d_TYPE_bio(BIO *bp, TYPE *a);

    The actual TYPE structure passed to i2d_TYPE() must be a valid populated TYPE structure -- it cannot simply be fed with an empty structure such as that returned by TYPE_new().

    -

    The encoded data is in binary form and may contain embedded zeroes. Therefore any FILE pointers or BIOs should be opened in binary mode. Functions such as strlen() will not return the correct length of the encoded structure.

    +

    The encoded data is in binary form and may contain embedded zeros. Therefore, any FILE pointers or BIOs should be opened in binary mode. Functions such as strlen() will not return the correct length of the encoded structure.

    The ways that *ppin and *ppout are incremented after the operation can trap the unwary. See the WARNINGS section for some common errors. The reason for this-auto increment behaviour is to reflect a typical usage of ASN1 functions: after one structure is encoded or decoded another will be processed after it.

    @@ -168,7 +168,8 @@ if (len < 0)

    Attempt to decode a buffer:

    X509 *x;
    -unsigned char *buf, *p;
    +unsigned char *buf;
    +const unsigned char *p;
     int len;
     
     /* Set up buf and len to point to the input buffer. */
    @@ -180,7 +181,8 @@ if (x == NULL)
     

    Alternative technique:

    X509 *x;
    -unsigned char *buf, *p;
    +unsigned char *buf;
    +const unsigned char *p;
     int len;
     
     /* Set up buf and len to point to the input buffer. */
    @@ -227,7 +229,7 @@ if (d2i_X509(&x, &p, len) == NULL)
     
     

    COPYRIGHT

    -

    Copyright 1998-2020 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 1998-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ALGOR.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ALGOR.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ALGOR.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ALGORS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ALGORS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ALGORS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ATTRIBUTE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ATTRIBUTE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_ATTRIBUTE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_AUX.html new file mode 120000 index 00000000..5c29a017 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_AUX.html @@ -0,0 +1 @@ +i2d_re_X509_tbs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CERT_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CERT_AUX.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CERT_AUX.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CINF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CINF.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CINF.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_CRL_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_EXTENSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_EXTENSION.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_EXTENSION.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_EXTENSIONS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_EXTENSIONS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_EXTENSIONS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_NAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_NAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_NAME_ENTRY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_NAME_ENTRY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_NAME_ENTRY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REQ_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REVOKED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REVOKED.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_REVOKED.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_SIG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_SIG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_SIG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_VAL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_VAL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_VAL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/d2i_X509_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ACCESS_DESCRIPTION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ACCESS_DESCRIPTION.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ACCESS_DESCRIPTION.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ADMISSIONS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ADMISSIONS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ADMISSIONS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ADMISSION_SYNTAX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ADMISSION_SYNTAX.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ADMISSION_SYNTAX.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdOrRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdOrRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdOrRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdentifierChoice.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdentifierChoice.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdentifierChoice.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdentifiers.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdentifiers.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASIdentifiers.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_BIT_STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_BIT_STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_BIT_STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_BMPSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_BMPSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_BMPSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_ENUMERATED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_ENUMERATED.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_ENUMERATED.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_GENERALIZEDTIME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_GENERALIZEDTIME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_GENERALIZEDTIME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_GENERALSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_GENERALSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_GENERALSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_IA5STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_IA5STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_IA5STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_INTEGER.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_INTEGER.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_INTEGER.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_NULL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_NULL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_NULL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_OBJECT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_OBJECT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_OBJECT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_OCTET_STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_OCTET_STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_OCTET_STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_PRINTABLE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_PRINTABLE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_PRINTABLE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_PRINTABLESTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_PRINTABLESTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_PRINTABLESTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_SEQUENCE_ANY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_SEQUENCE_ANY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_SEQUENCE_ANY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_SET_ANY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_SET_ANY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_SET_ANY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_T61STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_T61STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_T61STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_TIME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_TIME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_TIME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_TYPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_TYPE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_TYPE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UNIVERSALSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UNIVERSALSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UNIVERSALSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UTCTIME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UTCTIME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UTCTIME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UTF8STRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UTF8STRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_UTF8STRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_VISIBLESTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_VISIBLESTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_VISIBLESTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_bio_stream.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_bio_stream.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASN1_bio_stream.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ASRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_AUTHORITY_INFO_ACCESS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_AUTHORITY_INFO_ACCESS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_AUTHORITY_INFO_ACCESS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_AUTHORITY_KEYID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_AUTHORITY_KEYID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_AUTHORITY_KEYID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_BASIC_CONSTRAINTS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_BASIC_CONSTRAINTS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_BASIC_CONSTRAINTS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CERTIFICATEPOLICIES.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CERTIFICATEPOLICIES.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CERTIFICATEPOLICIES.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_ContentInfo.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_ContentInfo.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_ContentInfo.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_ReceiptRequest.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_ReceiptRequest.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_ReceiptRequest.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CMS_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CRL_DIST_POINTS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CRL_DIST_POINTS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_CRL_DIST_POINTS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DHparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DHparams.html new file mode 120000 index 00000000..f89e80c1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DHparams.html @@ -0,0 +1 @@ +d2i_DHparams.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DHxparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DHxparams.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DHxparams.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIRECTORYSTRING.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIRECTORYSTRING.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIRECTORYSTRING.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DISPLAYTEXT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DISPLAYTEXT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DISPLAYTEXT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIST_POINT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIST_POINT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIST_POINT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIST_POINT_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIST_POINT_NAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DIST_POINT_NAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPrivateKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPublicKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAPublicKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_PUBKEY_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_SIG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_SIG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSA_SIG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAparams.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAparams.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_DSAparams.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECDSA_SIG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECDSA_SIG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECDSA_SIG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPKParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPKParameters.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPKParameters.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECParameters.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECParameters.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECParameters.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ECPrivateKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EC_PUBKEY_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EDIPARTYNAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EDIPARTYNAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EDIPARTYNAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_CERT_ID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_CERT_ID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_CERT_ID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_ISSUER_SERIAL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_ISSUER_SERIAL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_ISSUER_SERIAL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_SIGNING_CERT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_SIGNING_CERT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ESS_SIGNING_CERT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EXTENDED_KEY_USAGE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EXTENDED_KEY_USAGE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_EXTENDED_KEY_USAGE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_GENERAL_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_GENERAL_NAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_GENERAL_NAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_GENERAL_NAMES.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_GENERAL_NAMES.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_GENERAL_NAMES.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressChoice.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressChoice.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressChoice.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressFamily.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressFamily.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressFamily.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressOrRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressOrRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressOrRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressRange.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressRange.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_IPAddressRange.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ISSUING_DIST_POINT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ISSUING_DIST_POINT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_ISSUING_DIST_POINT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NAMING_AUTHORITY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NAMING_AUTHORITY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NAMING_AUTHORITY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_CERT_SEQUENCE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_CERT_SEQUENCE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_CERT_SEQUENCE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_SPKAC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_SPKAC.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_SPKAC.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_SPKI.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_SPKI.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NETSCAPE_SPKI.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NOTICEREF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NOTICEREF.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_NOTICEREF.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_BASICRESP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_BASICRESP.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_BASICRESP.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CERTID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CERTID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CERTID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CERTSTATUS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CERTSTATUS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CERTSTATUS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CRLID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CRLID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_CRLID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_ONEREQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_ONEREQ.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_ONEREQ.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REQINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REQINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REQINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REQUEST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REQUEST.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REQUEST.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPBYTES.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPBYTES.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPBYTES.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPDATA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPDATA.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPDATA.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPONSE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPONSE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_RESPONSE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REVOKEDINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REVOKEDINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_REVOKEDINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SERVICELOC.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SERVICELOC.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SERVICELOC.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SIGNATURE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SIGNATURE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SIGNATURE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SINGLERESP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SINGLERESP.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OCSP_SINGLERESP.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OTHERNAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OTHERNAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_OTHERNAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBE2PARAM.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBE2PARAM.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBE2PARAM.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBEPARAM.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBEPARAM.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBEPARAM.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBKDF2PARAM.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBKDF2PARAM.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PBKDF2PARAM.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_BAGS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_BAGS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_BAGS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_MAC_DATA.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_MAC_DATA.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_MAC_DATA.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_SAFEBAG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_SAFEBAG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_SAFEBAG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS12_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_DIGEST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_DIGEST.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_DIGEST.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENCRYPT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENCRYPT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENCRYPT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENC_CONTENT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENC_CONTENT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENC_CONTENT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENVELOPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENVELOPE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ENVELOPE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ISSUER_AND_SERIAL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ISSUER_AND_SERIAL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_ISSUER_AND_SERIAL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_NDEF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_NDEF.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_NDEF.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_RECIP_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_RECIP_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_RECIP_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGNED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGNED.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGNED.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGNER_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGNER_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGNER_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGN_ENVELOPE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGN_ENVELOPE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_SIGN_ENVELOPE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS7_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKeyInfo_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKeyInfo_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKeyInfo_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKeyInfo_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKeyInfo_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKeyInfo_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_bio.html new file mode 120000 index 00000000..dadbc764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_bio.html @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_fp.html new file mode 120000 index 00000000..dadbc764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_fp.html @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_nid_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_nid_bio.html new file mode 120000 index 00000000..dadbc764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_nid_bio.html @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_nid_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_nid_fp.html new file mode 120000 index 00000000..dadbc764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8PrivateKey_nid_fp.html @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_PRIV_KEY_INFO_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKCS8_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKEY_USAGE_PERIOD.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKEY_USAGE_PERIOD.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PKEY_USAGE_PERIOD.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_POLICYINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_POLICYINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_POLICYINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_POLICYQUALINFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_POLICYQUALINFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_POLICYQUALINFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROFESSION_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROFESSION_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROFESSION_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROXY_CERT_INFO_EXTENSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROXY_CERT_INFO_EXTENSION.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROXY_CERT_INFO_EXTENSION.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROXY_POLICY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROXY_POLICY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PROXY_POLICY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY_bio.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY_bio.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY_fp.html new file mode 120000 index 00000000..a5ea41d4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PUBKEY_fp.html @@ -0,0 +1 @@ +X509_PUBKEY_new.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PrivateKey.html new file mode 120000 index 00000000..462b13cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PrivateKey.html @@ -0,0 +1 @@ +d2i_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PublicKey.html new file mode 120000 index 00000000..462b13cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_PublicKey.html @@ -0,0 +1 @@ +d2i_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPrivateKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSAPublicKey_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_OAEP_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_OAEP_PARAMS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_OAEP_PARAMS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PSS_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PSS_PARAMS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PSS_PARAMS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_RSA_PUBKEY_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SCRYPT_PARAMS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SCRYPT_PARAMS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SCRYPT_PARAMS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SCT_LIST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SCT_LIST.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SCT_LIST.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SSL_SESSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SSL_SESSION.html new file mode 120000 index 00000000..0e2ec6cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SSL_SESSION.html @@ -0,0 +1 @@ +d2i_SSL_SESSION.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SXNET.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SXNET.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SXNET.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SXNETID.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SXNETID.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_SXNETID.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_ACCURACY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_ACCURACY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_ACCURACY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_MSG_IMPRINT_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_REQ_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_RESP_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_STATUS_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_STATUS_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_STATUS_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_TS_TST_INFO_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_USERNOTICE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_USERNOTICE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_USERNOTICE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ALGOR.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ALGOR.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ALGOR.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ALGORS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ALGORS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ALGORS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ATTRIBUTE.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ATTRIBUTE.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_ATTRIBUTE.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_AUX.html new file mode 120000 index 00000000..5c29a017 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_AUX.html @@ -0,0 +1 @@ +i2d_re_X509_tbs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CERT_AUX.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CERT_AUX.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CERT_AUX.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CINF.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CINF.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CINF.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_CRL_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_EXTENSION.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_EXTENSION.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_EXTENSION.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_EXTENSIONS.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_EXTENSIONS.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_EXTENSIONS.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_NAME.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_NAME.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_NAME.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_NAME_ENTRY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_NAME_ENTRY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_NAME_ENTRY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_PUBKEY.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_PUBKEY.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_PUBKEY.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_INFO.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_INFO.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_INFO.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REQ_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REVOKED.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REVOKED.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_REVOKED.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_SIG.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_SIG.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_SIG.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_VAL.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_VAL.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_VAL.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_bio.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_bio.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_bio.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_fp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_fp.html new file mode 120000 index 00000000..dff4bf10 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_X509_fp.html @@ -0,0 +1 @@ +d2i_X509.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_re_X509_CRL_tbs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_re_X509_CRL_tbs.html new file mode 120000 index 00000000..5c29a017 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_re_X509_CRL_tbs.html @@ -0,0 +1 @@ +i2d_re_X509_tbs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_re_X509_REQ_tbs.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_re_X509_REQ_tbs.html new file mode 120000 index 00000000..5c29a017 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2d_re_X509_REQ_tbs.html @@ -0,0 +1 @@ +i2d_re_X509_tbs.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2o_SCT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2o_SCT.html new file mode 120000 index 00000000..0200ed3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2o_SCT.html @@ -0,0 +1 @@ +o2i_SCT_LIST.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2o_SCT_LIST.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2o_SCT_LIST.html new file mode 120000 index 00000000..0200ed3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2o_SCT_LIST.html @@ -0,0 +1 @@ +o2i_SCT_LIST.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2t_ASN1_OBJECT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2t_ASN1_OBJECT.html new file mode 120000 index 00000000..1da4abec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/i2t_ASN1_OBJECT.html @@ -0,0 +1 @@ +OBJ_nid2obj.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_delete.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_delete.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_delete.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_doall.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_doall.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_doall.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_doall_arg.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_doall_arg.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_doall_arg.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_error.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_error.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_error.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_free.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_free.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_insert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_insert.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_insert.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_new.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_new.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_retrieve.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_retrieve.html new file mode 120000 index 00000000..48e71904 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/lh_TYPE_retrieve.html @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/o2i_SCT.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/o2i_SCT.html new file mode 120000 index 00000000..0200ed3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/o2i_SCT.html @@ -0,0 +1 @@ +o2i_SCT_LIST.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/pem_password_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/pem_password_cb.html new file mode 120000 index 00000000..eb130340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/pem_password_cb.html @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_deep_copy.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_deep_copy.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_deep_copy.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_delete.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_delete.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_delete.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_delete_ptr.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_delete_ptr.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_delete_ptr.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_dup.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_dup.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_dup.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_find.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_find.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_find.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_find_ex.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_find_ex.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_find_ex.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_free.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_free.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_insert.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_insert.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_insert.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_is_sorted.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_is_sorted.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_is_sorted.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new_null.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new_null.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new_null.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new_reserve.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new_reserve.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_new_reserve.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_num.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_num.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_num.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_pop.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_pop.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_pop.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_pop_free.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_pop_free.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_pop_free.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_push.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_push.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_push.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_reserve.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_reserve.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_reserve.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_set.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_set.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_set.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_set_cmp_func.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_set_cmp_func.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_set_cmp_func.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_shift.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_shift.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_shift.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_sort.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_sort.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_sort.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_unshift.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_unshift.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_unshift.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_value.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_value.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_value.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_zero.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_zero.html new file mode 120000 index 00000000..10535075 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/sk_TYPE_zero.html @@ -0,0 +1 @@ +DEFINE_STACK_OF.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ssl_ct_validation_cb.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ssl_ct_validation_cb.html new file mode 120000 index 00000000..a04d25cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man3/ssl_ct_validation_cb.html @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/config.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/config.html index 54bca59e..4de10c16 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/config.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/config.html @@ -198,12 +198,11 @@ Ciphers = ALL:!RC4
    ssl_conf = ssl_sect
     
     [ssl_sect]
    -
     system_default = system_default_sect
     
     [system_default_sect]
    -
    -MinProtocol = TLSv1.2
    +MinProtocol = TLSv1.2 +MinProtocol = DTLSv1.2

    NOTES

    @@ -269,7 +268,7 @@ fips_mode = yes

    Note: in the above example you will get an error in non FIPS capable versions of OpenSSL.

    -

    Simple OpenSSL library configuration to make TLS 1.3 the system-default minimum TLS version:

    +

    Simple OpenSSL library configuration to make TLS 1.2 and DTLS 1.2 the system-default minimum TLS and DTLS versions, respectively:

    # Toplevel section for openssl (including libssl)
     openssl_conf = default_conf_section
    @@ -282,7 +281,10 @@ ssl_conf = ssl_section
     system_default = system_default_section
     
     [system_default_section]
    -MinProtocol = TLSv1.3
    +MinProtocol = TLSv1.2 +MinProtocol = DTLSv1.2 + +

    The minimum TLS protocol is applied to SSL_CTX objects that are TLS-based, and the minimum DTLS protocol to those are DTLS-based. The same applies also to maximum versions set with MaxProtocol.

    More complex OpenSSL library configuration. Add OID and don't enter FIPS mode:

    @@ -342,7 +344,7 @@ newoid2 = New OID 2 long name, 1.2.3.4.2

    The escaping isn't quite right: if you want to use sequences like \n you can't use any quote escaping on the same line.

    -

    Files are loaded in a single pass. This means that an variable expansion will only work if the variables referenced are defined earlier in the file.

    +

    Files are loaded in a single pass. This means that a variable expansion will only work if the variables referenced are defined earlier in the file.

    SEE ALSO

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/x509v3_config.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/x509v3_config.html index 3a96990b..a4a95e2f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/x509v3_config.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man5/x509v3_config.html @@ -96,7 +96,7 @@ pathlen=1

    Basic Constraints.

    -

    This is a multi valued extension which indicates whether a certificate is a CA certificate. The first (mandatory) name is CA followed by TRUE or FALSE. If CA is TRUE then an optional pathlen name followed by an non-negative value can be included.

    +

    This is a multi valued extension which indicates whether a certificate is a CA certificate. The first (mandatory) name is CA followed by TRUE or FALSE. If CA is TRUE then an optional pathlen name followed by a nonnegative value can be included.

    For example:

    @@ -452,7 +452,7 @@ email.2=steve@there

    COPYRIGHT

    -

    Copyright 2004-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2004-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/Ed448.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/Ed448.html new file mode 120000 index 00000000..42e8972f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/Ed448.html @@ -0,0 +1 @@ +Ed25519.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/SM2.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/SM2.html index 1e379807..0d1302dc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/SM2.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/SM2.html @@ -44,7 +44,7 @@
    EVP_PKEY_CTX_set1_id(pctx, id, id_len);
    -

    When calling the EVP_DigestSignInit() or EVP_DigestVerifyInit() functions, a pre-allocated EVP_PKEY_CTX should be assigned to the EVP_MD_CTX. This is done by calling:

    +

    When calling the EVP_DigestSignInit() or EVP_DigestVerifyInit() functions, a preallocated EVP_PKEY_CTX should be assigned to the EVP_MD_CTX. This is done by calling:

    EVP_MD_CTX_set_pkey_ctx(mctx, pctx);
    @@ -72,7 +72,7 @@ EVP_DigestVerifyFinal(mctx, sig, sig_len)

    COPYRIGHT

    -

    Copyright 2018-2019 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2018-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/X448.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/X448.html new file mode 120000 index 00000000..d33b4054 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/X448.html @@ -0,0 +1 @@ +X25519.html \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/evp.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/evp.html index 845874ce..aa7ecbfd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/evp.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/evp.html @@ -37,7 +37,7 @@

    Symmetric encryption is available with the EVP_EncryptXXX functions. The EVP_DigestXXX functions provide message digests.

    -

    The EVP_PKEYXXX functions provide a high level interface to asymmetric algorithms. To create a new EVP_PKEY see EVP_PKEY_new(3). EVP_PKEYs can be associated with a private key of a particular algorithm by using the functions described on the EVP_PKEY_set1_RSA(3) page, or new keys can be generated using EVP_PKEY_keygen(3). EVP_PKEYs can be compared using EVP_PKEY_cmp(3), or printed using EVP_PKEY_print_private(3).

    +

    The EVP_PKEYXXX functions provide a high-level interface to asymmetric algorithms. To create a new EVP_PKEY see EVP_PKEY_new(3). EVP_PKEYs can be associated with a private key of a particular algorithm by using the functions described on the EVP_PKEY_set1_RSA(3) page, or new keys can be generated using EVP_PKEY_keygen(3). EVP_PKEYs can be compared using EVP_PKEY_cmp(3), or printed using EVP_PKEY_print_private(3).

    The EVP_PKEY functions support the full range of asymmetric algorithm operations:

    @@ -47,7 +47,7 @@
    -
    For signing and verifying see EVP_PKEY_sign(3), EVP_PKEY_verify(3) and EVP_PKEY_verify_recover(3). However, note that these functions do not perform a digest of the data to be signed. Therefore normally you would use the EVP_DigestSignInit(3) functions for this purpose.
    +
    For signing and verifying see EVP_PKEY_sign(3), EVP_PKEY_verify(3) and EVP_PKEY_verify_recover(3). However, note that these functions do not perform a digest of the data to be signed. Therefore, normally you would use the EVP_DigestSignInit(3) functions for this purpose.
    @@ -63,7 +63,7 @@

    All the symmetric algorithms (ciphers), digests and asymmetric algorithms (public key algorithms) can be replaced by ENGINE modules providing alternative implementations. If ENGINE implementations of ciphers or digests are registered as defaults, then the various EVP functions will automatically use those implementations automatically in preference to built in software implementations. For more information, consult the engine(3) man page.

    -

    Although low level algorithm specific functions exist for many algorithms their use is discouraged. They cannot be used with an ENGINE and ENGINE versions of new algorithms cannot be accessed using the low level functions. Also makes code harder to adapt to new algorithms and some options are not cleanly supported at the low level and some operations are more efficient using the high level interface.

    +

    Although low-level algorithm specific functions exist for many algorithms their use is discouraged. They cannot be used with an ENGINE and ENGINE versions of new algorithms cannot be accessed using the low-level functions. Also makes code harder to adapt to new algorithms and some options are not cleanly supported at the low-level and some operations are more efficient using the high-level interface.

    SEE ALSO

    @@ -71,7 +71,7 @@

    COPYRIGHT

    -

    Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2000-2020 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/ossl_store.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/ossl_store.html index 92bdfb2e..18eb51b3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/ossl_store.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/ossl_store.html @@ -42,7 +42,7 @@

    General

    -

    A STORE is a layer of functionality to retrieve a number of supported objects from a repository of any kind, addressable as a file name or as a URI.

    +

    A STORE is a layer of functionality to retrieve a number of supported objects from a repository of any kind, addressable as a filename or as a URI.

    The functionality supports the pattern "open a channel to the repository", "loop and retrieve one object at a time", and "finish up by closing the channel".

    @@ -76,7 +76,7 @@ while (!OSSL_STORE_eof(ctx)) { * here just one example */ switch (OSSL_STORE_INFO_get_type(info)) { - case OSSL_STORE_INFO_X509: + case OSSL_STORE_INFO_CERT: /* Print the X.509 certificate text */ X509_print_fp(stdout, OSSL_STORE_INFO_get0_CERT(info)); /* Print the X.509 certificate PEM output */ @@ -93,7 +93,7 @@ OSSL_STORE_close(ctx);

    COPYRIGHT

    -

    Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2016-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/x509.html b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/x509.html index 42546b1e..8c6f75c0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/x509.html +++ b/deps/openssl/android/arm64-v8a/usr/local/share/doc/openssl/html/man7/x509.html @@ -29,11 +29,11 @@

    DESCRIPTION

    -

    An X.509 certificate is a structured grouping of information about an individual, a device, or anything one can imagine. A X.509 CRL (certificate revocation list) is a tool to help determine if a certificate is still valid. The exact definition of those can be found in the X.509 document from ITU-T, or in RFC3280 from PKIX. In OpenSSL, the type X509 is used to express such a certificate, and the type X509_CRL is used to express a CRL.

    +

    An X.509 certificate is a structured grouping of information about an individual, a device, or anything one can imagine. An X.509 CRL (certificate revocation list) is a tool to help determine if a certificate is still valid. The exact definition of those can be found in the X.509 document from ITU-T, or in RFC3280 from PKIX. In OpenSSL, the type X509 is used to express such a certificate, and the type X509_CRL is used to express a CRL.

    A related structure is a certificate request, defined in PKCS#10 from RSA Security, Inc, also reflected in RFC2896. In OpenSSL, the type X509_REQ is used to express such a certificate request.

    -

    To handle some complex parts of a certificate, there are the types X509_NAME (to express a certificate name), X509_ATTRIBUTE (to express a certificate attributes), X509_EXTENSION (to express a certificate extension) and a few more.

    +

    To handle some complex parts of a certificate, there are the types X509_NAME (to express a certificate name), X509_ATTRIBUTE (to express a certificate attribute), X509_EXTENSION (to express a certificate extension) and a few more.

    Finally, there's the supertype X509_INFO, which can contain a CRL, a certificate and a corresponding private key.

    @@ -55,7 +55,7 @@

    COPYRIGHT

    -

    Copyright 2003-2017 The OpenSSL Project Authors. All Rights Reserved.

    +

    Copyright 2003-2021 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 in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html.

    diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/CA.pl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/CA.pl.1 index 5806ee2a..6dff4541 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/CA.pl.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/CA.pl.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CA.PL 1" -.TH CA.PL 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CA.PL 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -216,7 +216,7 @@ to be in the file \*(L"newreq.pem\*(R". The new certificate is written to the fi to standard output. Leverages \fBopenssl ca\fR command. .IP "\fB\-signCA\fR" 4 .IX Item "-signCA" -This option is the same as the \fB\-signreq\fR option except it uses the +This option is the same as the \fB\-sign\fR option except it uses the configuration file section \fBv3_ca\fR and so makes the signed request a valid \s-1CA\s0 certificate. This is useful when creating intermediate \s-1CA\s0 from a root \s-1CA.\s0 Extra params are passed on to \fBopenssl ca\fR command. @@ -263,7 +263,7 @@ the request and finally create a PKCS#12 file containing it. .Vb 4 \& CA.pl \-newca \& CA.pl \-newreq -\& CA.pl \-signreq +\& CA.pl \-sign \& CA.pl \-pkcs12 "My Test Certificate" .Ve .SH "DSA CERTIFICATES" @@ -290,7 +290,7 @@ Create the \s-1CA\s0 directories and files: \& CA.pl \-newca .Ve .PP -enter cacert.pem when prompted for the \s-1CA\s0 file name. +enter cacert.pem when prompted for the \s-1CA\s0 filename. .PP Create a \s-1DSA\s0 certificate request and private key (a different set of parameters can optionally be created first): @@ -302,7 +302,7 @@ can optionally be created first): Sign the request: .PP .Vb 1 -\& CA.pl \-signreq +\& CA.pl \-sign .Ve .SH "NOTES" .IX Header "NOTES" @@ -333,7 +333,7 @@ behaviour of the certificate commands call the \fBopenssl\fR command directly. \&\fBconfig\fR\|(5) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/asn1parse.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/asn1parse.1 index 2508fc3b..98861bcc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/asn1parse.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/asn1parse.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1PARSE 1" -.TH ASN1PARSE 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1PARSE 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/c_rehash.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/c_rehash.1 new file mode 120000 index 00000000..481032e2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/c_rehash.1 @@ -0,0 +1 @@ +rehash.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ca.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ca.1 index 0c6c0520..22198386 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ca.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ca.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CA 1" -.TH CA 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CA 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -278,7 +278,7 @@ self-signed certificate. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-notext\fR" 4 .IX Item "-notext" Don't output the text form of a certificate to the output file. @@ -325,7 +325,7 @@ DNs match the order of the request. This is not needed for Xenroll. .IP "\fB\-noemailDN\fR" 4 .IX Item "-noemailDN" The \s-1DN\s0 of a certificate can contain the \s-1EMAIL\s0 field if present in the -request \s-1DN,\s0 however it is good policy just having the e\-mail set into +request \s-1DN,\s0 however, it is good policy just having the e\-mail set into the altName extension of the certificate. When this option is set the \&\s-1EMAIL\s0 field is removed from the certificate' subject and set only in the, eventually present, extensions. The \fBemail_in_dn\fR keyword can be @@ -815,7 +815,7 @@ are in year 2050 or later. \&\fBconfig\fR\|(5), \fBx509v3_config\fR\|(5) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ciphers.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ciphers.1 index 9eb5bb0a..1aa9102e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ciphers.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ciphers.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CIPHERS 1" -.TH CIPHERS 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CIPHERS 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/cms.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/cms.1 index 4623925f..b3f7160d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/cms.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/cms.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CMS 1" -.TH CMS 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CMS 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -538,7 +538,7 @@ or to modify default parameters for \s-1ECDH.\s0 .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The private key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-rand file...\fR" 4 .IX Item "-rand file..." A file or files containing random data used to seed the random number @@ -797,6 +797,9 @@ user has to manually include the correct encryption algorithm. It should store the list of permitted ciphers in a database and only use those. .PP No revocation checking is done on the signer's certificate. +.PP +The \fB\-binary\fR option does not work correctly when processing text input which +(contrary to the S/MIME specification) uses \s-1LF\s0 rather than \s-1CRLF\s0 line endings. .SH "HISTORY" .IX Header "HISTORY" The use of multiple \fB\-signer\fR options and the \fB\-resign\fR command were first @@ -812,7 +815,7 @@ was added in OpenSSL 1.0.2. The \-no_alt_chains option was added in OpenSSL 1.0.2b. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2008\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2008\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl.1 index ec15114a..b6af92a5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CRL 1" -.TH CRL 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CRL 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl2pkcs7.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl2pkcs7.1 index 67214af2..1aa0c0fd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl2pkcs7.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/crl2pkcs7.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CRL2PKCS7 1" -.TH CRL2PKCS7 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CRL2PKCS7 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -182,7 +182,7 @@ output by default. .IX Item "-certfile filename" Specifies a filename containing one or more certificates in \fB\s-1PEM\s0\fR format. All certificates in the file will be added to the PKCS#7 structure. This -option can be used more than once to read certificates form multiple +option can be used more than once to read certificates from multiple files. .IP "\fB\-nocrl\fR" 4 .IX Item "-nocrl" @@ -219,7 +219,7 @@ install user certificates and CAs in \s-1MSIE\s0 using the Xenroll control. \&\fBpkcs7\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dgst.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dgst.1 index 5899e161..d2b3fa08 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dgst.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dgst.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DGST 1" -.TH DGST 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DGST 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -216,8 +216,7 @@ Filename to output to, or standard output by default. .IP "\fB\-sign filename\fR" 4 .IX Item "-sign filename" Digitally sign the digest using the private key in \*(L"filename\*(R". Note this option -does not support Ed25519 or Ed448 private keys. Use the \fBpkeyutl\fR command -instead for this. +does not support Ed25519 or Ed448 private keys. .IP "\fB\-keyform arg\fR" 4 .IX Item "-keyform arg" Specifies the key format to sign digest with. The \s-1DER, PEM, P12,\s0 @@ -229,7 +228,7 @@ Names and values of these options are algorithm-specific. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The private key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-verify filename\fR" 4 .IX Item "-verify filename" Verify the signature using the public key in \*(L"filename\*(R". @@ -339,7 +338,7 @@ The default digest was changed from \s-1MD5\s0 to \s-1SHA256\s0 in OpenSSL 1.1.0 The FIPS-related options were removed in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dhparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dhparam.1 index 8c7053bd..7926946f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dhparam.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dhparam.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DHPARAM 1" -.TH DHPARAM 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DHPARAM 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsa.1 index abb85c6b..f85c8e2d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsa.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsa.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA 1" -.TH DSA 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -202,7 +202,7 @@ prompted for. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The input file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" This specifies the output filename to write a key to or standard output by @@ -212,7 +212,7 @@ filename. .IP "\fB\-passout arg\fR" 4 .IX Item "-passout arg" The output file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-aes128\fR, \fB\-aes192\fR, \fB\-aes256\fR, \fB\-aria128\fR, \fB\-aria192\fR, \fB\-aria256\fR, \fB\-camellia128\fR, \fB\-camellia192\fR, \fB\-camellia256\fR, \fB\-des\fR, \fB\-des3\fR, \fB\-idea\fR" 4 .IX Item "-aes128, -aes192, -aes256, -aria128, -aria192, -aria256, -camellia128, -camellia192, -camellia256, -des, -des3, -idea" These options encrypt the private key with the specified @@ -298,7 +298,7 @@ To just output the public part of a private key: \&\fBgenrsa\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsaparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsaparam.1 index ac6dd7b8..0dc0a532 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsaparam.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/dsaparam.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSAPARAM 1" -.TH DSAPARAM 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSAPARAM 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ec.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ec.1 index 84cfa7c2..bb89b016 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ec.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ec.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EC 1" -.TH EC 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -195,7 +195,7 @@ prompted for. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The input file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" This specifies the output filename to write a key to or standard output by @@ -205,7 +205,7 @@ filename. .IP "\fB\-passout arg\fR" 4 .IX Item "-passout arg" The output file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-des|\-des3|\-idea\fR" 4 .IX Item "-des|-des3|-idea" These options encrypt the private key with the \s-1DES,\s0 triple \s-1DES, IDEA\s0 or @@ -318,7 +318,7 @@ To change the point conversion form to \fBcompressed\fR: \&\fBecparam\fR\|(1), \fBdsa\fR\|(1), \fBrsa\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2003\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2003\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ecparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ecparam.1 index 16376947..28030012 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ecparam.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ecparam.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ECPARAM 1" -.TH ECPARAM 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ECPARAM 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/enc.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/enc.1 index 84c53541..bd733cd0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/enc.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/enc.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ENC 1" -.TH ENC 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ENC 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -202,7 +202,7 @@ The output filename, standard output by default. .IP "\fB\-pass arg\fR" 4 .IX Item "-pass arg" The password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-e\fR" 4 .IX Item "-e" Encrypt the input data: this is the default. @@ -285,8 +285,8 @@ Disable standard block padding. Debug the BIOs used for I/O. .IP "\fB\-z\fR" 4 .IX Item "-z" -Compress or decompress clear text using zlib before encryption or after -decryption. This option exists only if OpenSSL with compiled with zlib +Compress or decompress encrypted data using zlib after encryption or before +decryption. This option exists only if OpenSSL was compiled with the zlib or zlib-dynamic option. .IP "\fB\-none\fR" 4 .IX Item "-none" @@ -339,7 +339,7 @@ a strong block cipher, such as \s-1AES,\s0 in \s-1CBC\s0 mode. .PP All the block ciphers normally use PKCS#5 padding, also known as standard block padding. This allows a rudimentary integrity or password check to -be performed. However since the chance of random data passing the test +be performed. However, since the chance of random data passing the test is better than 1 in 256 it isn't a very good test. .PP If padding is disabled then the input data must be a multiple of the cipher @@ -535,7 +535,7 @@ The default digest was changed from \s-1MD5\s0 to \s-1SHA256\s0 in OpenSSL 1.1.0 The \fB\-list\fR option was added in OpenSSL 1.1.1e. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/engine.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/engine.1 index 7bbabdaf..7ab82f30 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/engine.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/engine.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ENGINE 1" -.TH ENGINE 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ENGINE 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/errstr.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/errstr.1 index d677ab0b..abf2d645 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/errstr.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/errstr.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERRSTR 1" -.TH ERRSTR 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERRSTR 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/gendsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/gendsa.1 index 8a2bdee5..ed25408c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/gendsa.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/gendsa.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "GENDSA 1" -.TH GENDSA 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH GENDSA 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genpkey.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genpkey.1 index 3d43f587..a0188f2e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genpkey.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genpkey.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "GENPKEY 1" -.TH GENPKEY 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH GENPKEY 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -172,7 +172,7 @@ This specifies the output format \s-1DER\s0 or \s-1PEM.\s0 The default format is .IP "\fB\-pass arg\fR" 4 .IX Item "-pass arg" The output file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-\f(BIcipher\fB\fR" 4 .IX Item "-cipher" This option encrypts the private key with the supplied cipher. Any algorithm @@ -426,7 +426,7 @@ The ability to generate X25519 keys was added in OpenSSL 1.1.0. The ability to generate X448, \s-1ED25519\s0 and \s-1ED448\s0 keys was added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genrsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genrsa.1 index 1dc02227..05fdfabd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genrsa.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/genrsa.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "GENRSA 1" -.TH GENRSA 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH GENRSA 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -180,7 +180,7 @@ standard output is used. .IP "\fB\-passout arg\fR" 4 .IX Item "-passout arg" The output file password source. For more information about the format -of \fBarg\fR see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +of \fBarg\fR see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-aes128\fR, \fB\-aes192\fR, \fB\-aes256\fR, \fB\-aria128\fR, \fB\-aria192\fR, \fB\-aria256\fR, \fB\-camellia128\fR, \fB\-camellia192\fR, \fB\-camellia256\fR, \fB\-des\fR, \fB\-des3\fR, \fB\-idea\fR" 4 .IX Item "-aes128, -aes192, -aes256, -aria128, -aria192, -aria256, -camellia128, -camellia192, -camellia256, -des, -des3, -idea" These options encrypt the private key with specified @@ -235,7 +235,7 @@ of a key. \&\fBgendsa\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/list.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/list.1 index 72b628e7..4cd99141 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/list.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/list.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "LIST 1" -.TH LIST 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH LIST 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/nseq.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/nseq.1 index e6d4634c..45cb952d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/nseq.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/nseq.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "NSEQ 1" -.TH NSEQ 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH NSEQ 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ocsp.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ocsp.1 index a306fb43..9d91336b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ocsp.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ocsp.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OCSP 1" -.TH OCSP 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OCSP 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -294,7 +294,7 @@ Specify the responder \s-1URL.\s0 Both \s-1HTTP\s0 and \s-1HTTPS\s0 (\s-1SSL/TLS .IP "\fB\-host hostname:port\fR, \fB\-path pathname\fR" 4 .IX Item "-host hostname:port, -path pathname" If the \fBhost\fR option is present then the \s-1OCSP\s0 request is sent to the host -\&\fBhostname\fR on port \fBport\fR. \fBpath\fR specifies the \s-1HTTP\s0 path name to use +\&\fBhostname\fR on port \fBport\fR. \fBpath\fR specifies the \s-1HTTP\s0 pathname to use or \*(L"/\*(R" by default. This is equivalent to specifying \fB\-url\fR with scheme http:// and the given hostname, port, and pathname. .IP "\fB\-header name=value\fR" 4 @@ -576,7 +576,7 @@ to a second file. The \-no_alt_chains option was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-asn1parse.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-asn1parse.1 new file mode 120000 index 00000000..503801a9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-asn1parse.1 @@ -0,0 +1 @@ +asn1parse.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-c_rehash.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-c_rehash.1 new file mode 120000 index 00000000..481032e2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-c_rehash.1 @@ -0,0 +1 @@ +rehash.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ca.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ca.1 new file mode 120000 index 00000000..1fd62c39 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ca.1 @@ -0,0 +1 @@ +ca.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ciphers.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ciphers.1 new file mode 120000 index 00000000..38638294 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ciphers.1 @@ -0,0 +1 @@ +ciphers.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-cms.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-cms.1 new file mode 120000 index 00000000..a141a8f0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-cms.1 @@ -0,0 +1 @@ +cms.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-crl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-crl.1 new file mode 120000 index 00000000..c6eb599b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-crl.1 @@ -0,0 +1 @@ +crl.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-crl2pkcs7.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-crl2pkcs7.1 new file mode 120000 index 00000000..a2f797a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-crl2pkcs7.1 @@ -0,0 +1 @@ +crl2pkcs7.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dgst.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dgst.1 new file mode 120000 index 00000000..dbec2a5c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dgst.1 @@ -0,0 +1 @@ +dgst.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dhparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dhparam.1 new file mode 120000 index 00000000..fe3753ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dhparam.1 @@ -0,0 +1 @@ +dhparam.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dsa.1 new file mode 120000 index 00000000..0f88030c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dsa.1 @@ -0,0 +1 @@ +dsa.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dsaparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dsaparam.1 new file mode 120000 index 00000000..b0f769d5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-dsaparam.1 @@ -0,0 +1 @@ +dsaparam.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ec.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ec.1 new file mode 120000 index 00000000..8b97bb29 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ec.1 @@ -0,0 +1 @@ +ec.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ecparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ecparam.1 new file mode 120000 index 00000000..554567cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ecparam.1 @@ -0,0 +1 @@ +ecparam.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-enc.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-enc.1 new file mode 120000 index 00000000..b19c0340 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-enc.1 @@ -0,0 +1 @@ +enc.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-engine.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-engine.1 new file mode 120000 index 00000000..4442a5b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-engine.1 @@ -0,0 +1 @@ +engine.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-errstr.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-errstr.1 new file mode 120000 index 00000000..577b44f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-errstr.1 @@ -0,0 +1 @@ +errstr.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-gendsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-gendsa.1 new file mode 120000 index 00000000..a7bddbfb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-gendsa.1 @@ -0,0 +1 @@ +gendsa.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-genpkey.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-genpkey.1 new file mode 120000 index 00000000..a53303b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-genpkey.1 @@ -0,0 +1 @@ +genpkey.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-genrsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-genrsa.1 new file mode 120000 index 00000000..badb0793 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-genrsa.1 @@ -0,0 +1 @@ +genrsa.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-list.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-list.1 new file mode 120000 index 00000000..9e2f0a14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-list.1 @@ -0,0 +1 @@ +list.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-nseq.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-nseq.1 new file mode 120000 index 00000000..6b340fab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-nseq.1 @@ -0,0 +1 @@ +nseq.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ocsp.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ocsp.1 new file mode 120000 index 00000000..dfeb5574 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ocsp.1 @@ -0,0 +1 @@ +ocsp.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-passwd.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-passwd.1 new file mode 120000 index 00000000..7dc665fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-passwd.1 @@ -0,0 +1 @@ +passwd.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs12.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs12.1 new file mode 120000 index 00000000..5ee94f60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs12.1 @@ -0,0 +1 @@ +pkcs12.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs7.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs7.1 new file mode 120000 index 00000000..5dabdd79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs7.1 @@ -0,0 +1 @@ +pkcs7.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs8.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs8.1 new file mode 120000 index 00000000..f2a340c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkcs8.1 @@ -0,0 +1 @@ +pkcs8.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkey.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkey.1 new file mode 120000 index 00000000..03b175ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkey.1 @@ -0,0 +1 @@ +pkey.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkeyparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkeyparam.1 new file mode 120000 index 00000000..d6b568b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkeyparam.1 @@ -0,0 +1 @@ +pkeyparam.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkeyutl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkeyutl.1 new file mode 120000 index 00000000..4794d82b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-pkeyutl.1 @@ -0,0 +1 @@ +pkeyutl.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-prime.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-prime.1 new file mode 120000 index 00000000..c2a3c254 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-prime.1 @@ -0,0 +1 @@ +prime.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rand.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rand.1 new file mode 120000 index 00000000..55f8efed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rand.1 @@ -0,0 +1 @@ +rand.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rehash.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rehash.1 new file mode 120000 index 00000000..481032e2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rehash.1 @@ -0,0 +1 @@ +rehash.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-req.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-req.1 new file mode 120000 index 00000000..cf12d0b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-req.1 @@ -0,0 +1 @@ +req.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rsa.1 new file mode 120000 index 00000000..3335c58a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rsa.1 @@ -0,0 +1 @@ +rsa.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rsautl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rsautl.1 new file mode 120000 index 00000000..0cd8bed8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-rsautl.1 @@ -0,0 +1 @@ +rsautl.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_client.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_client.1 new file mode 120000 index 00000000..7390143d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_client.1 @@ -0,0 +1 @@ +s_client.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_server.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_server.1 new file mode 120000 index 00000000..b116ca8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_server.1 @@ -0,0 +1 @@ +s_server.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_time.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_time.1 new file mode 120000 index 00000000..977d431c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-s_time.1 @@ -0,0 +1 @@ +s_time.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-sess_id.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-sess_id.1 new file mode 120000 index 00000000..53d9fe3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-sess_id.1 @@ -0,0 +1 @@ +sess_id.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-smime.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-smime.1 new file mode 120000 index 00000000..3d6e5ac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-smime.1 @@ -0,0 +1 @@ +smime.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-speed.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-speed.1 new file mode 120000 index 00000000..856705e7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-speed.1 @@ -0,0 +1 @@ +speed.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-spkac.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-spkac.1 new file mode 120000 index 00000000..4b27aa7d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-spkac.1 @@ -0,0 +1 @@ +spkac.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-srp.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-srp.1 new file mode 120000 index 00000000..d9fa359b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-srp.1 @@ -0,0 +1 @@ +srp.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-storeutl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-storeutl.1 new file mode 120000 index 00000000..16531c1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-storeutl.1 @@ -0,0 +1 @@ +storeutl.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ts.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ts.1 new file mode 120000 index 00000000..31019f19 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-ts.1 @@ -0,0 +1 @@ +ts.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-tsget.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-tsget.1 new file mode 120000 index 00000000..becee8bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-tsget.1 @@ -0,0 +1 @@ +tsget.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-verify.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-verify.1 new file mode 120000 index 00000000..58500da8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-verify.1 @@ -0,0 +1 @@ +verify.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-version.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-version.1 new file mode 120000 index 00000000..8cac66fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-version.1 @@ -0,0 +1 @@ +version.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-x509.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-x509.1 new file mode 120000 index 00000000..8af53162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl-x509.1 @@ -0,0 +1 @@ +x509.1 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl.1 index 14d4c770..919e6c75 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/openssl.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL 1" -.TH OPENSSL 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/passwd.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/passwd.1 index e1166f95..26991ed5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/passwd.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/passwd.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PASSWD 1" -.TH PASSWD 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PASSWD 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -165,8 +165,6 @@ The \fBpasswd\fR command computes the hash of a password typed at run-time or the hash of each password in a list. The password list is taken from the named file for option \fB\-in file\fR, from stdin for option \fB\-stdin\fR, or from the command line, or from the terminal otherwise. -The Unix standard algorithm \fBcrypt\fR and the MD5\-based \s-1BSD\s0 password -algorithm \fB1\fR, its Apache variant \fBapr1\fR, and its \s-1AIX\s0 variant are available. .SH "OPTIONS" .IX Header "OPTIONS" .IP "\fB\-help\fR" 4 @@ -240,7 +238,7 @@ This can be used with a subsequent \fB\-rand\fR flag. .Ve .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs12.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs12.1 index 2309874a..83c60b1f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs12.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs12.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS12 1" -.TH PKCS12 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS12 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -205,13 +205,11 @@ default. They are all written in \s-1PEM\s0 format. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The PKCS#12 file (i.e. input file) password source. For more information about -the format of \fBarg\fR see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in -\&\fBopenssl\fR\|(1). +the format of \fBarg\fR see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-passout arg\fR" 4 .IX Item "-passout arg" Pass phrase source to encrypt any outputted private keys with. For more -information about the format of \fBarg\fR see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section -in \fBopenssl\fR\|(1). +information about the format of \fBarg\fR see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-password arg\fR" 4 .IX Item "-password arg" With \-export, \-password is equivalent to \-passout. @@ -304,13 +302,11 @@ displays them. .IP "\fB\-pass arg\fR, \fB\-passout arg\fR" 4 .IX Item "-pass arg, -passout arg" The PKCS#12 file (i.e. output file) password source. For more information about -the format of \fBarg\fR see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in -\&\fBopenssl\fR\|(1). +the format of \fBarg\fR see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-passin password\fR" 4 .IX Item "-passin password" Pass phrase source to decrypt any input private keys with. For more information -about the format of \fBarg\fR see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in -\&\fBopenssl\fR\|(1). +about the format of \fBarg\fR see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-chain\fR" 4 .IX Item "-chain" If this option is present then an attempt is made to include the entire @@ -338,7 +334,7 @@ This option is only interpreted by \s-1MSIE\s0 and similar \s-1MS\s0 software. N encryption purposes but arbitrary length keys for signing. The \fB\-keysig\fR option marks the key for signing only. Signing only keys can be used for S/MIME signing, authenticode (ActiveX control signing) and \s-1SSL\s0 client -authentication, however due to a bug only \s-1MSIE 5.0\s0 and later support +authentication, however, due to a bug only \s-1MSIE 5.0\s0 and later support the use of signing only keys for \s-1SSL\s0 client authentication. .IP "\fB\-macalg digest\fR" 4 .IX Item "-macalg digest" @@ -471,7 +467,7 @@ Include some extra certificates: \&\fBpkcs8\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs7.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs7.1 index 7e776577..737d4555 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs7.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs7.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS7 1" -.TH PKCS7 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS7 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs8.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs8.1 index 3ee650c4..cf09789c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs8.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkcs8.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS8 1" -.TH PKCS8 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS8 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -200,7 +200,7 @@ prompted for. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The input file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" This specifies the output filename to write a key to or standard output by @@ -210,7 +210,7 @@ filename. .IP "\fB\-passout arg\fR" 4 .IX Item "-passout arg" The output file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-iter count\fR" 4 .IX Item "-iter count" When creating new PKCS#8 containers, use a given number of iterations on @@ -406,7 +406,7 @@ one million iterations of the password: Test vectors from this PKCS#5 v2.0 implementation were posted to the pkcs-tng mailing list using triple \s-1DES, DES\s0 and \s-1RC2\s0 with high iteration counts, several people confirmed that they could decrypt the private -keys produced and Therefore it can be assumed that the PKCS#5 v2.0 +keys produced and therefore, it can be assumed that the PKCS#5 v2.0 implementation is reasonably accurate at least as far as these algorithms are concerned. .PP @@ -426,7 +426,7 @@ in use and other details such as the iteration count. The \fB\-iter\fR option was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkey.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkey.1 index 2bec6341..68b03c71 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkey.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkey.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKEY 1" -.TH PKEY 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKEY 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -184,7 +184,7 @@ prompted for. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The input file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" This specifies the output filename to write a key to or standard output if this @@ -194,7 +194,7 @@ filename. .IP "\fB\-passout password\fR" 4 .IX Item "-passout password" The output file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-traditional\fR" 4 .IX Item "-traditional" Normally a private key is written using standard format: this is PKCS#8 form @@ -280,7 +280,7 @@ To just output the public part of a private key: \&\fBdsa\fR\|(1), \fBgenrsa\fR\|(1), \fBgendsa\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyparam.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyparam.1 index b7c07bbd..fc979fdf 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyparam.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyparam.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKEYPARAM 1" -.TH PKEYPARAM 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKEYPARAM 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyutl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyutl.1 index da2873b9..0d8e477e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyutl.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/pkeyutl.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKEYUTL 1" -.TH PKEYUTL 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKEYUTL 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -172,7 +172,7 @@ openssl\-pkeyutl, pkeyutl \- public key algorithm utility [\fB\-engine_impl\fR] .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \fBpkeyutl\fR command can be used to perform low level public key operations +The \fBpkeyutl\fR command can be used to perform low-level public key operations using any supported algorithm. .SH "OPTIONS" .IX Header "OPTIONS" @@ -199,7 +199,7 @@ The key format \s-1PEM, DER\s0 or \s-1ENGINE.\s0 Default is \s-1PEM.\s0 .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The input key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-peerkey file\fR" 4 .IX Item "-peerkey file" The peer key file, used by key derivation (agreement) operations. @@ -341,6 +341,10 @@ values are supported: \*(L"digest\*(R" sets the salt length to the digest length .IX Item "rsa_mgf1_md:digest" For \s-1PSS\s0 and \s-1OAEP\s0 padding sets the \s-1MGF1\s0 digest. If the \s-1MGF1\s0 digest is not explicitly set in \s-1PSS\s0 mode then the signing digest is used. +.IP "\fBrsa_oaep_md:\fR\fIdigest\fR" 4 +.IX Item "rsa_oaep_md:digest" +Sets the digest used for the \s-1OAEP\s0 hash function. If not explicitly set then +\&\s-1SHA1\s0 is used. .SH "RSA-PSS ALGORITHM" .IX Header "RSA-PSS ALGORITHM" The RSA-PSS algorithm is a restricted version of the \s-1RSA\s0 algorithm which only @@ -413,6 +417,13 @@ seed consisting of the single byte 0xFF: \& openssl pkeyutl \-kdf TLS1\-PRF \-kdflen 48 \-pkeyopt md:SHA256 \e \& \-pkeyopt hexsecret:ff \-pkeyopt hexseed:ff \-hexdump .Ve +.PP +Decrypt some data using a private key with \s-1OAEP\s0 padding using \s-1SHA256:\s0 +.PP +.Vb 2 +\& openssl pkeyutl \-decrypt \-in file \-inkey key.pem \-out secret \e +\& \-pkeyopt rsa_padding_mode:oaep \-pkeyopt rsa_oaep_md:sha256 +.Ve .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBgenpkey\fR\|(1), \fBpkey\fR\|(1), \fBrsautl\fR\|(1) @@ -420,7 +431,7 @@ seed consisting of the single byte 0xFF: \&\fBEVP_PKEY_CTX_set_hkdf_md\fR\|(3), \fBEVP_PKEY_CTX_set_tls1_prf_md\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/prime.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/prime.1 index 3e98744c..3c4eebf0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/prime.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/prime.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PRIME 1" -.TH PRIME 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PRIME 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rand.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rand.1 index d6509206..7dfb509b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rand.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rand.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND 1" -.TH RAND 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rehash.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rehash.1 index c2fcab28..0eb393a2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rehash.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rehash.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "REHASH 1" -.TH REHASH 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH REHASH 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/req.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/req.1 index ac8f2387..13fb9aec 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/req.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/req.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "REQ 1" -.TH REQ 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH REQ 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -217,7 +217,7 @@ Names and values of these options are algorithm-specific. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The input file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" This specifies the output filename to write to or standard output by @@ -225,7 +225,7 @@ default. .IP "\fB\-passout arg\fR" 4 .IX Item "-passout arg" The output file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-text\fR" 4 .IX Item "-text" Prints out the certificate request in text form. @@ -789,7 +789,7 @@ address in subjectAltName should be input by the user. \&\fBx509v3_config\fR\|(5) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsa.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsa.1 index 48d3d829..1c6f2e15 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsa.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsa.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA 1" -.TH RSA 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -202,7 +202,7 @@ prompted for. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The input file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-out filename\fR" 4 .IX Item "-out filename" This specifies the output filename to write a key to or standard output if this @@ -212,7 +212,7 @@ filename. .IP "\fB\-passout password\fR" 4 .IX Item "-passout password" The output file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-aes128\fR, \fB\-aes192\fR, \fB\-aes256\fR, \fB\-aria128\fR, \fB\-aria192\fR, \fB\-aria256\fR, \fB\-camellia128\fR, \fB\-camellia192\fR, \fB\-camellia256\fR, \fB\-des\fR, \fB\-des3\fR, \fB\-idea\fR" 4 .IX Item "-aes128, -aes192, -aes256, -aria128, -aria192, -aria256, -camellia128, -camellia192, -camellia256, -des, -des3, -idea" These options encrypt the private key with the specified @@ -322,7 +322,7 @@ without having to manually edit them. \&\fBgendsa\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsautl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsautl.1 index 74d26faa..fa81d05e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsautl.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/rsautl.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSAUTL 1" -.TH RSAUTL 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSAUTL 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_client.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_client.1 index 3ffc7913..a9cc4eba 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_client.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_client.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "S_CLIENT 1" -.TH S_CLIENT 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH S_CLIENT 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -370,7 +370,7 @@ Extra certificate and private key format respectively. .IP "\fB\-pass arg\fR" 4 .IX Item "-pass arg" the private key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-verify depth\fR" 4 .IX Item "-verify depth" The verify depth to use. This specifies the maximum length of the @@ -512,10 +512,10 @@ with \fBenable-ssl-trace\fR for this option to work. File to send output of \fB\-msg\fR or \fB\-trace\fR to, default standard output. .IP "\fB\-nbio_test\fR" 4 .IX Item "-nbio_test" -Tests non-blocking I/O +Tests nonblocking I/O .IP "\fB\-nbio\fR" 4 .IX Item "-nbio" -Turns on non-blocking I/O +Turns on nonblocking I/O .IP "\fB\-crlf\fR" 4 .IX Item "-crlf" This option translated a line feed from the terminal into \s-1CR+LF\s0 as required @@ -812,14 +812,14 @@ is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its \*(L"acceptable \s-1CA\s0 list\*(R" when it requests a certificate. By using \fBs_client\fR the \s-1CA\s0 list can be viewed -and checked. However some servers only request client authentication +and checked. However, some servers only request client authentication after a specific \s-1URL\s0 is requested. To obtain the list in this case it is necessary to use the \fB\-prexit\fR option and send an \s-1HTTP\s0 request for an appropriate page. .PP If a certificate is specified on the command line using the \fB\-cert\fR option it will not be used unless the server specifically requests -a client certificate. Therefor merely including a client certificate +a client certificate. Therefore, merely including a client certificate on the command line is no guarantee that the certificate works. .PP If there are problems verifying a server certificate then the @@ -828,7 +828,7 @@ server. .PP The \fBs_client\fR utility is a test tool and is designed to continue the handshake after any certificate verification errors. As a result it will -accept any certificate chain (trusted or not) sent by the peer. None test +accept any certificate chain (trusted or not) sent by the peer. Non-test applications should \fBnot\fR do this as it makes them vulnerable to a \s-1MITM\s0 attack. This behaviour can be changed by with the \fB\-verify_return_error\fR option: any verify errors are then returned aborting the handshake. @@ -855,7 +855,7 @@ The \fB\-no_alt_chains\fR option was added in OpenSSL 1.1.0. The \fB\-name\fR option was added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_server.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_server.1 index 8528a53e..c43296e3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_server.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_server.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "S_SERVER 1" -.TH S_SERVER 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH S_SERVER 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -409,7 +409,7 @@ The private format to use: \s-1DER\s0 or \s-1PEM. PEM\s0 is the default. .IP "\fB\-pass val\fR" 4 .IX Item "-pass val" The private key password source. For more information about the format of \fBval\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-dcert infile\fR, \fB\-dkey infile\fR" 4 .IX Item "-dcert infile, -dkey infile" Specify an additional certificate and private key, these behave in the @@ -519,9 +519,9 @@ used in conjunction with \fB\-early_data\fR. .IP "\fB\-id_prefix val\fR" 4 .IX Item "-id_prefix val" Generate \s-1SSL/TLS\s0 session IDs prefixed by \fBval\fR. This is mostly useful -for testing any \s-1SSL/TLS\s0 code (eg. proxies) that wish to deal with multiple +for testing any \s-1SSL/TLS\s0 code (e.g. proxies) that wish to deal with multiple servers, when each of which might be generating a unique range of session -IDs (eg. with a certain prefix). +IDs (e.g. with a certain prefix). .IP "\fB\-rand file...\fR" 4 .IX Item "-rand file..." A file or files containing random data used to seed the random number @@ -741,7 +741,7 @@ If this option is set then no \s-1DH\s0 parameters will be loaded effectively disabling the ephemeral \s-1DH\s0 cipher suites. .IP "\fB\-alpn val\fR, \fB\-nextprotoneg val\fR" 4 .IX Item "-alpn val, -nextprotoneg val" -These flags enable the Enable the Application-Layer Protocol Negotiation +These flags enable the Application-Layer Protocol Negotiation or Next Protocol Negotiation (\s-1NPN\s0) extension, respectively. \s-1ALPN\s0 is the \&\s-1IETF\s0 standard and replaces \s-1NPN.\s0 The \fBval\fR list is a comma-separated list of supported protocol @@ -860,7 +860,7 @@ The \&\-allow\-no\-dhe\-kex and \-prioritize_chacha options were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_time.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_time.1 index 0cdc5fa3..ad313446 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_time.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/s_time.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "S_TIME 1" -.TH S_TIME 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH S_TIME 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -290,14 +290,14 @@ is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its \*(L"acceptable \s-1CA\s0 list\*(R" when it requests a certificate. By using \fBs_client\fR\|(1) the \s-1CA\s0 list can be -viewed and checked. However some servers only request client authentication +viewed and checked. However, some servers only request client authentication after a specific \s-1URL\s0 is requested. To obtain the list in this case it is necessary to use the \fB\-prexit\fR option of \fBs_client\fR\|(1) and send an \s-1HTTP\s0 request for an appropriate page. .PP If a certificate is specified on the command line using the \fB\-cert\fR option it will not be used unless the server specifically requests -a client certificate. Therefor merely including a client certificate +a client certificate. Therefore, merely including a client certificate on the command line is no guarantee that the certificate works. .SH "BUGS" .IX Header "BUGS" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/sess_id.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/sess_id.1 index 3df11f66..b4694c35 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/sess_id.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/sess_id.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SESS_ID 1" -.TH SESS_ID 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SESS_ID 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -253,7 +253,7 @@ The \s-1PEM\s0 encoded session format uses the header and footer lines: .PP Since the \s-1SSL\s0 session output contains the master key it is possible to read the contents of an encrypted session using this -information. Therefore appropriate security precautions should be taken if +information. Therefore, appropriate security precautions should be taken if the information is being output by a \*(L"real\*(R" application. This is however strongly discouraged and should only be used for debugging purposes. .SH "BUGS" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/smime.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/smime.1 index d61174c9..5901d025 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/smime.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/smime.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SMIME 1" -.TH SMIME 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SMIME 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -391,7 +391,7 @@ specified, the argument is given to the engine as a key identifier. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The private key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-rand file...\fR" 4 .IX Item "-rand file..." A file or files containing random data used to seed the random number @@ -609,7 +609,7 @@ added in OpenSSL 1.0.0 The \-no_alt_chains option was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/speed.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/speed.1 index 8b6998ff..d0792a7d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/speed.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/speed.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SPEED 1" -.TH SPEED 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SPEED 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/spkac.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/spkac.1 index f5691003..a393bd05 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/spkac.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/spkac.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SPKAC 1" -.TH SPKAC 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SPKAC 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -186,7 +186,7 @@ The default is \s-1PEM.\s0 .IP "\fB\-passin password\fR" 4 .IX Item "-passin password" The input file password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-challenge string\fR" 4 .IX Item "-challenge string" Specifies the challenge string if an \s-1SPKAC\s0 is being created. @@ -266,7 +266,7 @@ to be used in a \*(L"replay attack\*(R". \&\fBca\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/srp.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/srp.1 index 7ad993d1..e2a0c401 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/srp.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/srp.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SRP 1" -.TH SRP 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SRP 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/storeutl.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/storeutl.1 index a15a3fc6..acdef3eb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/storeutl.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/storeutl.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "STOREUTL 1" -.TH STOREUTL 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH STOREUTL 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -179,7 +179,7 @@ this option prevents output of the \s-1PEM\s0 data. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" the key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-text\fR" 4 .IX Item "-text" Prints out the objects in text form, similarly to the \fB\-text\fR output from @@ -241,7 +241,7 @@ The digest that was used to compute the fingerprint given with \fB\-fingerprint\ The \fBopenssl\fR \fBstoreutl\fR app was added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ts.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ts.1 index e7d59eb3..e9a38d90 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ts.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/ts.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "TS 1" -.TH TS 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH TS 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -229,19 +229,19 @@ The \s-1TSA\s0 client computes a one-way hash value for a data file and sends the hash to the \s-1TSA.\s0 .IP "2." 4 The \s-1TSA\s0 attaches the current date and time to the received hash value, -signs them and sends the time stamp token back to the client. By +signs them and sends the timestamp token back to the client. By creating this token the \s-1TSA\s0 certifies the existence of the original data file at the time of response generation. .IP "3." 4 -The \s-1TSA\s0 client receives the time stamp token and verifies the +The \s-1TSA\s0 client receives the timestamp token and verifies the signature on it. It also checks if the token contains the same hash value that it had sent to the \s-1TSA.\s0 .PP -There is one \s-1DER\s0 encoded protocol data unit defined for transporting a time -stamp request to the \s-1TSA\s0 and one for sending the time stamp response +There is one \s-1DER\s0 encoded protocol data unit defined for transporting +a timestamp request to the \s-1TSA\s0 and one for sending the timestamp response back to the client. The \fBts\fR command has three main functions: -creating a time stamp request based on a data file, -creating a time stamp response based on a request, verifying if a +creating a timestamp request based on a data file, +creating a timestamp response based on a request, verifying if a response corresponds to a particular request or a data file. .PP There is no support for sending the requests/responses automatically @@ -251,7 +251,7 @@ requests either by ftp or e\-mail. .IX Header "OPTIONS" .SS "Time Stamp Request generation" .IX Subsection "Time Stamp Request generation" -The \fB\-query\fR switch can be used for creating and printing a time stamp +The \fB\-query\fR switch can be used for creating and printing a timestamp request with the following options: .IP "\fB\-rand file...\fR" 4 .IX Item "-rand file..." @@ -271,7 +271,7 @@ Optional; for a description of the default value, see \*(L"\s-1COMMAND SUMMARY\*(R"\s0 in \fBopenssl\fR\|(1). .IP "\fB\-data\fR file_to_hash" 4 .IX Item "-data file_to_hash" -The data file for which the time stamp request needs to be +The data file for which the timestamp request needs to be created. stdin is the default if neither the \fB\-data\fR nor the \fB\-digest\fR parameter is specified. (Optional) .IP "\fB\-digest\fR digest_bytes" 4 @@ -289,7 +289,7 @@ The default is \s-1SHA\-1.\s0 (Optional) .IP "\fB\-tspolicy\fR object_id" 4 .IX Item "-tspolicy object_id" The policy that the client expects the \s-1TSA\s0 to use for creating the -time stamp token. Either the dotted \s-1OID\s0 notation or \s-1OID\s0 names defined +timestamp token. Either the dotted \s-1OID\s0 notation or \s-1OID\s0 names defined in the config file can be used. If no policy is requested the \s-1TSA\s0 will use its own default policy. (Optional) .IP "\fB\-no_nonce\fR" 4 @@ -304,7 +304,7 @@ The \s-1TSA\s0 is expected to include its signing certificate in the response. (Optional) .IP "\fB\-in\fR request.tsq" 4 .IX Item "-in request.tsq" -This option specifies a previously created time stamp request in \s-1DER\s0 +This option specifies a previously created timestamp request in \s-1DER\s0 format that will be printed into the output file. Useful when you need to examine the content of a request in human-readable format. (Optional) @@ -318,13 +318,13 @@ If this option is specified the output is human-readable text format instead of \s-1DER.\s0 (Optional) .SS "Time Stamp Response generation" .IX Subsection "Time Stamp Response generation" -A time stamp response (TimeStampResp) consists of a response status -and the time stamp token itself (ContentInfo), if the token generation was -successful. The \fB\-reply\fR command is for creating a time stamp -response or time stamp token based on a request and printing the +A timestamp response (TimeStampResp) consists of a response status +and the timestamp token itself (ContentInfo), if the token generation was +successful. The \fB\-reply\fR command is for creating a timestamp +response or timestamp token based on a request and printing the response/token in human-readable format. If \fB\-token_out\fR is not -specified the output is always a time stamp response (TimeStampResp), -otherwise it is a time stamp token (ContentInfo). +specified the output is always a timestamp response (TimeStampResp), +otherwise it is a timestamp token (ContentInfo). .IP "\fB\-config\fR configfile" 4 .IX Item "-config configfile" The configuration file to use. @@ -338,11 +338,11 @@ response generation. If not specified the default \s-1TSA\s0 section is used, see \fB\s-1CONFIGURATION FILE OPTIONS\s0\fR for details. (Optional) .IP "\fB\-queryfile\fR request.tsq" 4 .IX Item "-queryfile request.tsq" -The name of the file containing a \s-1DER\s0 encoded time stamp request. (Optional) +The name of the file containing a \s-1DER\s0 encoded timestamp request. (Optional) .IP "\fB\-passin\fR password_src" 4 .IX Item "-passin password_src" Specifies the password source for the private key of the \s-1TSA.\s0 See -\&\fB\s-1PASS PHRASE ARGUMENTS\s0\fR in \fBopenssl\fR\|(1). (Optional) +\&\*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). (Optional) .IP "\fB\-signer\fR tsa_cert.pem" 4 .IX Item "-signer tsa_cert.pem" The signer certificate of the \s-1TSA\s0 in \s-1PEM\s0 format. The \s-1TSA\s0 signing @@ -376,18 +376,18 @@ either in dotted notation or with its name. Overrides the \&\fBdefault_policy\fR config file option. (Optional) .IP "\fB\-in\fR response.tsr" 4 .IX Item "-in response.tsr" -Specifies a previously created time stamp response or time stamp token +Specifies a previously created timestamp response or timestamp token (if \fB\-token_in\fR is also specified) in \s-1DER\s0 format that will be written to the output file. This option does not require a request, it is useful e.g. when you need to examine the content of a response or -token or you want to extract the time stamp token from a response. If -the input is a token and the output is a time stamp response a default +token or you want to extract the timestamp token from a response. If +the input is a token and the output is a timestamp response a default \&'granted' status info is added to the token. (Optional) .IP "\fB\-token_in\fR" 4 .IX Item "-token_in" This flag can be used together with the \fB\-in\fR option and indicates -that the input is a \s-1DER\s0 encoded time stamp token (ContentInfo) instead -of a time stamp response (TimeStampResp). (Optional) +that the input is a \s-1DER\s0 encoded timestamp token (ContentInfo) instead +of a timestamp response (TimeStampResp). (Optional) .IP "\fB\-out\fR response.tsr" 4 .IX Item "-out response.tsr" The response is written to this file. The format and content of the @@ -395,7 +395,7 @@ file depends on other options (see \fB\-text\fR, \fB\-token_out\fR). The default stdout. (Optional) .IP "\fB\-token_out\fR" 4 .IX Item "-token_out" -The output is a time stamp token (ContentInfo) instead of time stamp +The output is a timestamp token (ContentInfo) instead of timestamp response (TimeStampResp). (Optional) .IP "\fB\-text\fR" 4 .IX Item "-text" @@ -409,8 +409,8 @@ thus initialising it if needed. The engine will then be set as the default for all available algorithms. Default is builtin. (Optional) .SS "Time Stamp Response verification" .IX Subsection "Time Stamp Response verification" -The \fB\-verify\fR command is for verifying if a time stamp response or time -stamp token is valid and matches a particular time stamp request or +The \fB\-verify\fR command is for verifying if a timestamp response or +timestamp token is valid and matches a particular timestamp request or data file. The \fB\-verify\fR command does not use the configuration file. .IP "\fB\-data\fR file_to_hash" 4 .IX Item "-data file_to_hash" @@ -426,16 +426,16 @@ specified in the token. The \fB\-data\fR and \fB\-queryfile\fR options must not specified with this one. (Optional) .IP "\fB\-queryfile\fR request.tsq" 4 .IX Item "-queryfile request.tsq" -The original time stamp request in \s-1DER\s0 format. The \fB\-data\fR and \fB\-digest\fR +The original timestamp request in \s-1DER\s0 format. The \fB\-data\fR and \fB\-digest\fR options must not be specified with this one. (Optional) .IP "\fB\-in\fR response.tsr" 4 .IX Item "-in response.tsr" -The time stamp response that needs to be verified in \s-1DER\s0 format. (Mandatory) +The timestamp response that needs to be verified in \s-1DER\s0 format. (Mandatory) .IP "\fB\-token_in\fR" 4 .IX Item "-token_in" This flag can be used together with the \fB\-in\fR option and indicates -that the input is a \s-1DER\s0 encoded time stamp token (ContentInfo) instead -of a time stamp response (TimeStampResp). (Optional) +that the input is a \s-1DER\s0 encoded timestamp token (ContentInfo) instead +of a timestamp response (TimeStampResp). (Optional) .IP "\fB\-CApath\fR trusted_cert_path" 4 .IX Item "-CApath trusted_cert_path" The name of the directory containing the trusted \s-1CA\s0 certificates of the @@ -494,7 +494,7 @@ See \fBca\fR\|(1) for description. (Optional) .IP "\fBserial\fR" 4 .IX Item "serial" The name of the file containing the hexadecimal serial number of the -last time stamp response created. This number is incremented by 1 for +last timestamp response created. This number is incremented by 1 for each response. If the file does not exist at the time of response generation a new file is created with serial number 1. (Mandatory) .IP "\fBcrypto_device\fR" 4 @@ -541,7 +541,7 @@ the components is missing zero is assumed for that field. (Optional) .IP "\fBclock_precision_digits\fR" 4 .IX Item "clock_precision_digits" Specifies the maximum number of digits, which represent the fraction of -seconds, that need to be included in the time field. The trailing zeroes +seconds, that need to be included in the time field. The trailing zeros must be removed from the time, so there might actually be fewer digits, or no fraction of seconds at all. Supported only on \s-1UNIX\s0 platforms. The maximum value is 6, default is 0. @@ -576,7 +576,7 @@ configuration file, e.g. the example configuration file openssl/apps/openssl.cnf will do. .SS "Time Stamp Request" .IX Subsection "Time Stamp Request" -To create a time stamp request for design1.txt with \s-1SHA\-1\s0 +To create a timestamp request for design1.txt with \s-1SHA\-1\s0 without nonce and policy and no certificate is required in the response: .PP .Vb 2 @@ -584,7 +584,7 @@ without nonce and policy and no certificate is required in the response: \& \-out design1.tsq .Ve .PP -To create a similar time stamp request with specifying the message imprint +To create a similar timestamp request with specifying the message imprint explicitly: .PP .Vb 2 @@ -598,7 +598,7 @@ To print the content of the previous request in human readable format: \& openssl ts \-query \-in design1.tsq \-text .Ve .PP -To create a time stamp request which includes the \s-1MD\-5\s0 digest +To create a timestamp request which includes the \s-1MD\-5\s0 digest of design2.txt, requests the signer certificate and nonce, specifies a policy id (assuming the tsa_policy1 name is defined in the \&\s-1OID\s0 section of the config file): @@ -623,7 +623,7 @@ below assume that cacert.pem contains the certificate of the \s-1CA,\s0 tsacert.pem is the signing certificate issued by cacert.pem and tsakey.pem is the private key of the \s-1TSA.\s0 .PP -To create a time stamp response for a request: +To create a timestamp response for a request: .PP .Vb 2 \& openssl ts \-reply \-queryfile design1.tsq \-inkey tsakey.pem \e @@ -636,31 +636,31 @@ If you want to use the settings in the config file you could just write: \& openssl ts \-reply \-queryfile design1.tsq \-out design1.tsr .Ve .PP -To print a time stamp reply to stdout in human readable format: +To print a timestamp reply to stdout in human readable format: .PP .Vb 1 \& openssl ts \-reply \-in design1.tsr \-text .Ve .PP -To create a time stamp token instead of time stamp response: +To create a timestamp token instead of timestamp response: .PP .Vb 1 \& openssl ts \-reply \-queryfile design1.tsq \-out design1_token.der \-token_out .Ve .PP -To print a time stamp token to stdout in human readable format: +To print a timestamp token to stdout in human readable format: .PP .Vb 1 \& openssl ts \-reply \-in design1_token.der \-token_in \-text \-token_out .Ve .PP -To extract the time stamp token from a response: +To extract the timestamp token from a response: .PP .Vb 1 \& openssl ts \-reply \-in design1.tsr \-out design1_token.der \-token_out .Ve .PP -To add 'granted' status info to a time stamp token thereby creating a +To add 'granted' status info to a timestamp token thereby creating a valid response: .PP .Vb 1 @@ -668,25 +668,25 @@ valid response: .Ve .SS "Time Stamp Verification" .IX Subsection "Time Stamp Verification" -To verify a time stamp reply against a request: +To verify a timestamp reply against a request: .PP .Vb 2 \& openssl ts \-verify \-queryfile design1.tsq \-in design1.tsr \e \& \-CAfile cacert.pem \-untrusted tsacert.pem .Ve .PP -To verify a time stamp reply that includes the certificate chain: +To verify a timestamp reply that includes the certificate chain: .PP .Vb 2 \& openssl ts \-verify \-queryfile design2.tsq \-in design2.tsr \e \& \-CAfile cacert.pem .Ve .PP -To verify a time stamp token against the original data file: +To verify a timestamp token against the original data file: openssl ts \-verify \-data design2.txt \-in design2.tsr \e \-CAfile cacert.pem .PP -To verify a time stamp token against a message imprint: +To verify a timestamp token against a message imprint: openssl ts \-verify \-digest b7e5d3f93198b38379852f2c04e78d73abdd0f4b \e \-in design2.tsr \-CAfile cacert.pem .PP @@ -694,7 +694,7 @@ You could also look at the 'test' directory for more examples. .SH "BUGS" .IX Header "BUGS" .IP "\(bu" 2 -No support for time stamps over \s-1SMTP,\s0 though it is quite easy +No support for timestamps over \s-1SMTP,\s0 though it is quite easy to implement an automatic e\-mail based \s-1TSA\s0 with \fBprocmail\fR\|(1) and \fBperl\fR\|(1). \s-1HTTP\s0 server support is provided in the form of a separate apache module. \s-1HTTP\s0 client support is provided by @@ -702,7 +702,7 @@ a separate apache module. \s-1HTTP\s0 client support is provided by .IP "\(bu" 2 The file containing the last serial number of the \s-1TSA\s0 is not locked when being read or written. This is a problem if more than one -instance of \fBopenssl\fR\|(1) is trying to create a time stamp +instance of \fBopenssl\fR\|(1) is trying to create a timestamp response at the same time. This is not an issue when using the apache server module, it does proper locking. .IP "\(bu" 2 @@ -719,7 +719,7 @@ test/testtsa). \&\fBconfig\fR\|(5) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/tsget.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/tsget.1 index 4129953d..5557153a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/tsget.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/tsget.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "TSGET 1" -.TH TSGET 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH TSGET 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -158,15 +158,15 @@ openssl\-tsget, tsget \- Time Stamping HTTP/HTTPS client [request]... .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \fBtsget\fR command can be used for sending a time stamp request, as -specified in \fB\s-1RFC 3161\s0\fR, to a time stamp server over \s-1HTTP\s0 or \s-1HTTPS\s0 and storing -the time stamp response in a file. This tool cannot be used for creating the +The \fBtsget\fR command can be used for sending a timestamp request, as +specified in \fB\s-1RFC 3161\s0\fR, to a timestamp server over \s-1HTTP\s0 or \s-1HTTPS\s0 and storing +the timestamp response in a file. This tool cannot be used for creating the requests and verifying responses, you can use the OpenSSL \fB\fBts\fB\|(1)\fR command to do that. \fBtsget\fR can send several requests to the server without closing the \s-1TCP\s0 connection if more than one requests are specified on the command line. .PP -The tool sends the following \s-1HTTP\s0 request for each time stamp request: +The tool sends the following \s-1HTTP\s0 request for each timestamp request: .PP .Vb 7 \& POST url HTTP/1.1 @@ -186,7 +186,7 @@ written to a file without any interpretation. .IX Header "OPTIONS" .IP "\fB\-h\fR server_url" 4 .IX Item "-h server_url" -The \s-1URL\s0 of the \s-1HTTP/HTTPS\s0 server listening for time stamp requests. +The \s-1URL\s0 of the \s-1HTTP/HTTPS\s0 server listening for timestamp requests. .IP "\fB\-e\fR extension" 4 .IX Item "-e extension" If the \fB\-o\fR option is not given this argument specifies the extension of the @@ -195,8 +195,8 @@ the input files. Default extension is '.tsr'. (Optional) .IP "\fB\-o\fR output" 4 .IX Item "-o output" This option can be specified only when just one request is sent to the -server. The time stamp response will be written to the given output file. '\-' -means standard output. In case of multiple time stamp requests or the absence +server. The timestamp response will be written to the given output file. '\-' +means standard output. In case of multiple timestamp requests or the absence of this argument the names of the output files will be derived from the names of the input files and the default or specified extension argument. (Optional) .IP "\fB\-v\fR" 4 @@ -245,7 +245,7 @@ MS-Windows, \fB,\fR for \s-1VMS\s0 and \fB:\fR for all other platforms. (Optiona The name of an \s-1EGD\s0 socket to get random data from. (Optional) .IP "[request]..." 4 .IX Item "[request]..." -List of files containing \fB\s-1RFC 3161\s0\fR DER-encoded time stamp requests. If no +List of files containing \fB\s-1RFC 3161\s0\fR DER-encoded timestamp requests. If no requests are specified only one request will be sent to the server and it will be read from the standard input. (Optional) .SH "ENVIRONMENT VARIABLES" @@ -256,18 +256,18 @@ arguments. .SH "EXAMPLES" .IX Header "EXAMPLES" The examples below presume that \fBfile1.tsq\fR and \fBfile2.tsq\fR contain valid -time stamp requests, tsa.opentsa.org listens at port 8080 for \s-1HTTP\s0 requests +timestamp requests, tsa.opentsa.org listens at port 8080 for \s-1HTTP\s0 requests and at port 8443 for \s-1HTTPS\s0 requests, the \s-1TSA\s0 service is available at the /tsa absolute path. .PP -Get a time stamp response for file1.tsq over \s-1HTTP,\s0 output is written to +Get a timestamp response for file1.tsq over \s-1HTTP,\s0 output is written to file1.tsr: .PP .Vb 1 \& tsget \-h http://tsa.opentsa.org:8080/tsa file1.tsq .Ve .PP -Get a time stamp response for file1.tsq and file2.tsq over \s-1HTTP\s0 showing +Get a timestamp response for file1.tsq and file2.tsq over \s-1HTTP\s0 showing progress, output is written to file1.reply and file2.reply respectively: .PP .Vb 2 @@ -275,7 +275,7 @@ progress, output is written to file1.reply and file2.reply respectively: \& file1.tsq file2.tsq .Ve .PP -Create a time stamp request, write it to file3.tsq, send it to the server and +Create a timestamp request, write it to file3.tsq, send it to the server and write the response to file3.tsr: .PP .Vb 3 @@ -284,7 +284,7 @@ write the response to file3.tsr: \& \-o file3.tsr .Ve .PP -Get a time stamp response for file1.tsq over \s-1HTTPS\s0 without client +Get a timestamp response for file1.tsq over \s-1HTTPS\s0 without client authentication: .PP .Vb 2 @@ -292,7 +292,7 @@ authentication: \& \-C cacerts.pem file1.tsq .Ve .PP -Get a time stamp response for file1.tsq over \s-1HTTPS\s0 with certificate-based +Get a timestamp response for file1.tsq over \s-1HTTPS\s0 with certificate-based client authentication (it will ask for the passphrase if client_key.pem is protected): .PP @@ -317,7 +317,7 @@ example: \&\fB\s-1RFC 3161\s0\fR .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/verify.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/verify.1 index 65b07720..51cb01bb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/verify.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/verify.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "VERIFY 1" -.TH VERIFY 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH VERIFY 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -222,8 +222,11 @@ current system time. \fBtimestamp\fR is the number of seconds since 01.01.1970 (\s-1UNIX\s0 time). .IP "\fB\-check_ss_sig\fR" 4 .IX Item "-check_ss_sig" -Verify the signature on the self-signed root \s-1CA.\s0 This is disabled by default -because it doesn't add any security. +Verify the signature of +the last certificate in a chain if the certificate is supposedly self-signed. +This is prohibited and will result in an error if it is a non-conforming \s-1CA\s0 +certificate with key usage restrictions not including the keyCertSign bit. +This verification is disabled by default because it doesn't add any security. .IP "\fB\-CRLfile file\fR" 4 .IX Item "-CRLfile file" The \fBfile\fR should contain one or more CRLs in \s-1PEM\s0 format. @@ -420,7 +423,7 @@ in \s-1PEM\s0 format. .SH "VERIFY OPERATION" .IX Header "VERIFY OPERATION" The \fBverify\fR program uses the same functions as the internal \s-1SSL\s0 and S/MIME -verification, therefore this description applies to these verify operations +verification, therefore, this description applies to these verify operations too. .PP There is one crucial difference between the verify operations performed @@ -466,10 +469,14 @@ should be trusted for the supplied purpose. For compatibility with previous versions of OpenSSL, a certificate with no trust settings is considered to be valid for all purposes. .PP -The final operation is to check the validity of the certificate chain. The validity -period is checked against the current system time and the notBefore and notAfter -dates in the certificate. The certificate signatures are also checked at this -point. +The final operation is to check the validity of the certificate chain. +For each element in the chain, including the root \s-1CA\s0 certificate, +the validity period as specified by the \f(CW\*(C`notBefore\*(C'\fR and \f(CW\*(C`notAfter\*(C'\fR fields +is checked against the current system time. +The \fB\-attime\fR flag may be used to use a reference time other than \*(L"now.\*(R" +The certificate signature is checked as well +(except for the signature of the typically self-signed root \s-1CA\s0 certificate, +which is verified only if the \fB\-check_ss_sig\fR option is given). .PP If all operations complete successfully then certificate is considered valid. If any operation fails then the certificate is not valid. @@ -772,7 +779,7 @@ The \fB\-issuer_checks\fR option is deprecated as of OpenSSL 1.1.0 and is silently ignored. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/version.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/version.1 index 909783b5..8fa721ed 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/version.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/version.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "VERSION 1" -.TH VERSION 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH VERSION 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/x509.1 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/x509.1 index a493207e..48570273 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/x509.1 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man1/x509.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509 1" -.TH X509 1 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509 1 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -350,7 +350,7 @@ Prints out the start and expiry dates of a certificate. .IP "\fB\-checkend arg\fR" 4 .IX Item "-checkend arg" Checks if the certificate expires within the next \fBarg\fR seconds and exits -non-zero if yes it will expire or zero if not. +nonzero if yes it will expire or zero if not. .IP "\fB\-fingerprint\fR" 4 .IX Item "-fingerprint" Calculates and outputs the digest of the \s-1DER\s0 encoded version of the entire @@ -447,7 +447,7 @@ Names and values of these options are algorithm-specific. .IP "\fB\-passin arg\fR" 4 .IX Item "-passin arg" The key password source. For more information about the format of \fBarg\fR -see the \fB\s-1PASS PHRASE ARGUMENTS\s0\fR section in \fBopenssl\fR\|(1). +see \*(L"Pass Phrase Options\*(R" in \fBopenssl\fR\|(1). .IP "\fB\-clrext\fR" 4 .IX Item "-clrext" Delete any extensions from a certificate. This option is used when a @@ -496,21 +496,25 @@ the \s-1CA\s0 certificate file. .IX Item "-CAserial filename" Sets the \s-1CA\s0 serial number file to use. .Sp -When the \fB\-CA\fR option is used to sign a certificate it uses a serial -number specified in a file. This file consists of one line containing -an even number of hex digits with the serial number to use. After each -use the serial number is incremented and written out to the file again. +When creating a certificate with this option, and with the \fB\-CA\fR option, +the certificate serial number is stored in the given file. +This file consists of one line containing +an even number of hex digits with the serial number used last time. +After reading this number, it is incremented and used, and the file is updated. .Sp The default filename consists of the \s-1CA\s0 certificate file base name with \&\*(L".srl\*(R" appended. For example if the \s-1CA\s0 certificate file is called \&\*(L"mycacert.pem\*(R" it expects to find a serial number file called \*(L"mycacert.srl\*(R". +.Sp +If the \fB\-CA\fR option is specified and neither <\-CAserial> or <\-CAcreateserial> +is given and the default serial number file does not exist, +a random number is generated; this is the recommended practice. .IP "\fB\-CAcreateserial\fR" 4 .IX Item "-CAcreateserial" -With this option the \s-1CA\s0 serial number file is created if it does not exist: -it will contain the serial number \*(L"02\*(R" and the certificate being signed will -have the 1 as its serial number. If the \fB\-CA\fR option is specified -and the serial number file does not exist a random number is generated; -this is the recommended practice. +With this option and the \fB\-CA\fR option +the \s-1CA\s0 serial number file is created if it does not exist. +A random number is generated, used for the certificate, +and saved into the serial number file determined as described above. .IP "\fB\-extfile filename\fR" 4 .IX Item "-extfile filename" File containing certificate extensions to use. If not specified then @@ -947,7 +951,7 @@ canonical version of the \s-1DN\s0 using \s-1SHA1.\s0 This means that any direct the old form must have their links rebuilt using \fBc_rehash\fR or similar. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ACCESS_DESCRIPTION_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ACCESS_DESCRIPTION_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ACCESS_DESCRIPTION_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ACCESS_DESCRIPTION_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ACCESS_DESCRIPTION_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ACCESS_DESCRIPTION_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS.3 index 7024dc09..5ca8912f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ADMISSIONS 3" -.TH ADMISSIONS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ADMISSIONS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_admissionAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_admissionAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_admissionAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_namingAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_namingAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_namingAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_professionInfos.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_professionInfos.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_get0_professionInfos.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_admissionAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_admissionAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_admissionAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_namingAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_namingAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_namingAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_professionInfos.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_professionInfos.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSIONS_set0_professionInfos.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_get0_admissionAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_get0_admissionAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_get0_admissionAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_get0_contentsOfAdmissions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_get0_contentsOfAdmissions.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_get0_contentsOfAdmissions.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_set0_admissionAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_set0_admissionAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_set0_admissionAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_set0_contentsOfAdmissions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_set0_contentsOfAdmissions.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ADMISSION_SYNTAX_set0_contentsOfAdmissions.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdOrRange_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdOrRange_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdOrRange_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdOrRange_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdOrRange_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdOrRange_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifierChoice_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifierChoice_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifierChoice_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifierChoice_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifierChoice_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifierChoice_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifiers_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifiers_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifiers_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifiers_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifiers_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASIdentifiers_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_get.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_get.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_get_int64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_get_int64.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_get_int64.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_set.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_set.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_set_int64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_set_int64.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_set_int64.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_to_BN.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_to_BN.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ENUMERATED_to_BN.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_adj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_adj.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_adj.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_check.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_check.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_print.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_print.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_set.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_set.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_set_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_set_string.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_GENERALIZEDTIME_set_string.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get_int64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get_int64.3 index 2aa52a5d..f726417c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get_int64.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get_int64.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_INTEGER_GET_INT64 3" -.TH ASN1_INTEGER_GET_INT64 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_INTEGER_GET_INT64 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -215,7 +215,7 @@ instead. .IX Header "NOTES" In general an \fB\s-1ASN1_INTEGER\s0\fR or \fB\s-1ASN1_ENUMERATED\s0\fR type can contain an integer of almost arbitrary size and so cannot always be represented by a C -\&\fBint64_t\fR type. However in many cases (for example version numbers) they +\&\fBint64_t\fR type. However, in many cases (for example version numbers) they represent small integers which can be more easily manipulated if converted to an appropriate C integer type. .SH "BUGS" @@ -252,7 +252,7 @@ of \s-1NULL\s0 if an error occurs. They can fail if the passed type is incorrect were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get_uint64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get_uint64.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_get_uint64.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set_int64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set_int64.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set_int64.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set_uint64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set_uint64.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_set_uint64.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_to_BN.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_to_BN.3 new file mode 120000 index 00000000..ce7ad542 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_INTEGER_to_BN.3 @@ -0,0 +1 @@ +ASN1_INTEGER_get_int64.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM_get.3 new file mode 120000 index 00000000..8dd4c6fb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM_get.3 @@ -0,0 +1 @@ +ASN1_ITEM_lookup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM_lookup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM_lookup.3 index 26d5d713..77b24dd6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM_lookup.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_ITEM_lookup.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_ITEM_LOOKUP 3" -.TH ASN1_ITEM_LOOKUP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_ITEM_LOOKUP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_OBJECT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_OBJECT_free.3 new file mode 120000 index 00000000..2831ce62 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_OBJECT_free.3 @@ -0,0 +1 @@ +ASN1_OBJECT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_OBJECT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_OBJECT_new.3 index bb047dcd..3c0e3233 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_OBJECT_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_OBJECT_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_OBJECT_NEW 3" -.TH ASN1_OBJECT_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_OBJECT_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE.3 new file mode 120000 index 00000000..43937a23 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE.3 @@ -0,0 +1 @@ +ASN1_STRING_TABLE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_add.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_add.3 index 0cc94413..e8844f34 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_add.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_add.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_STRING_TABLE_ADD 3" -.TH ASN1_STRING_TABLE_ADD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_STRING_TABLE_ADD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_cleanup.3 new file mode 120000 index 00000000..43937a23 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_cleanup.3 @@ -0,0 +1 @@ +ASN1_STRING_TABLE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_get.3 new file mode 120000 index 00000000..43937a23 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_TABLE_get.3 @@ -0,0 +1 @@ +ASN1_STRING_TABLE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_cmp.3 new file mode 120000 index 00000000..7d3a478c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_cmp.3 @@ -0,0 +1 @@ +ASN1_STRING_length.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_data.3 new file mode 120000 index 00000000..7d3a478c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_data.3 @@ -0,0 +1 @@ +ASN1_STRING_length.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_dup.3 new file mode 120000 index 00000000..7d3a478c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_dup.3 @@ -0,0 +1 @@ +ASN1_STRING_length.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_free.3 new file mode 120000 index 00000000..01828dc2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_free.3 @@ -0,0 +1 @@ +ASN1_STRING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_get0_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_get0_data.3 new file mode 120000 index 00000000..7d3a478c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_get0_data.3 @@ -0,0 +1 @@ +ASN1_STRING_length.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_length.3 index 8144eae1..bfaba608 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_length.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_length.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_STRING_LENGTH 3" -.TH ASN1_STRING_LENGTH 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_STRING_LENGTH 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -206,7 +206,7 @@ In general it cannot be assumed that the data returned by \fBASN1_STRING_data()\ is null terminated or does not contain embedded nulls. The actual format of the data will depend on the actual string type itself: for example for an IA5String the data will be \s-1ASCII,\s0 for a BMPString two bytes per -character in big endian format, and for an UTF8String it will be in \s-1UTF8\s0 format. +character in big endian format, and for a UTF8String it will be in \s-1UTF8\s0 format. .PP Similar care should be take to ensure the data is in the correct format when calling \fBASN1_STRING_set()\fR. @@ -234,7 +234,7 @@ negative value if an error occurred. \&\fBERR_get_error\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2002\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2002\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_new.3 index 67f58a9d..0deb970e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_STRING_NEW 3" -.TH ASN1_STRING_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_STRING_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print.3 new file mode 120000 index 00000000..34b46a9f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print.3 @@ -0,0 +1 @@ +ASN1_STRING_print_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print_ex.3 index d02ee537..19582a94 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print_ex.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print_ex.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_STRING_PRINT_EX 3" -.TH ASN1_STRING_PRINT_EX 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_STRING_PRINT_EX 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print_ex_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print_ex_fp.3 new file mode 120000 index 00000000..34b46a9f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_print_ex_fp.3 @@ -0,0 +1 @@ +ASN1_STRING_print_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_set.3 new file mode 120000 index 00000000..7d3a478c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_set.3 @@ -0,0 +1 @@ +ASN1_STRING_length.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_to_UTF8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_to_UTF8.3 new file mode 120000 index 00000000..7d3a478c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_to_UTF8.3 @@ -0,0 +1 @@ +ASN1_STRING_length.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_type.3 new file mode 120000 index 00000000..7d3a478c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_type.3 @@ -0,0 +1 @@ +ASN1_STRING_length.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_type_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_type_new.3 new file mode 120000 index 00000000..01828dc2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_STRING_type_new.3 @@ -0,0 +1 @@ +ASN1_STRING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_adj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_adj.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_adj.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_check.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_check.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_cmp_time_t.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_cmp_time_t.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_cmp_time_t.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_compare.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_compare.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_compare.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_diff.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_diff.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_diff.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_normalize.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_normalize.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_normalize.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_print.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_print.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set.3 index ef59456f..ce0f7d7d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_TIME_SET 3" -.TH ASN1_TIME_SET 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_TIME_SET 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -243,7 +243,7 @@ one or both (depending on the time difference) of \fB*pday\fR and \fB*psec\fR will be positive. If \fBto\fR represents a time earlier than \fBfrom\fR then one or both of \fB*pday\fR and \fB*psec\fR will be negative. If \fBto\fR and \fBfrom\fR represent the same time then \fB*pday\fR and \fB*psec\fR will both be zero. -If both \fB*pday\fR and \fB*psec\fR are non-zero they will always have the same +If both \fB*pday\fR and \fB*psec\fR are nonzero they will always have the same sign. The value of \fB*psec\fR will always be less than the number of seconds in a day. If \fBfrom\fR or \fBto\fR is \s-1NULL\s0 the current time is used. .PP @@ -291,7 +291,7 @@ format. .SH "BUGS" .IX Header "BUGS" \&\fBASN1_TIME_print()\fR, \fBASN1_UTCTIME_print()\fR and \fBASN1_GENERALIZEDTIME_print()\fR -do not print out the time zone: it either prints out \*(L"\s-1GMT\*(R"\s0 or nothing. But all +do not print out the timezone: it either prints out \*(L"\s-1GMT\*(R"\s0 or nothing. But all certificates complying with \s-1RFC5280\s0 et al use \s-1GMT\s0 anyway. .PP Use the \fBASN1_TIME_normalize()\fR function to normalize the time value before @@ -372,7 +372,7 @@ The \fBASN1_TIME_cmp_time_t()\fR function was added in OpenSSL 1.1.1. The \fBASN1_TIME_compare()\fR function was added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set_string.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set_string.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set_string_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set_string_X509.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_set_string_X509.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_to_generalizedtime.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_to_generalizedtime.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_to_generalizedtime.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_to_tm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_to_tm.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TIME_to_tm.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_cmp.3 new file mode 120000 index 00000000..bb687504 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_cmp.3 @@ -0,0 +1 @@ +ASN1_TYPE_get.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_get.3 index 7e4d4f53..dcaeb671 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_get.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_get.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_TYPE_GET 3" -.TH ASN1_TYPE_GET 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_TYPE_GET 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -169,7 +169,7 @@ up after the call. \&\fBASN1_TYPE_set1()\fR sets the value of \fBa\fR to \fBtype\fR a copy of \fBvalue\fR. .PP \&\fBASN1_TYPE_cmp()\fR compares \s-1ASN.1\s0 types \fBa\fR and \fBb\fR and returns 0 if -they are identical and non-zero otherwise. +they are identical and nonzero otherwise. .PP \&\fBASN1_TYPE_unpack_sequence()\fR attempts to parse the \s-1SEQUENCE\s0 present in \&\fBt\fR using the \s-1ASN.1\s0 structure \fBit\fR. If successful it returns a pointer @@ -197,12 +197,12 @@ length octets). .PP \&\fBASN1_TYPE_cmp()\fR may not return zero if two types are equivalent but have different encodings. For example the single content octet of the boolean \s-1TRUE\s0 -value under \s-1BER\s0 can have any non-zero encoding but \fBASN1_TYPE_cmp()\fR will +value under \s-1BER\s0 can have any nonzero encoding but \fBASN1_TYPE_cmp()\fR will only return zero if the values are the same. .PP If either or both of the parameters passed to \fBASN1_TYPE_cmp()\fR is \s-1NULL\s0 the -return value is non-zero. Technically if both parameters are \s-1NULL\s0 the two -types could be absent \s-1OPTIONAL\s0 fields and so should match, however passing +return value is nonzero. Technically if both parameters are \s-1NULL\s0 the two +types could be absent \s-1OPTIONAL\s0 fields and so should match, however, passing \&\s-1NULL\s0 values could also indicate a programming error (for example an unparsable type which returns \s-1NULL\s0) for types which do \fBnot\fR match. So applications should handle the case of two absent values separately. @@ -214,7 +214,7 @@ applications should handle the case of two absent values separately. .PP \&\fBASN1_TYPE_set1()\fR returns 1 for success and 0 for failure. .PP -\&\fBASN1_TYPE_cmp()\fR returns 0 if the types are identical and non-zero otherwise. +\&\fBASN1_TYPE_cmp()\fR returns 0 if the types are identical and nonzero otherwise. .PP \&\fBASN1_TYPE_unpack_sequence()\fR returns a pointer to an \s-1ASN.1\s0 structure or \&\s-1NULL\s0 on failure. diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_pack_sequence.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_pack_sequence.3 new file mode 120000 index 00000000..bb687504 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_pack_sequence.3 @@ -0,0 +1 @@ +ASN1_TYPE_get.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_set.3 new file mode 120000 index 00000000..bb687504 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_set.3 @@ -0,0 +1 @@ +ASN1_TYPE_get.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_set1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_set1.3 new file mode 120000 index 00000000..bb687504 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_set1.3 @@ -0,0 +1 @@ +ASN1_TYPE_get.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_unpack_sequence.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_unpack_sequence.3 new file mode 120000 index 00000000..bb687504 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_TYPE_unpack_sequence.3 @@ -0,0 +1 @@ +ASN1_TYPE_get.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_adj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_adj.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_adj.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_check.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_check.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_cmp_time_t.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_cmp_time_t.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_cmp_time_t.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_print.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_print.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_set.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_set.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_set_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_set_string.3 new file mode 120000 index 00000000..27bedc38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_UTCTIME_set_string.3 @@ -0,0 +1 @@ +ASN1_TIME_set.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_add_oid_module.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_add_oid_module.3 new file mode 120000 index 00000000..8619db58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_add_oid_module.3 @@ -0,0 +1 @@ +OPENSSL_load_builtin_modules.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_generate_nconf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_generate_nconf.3 index 6151bdf1..47ca5a50 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_generate_nconf.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_generate_nconf.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASN1_GENERATE_NCONF 3" -.TH ASN1_GENERATE_NCONF 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASN1_GENERATE_NCONF 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_generate_v3.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_generate_v3.3 new file mode 120000 index 00000000..0eda3cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_generate_v3.3 @@ -0,0 +1 @@ +ASN1_generate_nconf.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_tag2str.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_tag2str.3 new file mode 120000 index 00000000..34b46a9f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASN1_tag2str.3 @@ -0,0 +1 @@ +ASN1_STRING_print_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASRange_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASRange_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASRange_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASRange_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASRange_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASRange_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_clear_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_clear_fd.3 new file mode 120000 index 00000000..cb8dfcb7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_clear_fd.3 @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_free.3 new file mode 120000 index 00000000..cb8dfcb7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_free.3 @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_all_fds.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_all_fds.3 new file mode 120000 index 00000000..cb8dfcb7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_all_fds.3 @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_changed_fds.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_changed_fds.3 new file mode 120000 index 00000000..cb8dfcb7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_changed_fds.3 @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_fd.3 new file mode 120000 index 00000000..cb8dfcb7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_get_fd.3 @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_new.3 index dde3e6af..53d6d33a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASYNC_WAIT_CTX_NEW 3" -.TH ASYNC_WAIT_CTX_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASYNC_WAIT_CTX_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -183,7 +183,7 @@ job in \fB*fd\fR. The number of file descriptors returned will be stored in \&\fB*numfds\fR. It is the caller's responsibility to ensure that sufficient memory has been allocated in \fB*fd\fR to receive all the file descriptors. Calling \&\fBASYNC_WAIT_CTX_get_all_fds()\fR with a \s-1NULL\s0 \fBfd\fR value will return no file -descriptors but will still populate \fB*numfds\fR. Therefore application code is +descriptors but will still populate \fB*numfds\fR. Therefore, application code is typically expected to call this function twice: once to get the number of fds, and then again when sufficient memory has been allocated. If only one asynchronous engine is being used then normally this call will only ever return @@ -248,7 +248,7 @@ success or 0 on error. On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter -is included, commonly as one of the first included headers. Therefore +is included, commonly as one of the first included headers. Therefore, it is defined as an application developer's responsibility to include windows.h prior to async.h. .SH "SEE ALSO" @@ -262,7 +262,7 @@ windows.h prior to async.h. were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_set_wait_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_set_wait_fd.3 new file mode 120000 index 00000000..cb8dfcb7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_WAIT_CTX_set_wait_fd.3 @@ -0,0 +1 @@ +ASYNC_WAIT_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_block_pause.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_block_pause.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_block_pause.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_cleanup_thread.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_cleanup_thread.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_cleanup_thread.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_get_current_job.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_get_current_job.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_get_current_job.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_get_wait_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_get_wait_ctx.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_get_wait_ctx.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_init_thread.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_init_thread.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_init_thread.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_is_capable.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_is_capable.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_is_capable.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_pause_job.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_pause_job.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_pause_job.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_start_job.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_start_job.3 index 3fc57943..647f1d72 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_start_job.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_start_job.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ASYNC_START_JOB 3" -.TH ASYNC_START_JOB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ASYNC_START_JOB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -290,7 +290,7 @@ otherwise. On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter -is included, commonly as one of the first included headers. Therefore +is included, commonly as one of the first included headers. Therefore, it is defined as an application developer's responsibility to include windows.h prior to async.h. .SH "EXAMPLES" @@ -445,7 +445,7 @@ ASYNC_start_job, ASYNC_pause_job, ASYNC_get_current_job, \fBASYNC_get_wait_ctx() added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_unblock_pause.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_unblock_pause.3 new file mode 120000 index 00000000..e52deb60 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ASYNC_unblock_pause.3 @@ -0,0 +1 @@ +ASYNC_start_job.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_INFO_ACCESS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_INFO_ACCESS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_INFO_ACCESS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_INFO_ACCESS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_INFO_ACCESS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_INFO_ACCESS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_KEYID_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_KEYID_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_KEYID_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_KEYID_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_KEYID_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/AUTHORITY_KEYID_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BASIC_CONSTRAINTS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BASIC_CONSTRAINTS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BASIC_CONSTRAINTS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BASIC_CONSTRAINTS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BASIC_CONSTRAINTS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BASIC_CONSTRAINTS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_cbc_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_cbc_encrypt.3 new file mode 120000 index 00000000..30aec559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_cbc_encrypt.3 @@ -0,0 +1 @@ +BF_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_cfb64_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_cfb64_encrypt.3 new file mode 120000 index 00000000..30aec559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_cfb64_encrypt.3 @@ -0,0 +1 @@ +BF_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_decrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_decrypt.3 new file mode 120000 index 00000000..30aec559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_decrypt.3 @@ -0,0 +1 @@ +BF_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_ecb_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_ecb_encrypt.3 new file mode 120000 index 00000000..30aec559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_ecb_encrypt.3 @@ -0,0 +1 @@ +BF_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_encrypt.3 index 19fbc380..17b14d70 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_encrypt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_encrypt.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BF_ENCRYPT 3" -.TH BF_ENCRYPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BF_ENCRYPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -196,7 +196,7 @@ recipient needs to know what it was initialized with, or it won't be able to decrypt. Some programs and protocols simplify this, like \s-1SSH,\s0 where \&\fBivec\fR is simply initialized to zero. \&\fBBF_cbc_encrypt()\fR operates on data that is a multiple of 8 bytes long, while -\&\fBBF_cfb64_encrypt()\fR and \fBBF_ofb64_encrypt()\fR are used to encrypt an variable +\&\fBBF_cfb64_encrypt()\fR and \fBBF_ofb64_encrypt()\fR are used to encrypt a variable number of bytes (the amount does not have to be an exact multiple of 8). The purpose of the latter two is to simulate stream ciphers, and therefore, they need the parameter \fBnum\fR, which is a pointer to an integer where the current @@ -241,7 +241,7 @@ functions directly. \&\fBdes_modes\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_ofb64_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_ofb64_encrypt.3 new file mode 120000 index 00000000..30aec559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_ofb64_encrypt.3 @@ -0,0 +1 @@ +BF_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_options.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_options.3 new file mode 120000 index 00000000..30aec559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_options.3 @@ -0,0 +1 @@ +BF_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_set_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_set_key.3 new file mode 120000 index 00000000..30aec559 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BF_set_key.3 @@ -0,0 +1 @@ +BF_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR.3 index 900b8066..83967d46 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_ADDR 3" -.TH BIO_ADDR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_ADDR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -176,7 +176,7 @@ with routines that will fill it with information, such as \&\fBBIO_ADDR_clear()\fR clears any data held within the provided \fB\s-1BIO_ADDR\s0\fR and sets it back to an uninitialised state. .PP -\&\fBBIO_ADDR_rawmake()\fR takes a protocol \fBfamily\fR, an byte array of +\&\fBBIO_ADDR_rawmake()\fR takes a protocol \fBfamily\fR, a byte array of size \fBwherelen\fR with an address in network byte order pointed at by \fBwhere\fR and a port number in network byte order in \fBport\fR (except for the \fB\s-1AF_UNIX\s0\fR protocol family, where \fBport\fR is meaningless and @@ -245,7 +245,7 @@ information they should return isn't available. \&\fBBIO_connect\fR\|(3), \fBBIO_s_connect\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO.3 index f787744d..f607a5a4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_ADDRINFO 3" -.TH BIO_ADDRINFO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_ADDRINFO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -223,7 +223,7 @@ information they should return isn't available. .IX Header "NOTES" The \fBBIO_lookup_ex()\fR implementation uses the platform provided \fBgetaddrinfo()\fR function. On Linux it is known that specifying 0 for the protocol will not -return any \s-1SCTP\s0 based addresses when calling \fBgetaddrinfo()\fR. Therefore if an \s-1SCTP\s0 +return any \s-1SCTP\s0 based addresses when calling \fBgetaddrinfo()\fR. Therefore, if an \s-1SCTP\s0 address is required then the \fBprotocol\fR parameter to \fBBIO_lookup_ex()\fR should be explicitly set to \s-1IPPROTO_SCTP.\s0 The same may be true on other platforms. .SH "HISTORY" @@ -231,7 +231,7 @@ explicitly set to \s-1IPPROTO_SCTP.\s0 The same may be true on other platforms. The \fBBIO_lookup_ex()\fR function was added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_address.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_address.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_address.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_family.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_family.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_family.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_free.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_free.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_next.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_next.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_next.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_protocol.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_protocol.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_protocol.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_socktype.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_socktype.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDRINFO_socktype.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_clear.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_clear.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_clear.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_family.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_family.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_family.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_free.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_free.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_hostname_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_hostname_string.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_hostname_string.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_new.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_new.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_path_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_path_string.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_path_string.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawaddress.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawaddress.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawaddress.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawmake.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawmake.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawmake.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawport.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawport.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_rawport.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_service_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_service_string.3 new file mode 120000 index 00000000..9fddf1fa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ADDR_service_string.3 @@ -0,0 +1 @@ +BIO_ADDR.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_accept_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_accept_ex.3 new file mode 120000 index 00000000..2f67a67a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_accept_ex.3 @@ -0,0 +1 @@ +BIO_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_append_filename.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_append_filename.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_append_filename.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_bind.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_bind.3 new file mode 120000 index 00000000..2f67a67a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_bind.3 @@ -0,0 +1 @@ +BIO_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_ctrl.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_ctrl.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_fn.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_fn.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_fn_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_fn_ex.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_callback_fn_ex.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_closesocket.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_closesocket.3 new file mode 120000 index 00000000..2f67a67a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_closesocket.3 @@ -0,0 +1 @@ +BIO_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_connect.3 index 860f6da6..62212959 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_connect.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_connect.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_CONNECT 3" -.TH BIO_CONNECT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_CONNECT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -187,7 +187,7 @@ on the accepted socket. The flags are described in \*(L"\s-1FLAGS\*(R"\s0 below Enables regular sending of keep-alive messages. .IP "\s-1BIO_SOCK_NONBLOCK\s0" 4 .IX Item "BIO_SOCK_NONBLOCK" -Sets the socket to non-blocking mode. +Sets the socket to nonblocking mode. .IP "\s-1BIO_SOCK_NODELAY\s0" 4 .IX Item "BIO_SOCK_NODELAY" Corresponds to \fB\s-1TCP_NODELAY\s0\fR, and disables the Nagle algorithm. With @@ -232,7 +232,7 @@ error. Use the functions described above instead. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl.3 index 5a641f8d..d9add5e0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_CTRL 3" -.TH BIO_CTRL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_CTRL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -149,7 +149,7 @@ BIO_ctrl, BIO_callback_ctrl, BIO_ptr_ctrl, BIO_int_ctrl, BIO_reset, BIO_seek, BI \& \& long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg); \& long BIO_callback_ctrl(BIO *b, int cmd, BIO_info_cb *cb); -\& char *BIO_ptr_ctrl(BIO *bp, int cmd, long larg); +\& void *BIO_ptr_ctrl(BIO *bp, int cmd, long larg); \& long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg); \& \& int BIO_reset(BIO *b); @@ -240,7 +240,7 @@ Filter BIOs if they do not internally handle a particular \fBBIO_ctrl()\fR operation usually pass the operation to the next \s-1BIO\s0 in the chain. This often means there is no need to locate the required \s-1BIO\s0 for a particular operation, it can be called on a chain and it will -be automatically passed to the relevant \s-1BIO.\s0 However this can cause +be automatically passed to the relevant \s-1BIO.\s0 However, this can cause unexpected results: for example no current filter BIOs implement \&\fBBIO_seek()\fR, but this may still succeed if the chain ends in a \s-1FILE\s0 or file descriptor \s-1BIO.\s0 @@ -255,7 +255,7 @@ supported, if an error occurred, if \s-1EOF\s0 has not been reached and in the case of \fBBIO_seek()\fR on a file \s-1BIO\s0 for a successful operation. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_get_read_request.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_get_read_request.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_get_read_request.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_get_write_guarantee.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_get_write_guarantee.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_get_write_guarantee.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_pending.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_pending.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_pending.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_reset_read_request.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_reset_read_request.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_reset_read_request.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_wpending.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_wpending.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ctrl_wpending.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_debug_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_debug_callback.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_debug_callback.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_destroy_bio_pair.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_destroy_bio_pair.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_destroy_bio_pair.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_accept.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_accept.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_accept.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_connect.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_connect.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_handshake.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_handshake.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_do_handshake.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_eof.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_eof.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_eof.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_base64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_base64.3 index c08d55d1..1489e256 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_base64.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_base64.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_F_BASE64 3" -.TH BIO_F_BASE64 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_F_BASE64 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -156,13 +156,25 @@ any data read through it. .PP Base64 BIOs do not support \fBBIO_gets()\fR or \fBBIO_puts()\fR. .PP +For writing, output is by default divided to lines of length 64 +characters and there is always a newline at the end of output. +.PP +For reading, first line should be at most 1024 +characters long. If it is longer then it is ignored completely. +Other input lines can be of any length. There must be a newline +at the end of input. +.PP +This behavior can be changed with \s-1BIO_FLAGS_BASE64_NO_NL\s0 flag. +.PP \&\fBBIO_flush()\fR on a base64 \s-1BIO\s0 that is being written through is used to signal that no more data is to be encoded: this is used to flush the final block through the \s-1BIO.\s0 .PP -The flag \s-1BIO_FLAGS_BASE64_NO_NL\s0 can be set with \fBBIO_set_flags()\fR -to encode the data all on one line or expect the data to be all -on one line. +The flag \s-1BIO_FLAGS_BASE64_NO_NL\s0 can be set with \fBBIO_set_flags()\fR. +For writing, it causes all data to be written on one line without +newline at the end. +For reading, it expects the data to be all on one line (with or +without a trailing newline). .SH "NOTES" .IX Header "NOTES" Because of the format of base64 encoding the end of the encoded @@ -215,7 +227,7 @@ There should be some way of specifying a test that the \s-1BIO\s0 can perform to reliably determine \s-1EOF\s0 (for example a \s-1MIME\s0 boundary). .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_buffer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_buffer.3 index 696ccb70..1d38de85 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_buffer.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_buffer.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_F_BUFFER 3" -.TH BIO_F_BUFFER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_F_BUFFER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_cipher.3 index adebf229..df933499 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_cipher.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_cipher.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_F_CIPHER 3" -.TH BIO_F_CIPHER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_F_CIPHER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_md.3 index c9cb4f11..74f51238 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_md.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_md.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_F_MD 3" -.TH BIO_F_MD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_F_MD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_null.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_null.3 index 177aef4a..6df81855 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_null.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_null.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_F_NULL 3" -.TH BIO_F_NULL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_F_NULL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_ssl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_ssl.3 index 797b762b..277ba0eb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_ssl.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_f_ssl.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_F_SSL 3" -.TH BIO_F_SSL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_F_SSL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -184,26 +184,26 @@ The \s-1SSL BIO\s0 is then reset to the initial accept or connect state. If the close flag is set when an \s-1SSL BIO\s0 is freed then the internal \&\s-1SSL\s0 structure is also freed using \fBSSL_free()\fR. .PP -\&\fBBIO_set_ssl()\fR sets the internal \s-1SSL\s0 pointer of \s-1BIO\s0 \fBb\fR to \fBssl\fR using +\&\fBBIO_set_ssl()\fR sets the internal \s-1SSL\s0 pointer of \s-1SSL BIO\s0 \fBb\fR to \fBssl\fR using the close flag \fBc\fR. .PP -\&\fBBIO_get_ssl()\fR retrieves the \s-1SSL\s0 pointer of \s-1BIO\s0 \fBb\fR, it can then be +\&\fBBIO_get_ssl()\fR retrieves the \s-1SSL\s0 pointer of \s-1SSL BIO\s0 \fBb\fR, it can then be manipulated using the standard \s-1SSL\s0 library functions. .PP \&\fBBIO_set_ssl_mode()\fR sets the \s-1SSL BIO\s0 mode to \fBclient\fR. If \fBclient\fR is 1 client mode is set. If \fBclient\fR is 0 server mode is set. .PP -\&\fBBIO_set_ssl_renegotiate_bytes()\fR sets the renegotiate byte count +\&\fBBIO_set_ssl_renegotiate_bytes()\fR sets the renegotiate byte count of \s-1SSL BIO\s0 \fBb\fR to \fBnum\fR. When set after every \fBnum\fR bytes of I/O (read and write) the \s-1SSL\s0 session is automatically renegotiated. \fBnum\fR must be at least 512 bytes. .PP -\&\fBBIO_set_ssl_renegotiate_timeout()\fR sets the renegotiate timeout to -\&\fBseconds\fR. When the renegotiate timeout elapses the session is -automatically renegotiated. +\&\fBBIO_set_ssl_renegotiate_timeout()\fR sets the renegotiate timeout of \s-1SSL BIO\s0 \fBb\fR +to \fBseconds\fR. +When the renegotiate timeout elapses the session is automatically renegotiated. .PP \&\fBBIO_get_num_renegotiates()\fR returns the total number of session -renegotiations due to I/O or timeout. +renegotiations due to I/O or timeout of \s-1SSL BIO\s0 \fBb\fR. .PP \&\fBBIO_new_ssl()\fR allocates an \s-1SSL BIO\s0 using \s-1SSL_CTX\s0 \fBctx\fR and using client mode if \fBclient\fR is non zero. @@ -212,8 +212,7 @@ client mode if \fBclient\fR is non zero. \&\s-1SSL BIO\s0 (using \fBctx\fR) followed by a connect \s-1BIO.\s0 .PP \&\fBBIO_new_buffer_ssl_connect()\fR creates a new \s-1BIO\s0 chain consisting -of a buffering \s-1BIO,\s0 an \s-1SSL BIO\s0 (using \fBctx\fR) and a connect -\&\s-1BIO.\s0 +of a buffering \s-1BIO,\s0 an \s-1SSL BIO\s0 (using \fBctx\fR), and a connect \s-1BIO.\s0 .PP \&\fBBIO_ssl_copy_session_id()\fR copies an \s-1SSL\s0 session id between \&\s-1BIO\s0 chains \fBfrom\fR and \fBto\fR. It does this by locating the @@ -313,11 +312,6 @@ unencrypted example in \fBBIO_s_connect\fR\|(3). \& ERR_print_errors_fp(stderr); \& exit(1); \& } -\& if (BIO_do_handshake(sbio) <= 0) { -\& fprintf(stderr, "Error establishing SSL connection\en"); -\& ERR_print_errors_fp(stderr); -\& exit(1); -\& } \& \& /* XXX Could examine ssl here to get connection info */ \& @@ -427,7 +421,7 @@ included workarounds for this bug (e.g. freeing BIOs more than once) should be modified to handle this fix or they may free up an already freed \s-1BIO.\s0 .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_find_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_find_type.3 index 2ec0d108..8c61ee24 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_find_type.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_find_type.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_FIND_TYPE 3" -.TH BIO_FIND_TYPE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_FIND_TYPE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_flush.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_flush.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_flush.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_free.3 new file mode 120000 index 00000000..9161f01c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_free.3 @@ -0,0 +1 @@ +BIO_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_free_all.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_free_all.3 new file mode 120000 index 00000000..9161f01c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_free_all.3 @@ -0,0 +1 @@ +BIO_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_ip_family.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_ip_family.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_ip_family.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_name.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_name.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_port.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_port.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_accept_port.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_bind_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_bind_mode.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_bind_mode.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_buffer_num_lines.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_buffer_num_lines.3 new file mode 120000 index 00000000..977161cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_buffer_num_lines.3 @@ -0,0 +1 @@ +BIO_f_buffer.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback_arg.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback_arg.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback_ex.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_callback_ex.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_cipher_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_cipher_ctx.3 new file mode 120000 index 00000000..0d99524e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_cipher_ctx.3 @@ -0,0 +1 @@ +BIO_f_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_cipher_status.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_cipher_status.3 new file mode 120000 index 00000000..0d99524e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_cipher_status.3 @@ -0,0 +1 @@ +BIO_f_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_close.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_close.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_close.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_address.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_address.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_address.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_hostname.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_hostname.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_hostname.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_ip_family.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_ip_family.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_ip_family.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_port.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_port.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_conn_port.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_data.3 index 949d5223..770ed0d7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_data.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_data.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_GET_DATA 3" -.TH BIO_GET_DATA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_GET_DATA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -161,7 +161,7 @@ the \s-1BIO.\s0 This data can subsequently be retrieved via a call to \fBBIO_get This can be used by custom BIOs for storing implementation specific information. .PP The \fBBIO_set_init()\fR function sets the value of the \s-1BIO\s0's \*(L"init\*(R" flag to indicate -whether initialisation has been completed for this \s-1BIO\s0 or not. A non-zero value +whether initialisation has been completed for this \s-1BIO\s0 or not. A nonzero value indicates that initialisation is complete, whilst zero indicates that it is not. Often initialisation will complete during initial construction of the \s-1BIO.\s0 For some BIOs however, initialisation may not complete until after additional steps @@ -187,7 +187,7 @@ bio, BIO_meth_new The functions described here were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ex_new_index.3 index 532d0414..b9ba509d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ex_new_index.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ex_new_index.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_GET_EX_NEW_INDEX 3" -.TH BIO_GET_EX_NEW_INDEX 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_GET_EX_NEW_INDEX 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_fd.3 new file mode 120000 index 00000000..47d0cb80 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_fd.3 @@ -0,0 +1 @@ +BIO_s_fd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_fp.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_fp.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_info_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_info_callback.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_info_callback.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_init.3 new file mode 120000 index 00000000..1bbda12f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_init.3 @@ -0,0 +1 @@ +BIO_get_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_md.3 new file mode 120000 index 00000000..264a7c3b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_md.3 @@ -0,0 +1 @@ +BIO_f_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_md_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_md_ctx.3 new file mode 120000 index 00000000..264a7c3b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_md_ctx.3 @@ -0,0 +1 @@ +BIO_f_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_mem_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_mem_data.3 new file mode 120000 index 00000000..72cb355b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_mem_data.3 @@ -0,0 +1 @@ +BIO_s_mem.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_mem_ptr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_mem_ptr.3 new file mode 120000 index 00000000..72cb355b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_mem_ptr.3 @@ -0,0 +1 @@ +BIO_s_mem.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_new_index.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_new_index.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_num_renegotiates.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_num_renegotiates.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_num_renegotiates.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_peer_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_peer_name.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_peer_name.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_peer_port.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_peer_port.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_peer_port.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_read_request.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_read_request.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_read_request.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_retry_BIO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_retry_BIO.3 new file mode 120000 index 00000000..3f3f6d3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_retry_BIO.3 @@ -0,0 +1 @@ +BIO_should_retry.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_retry_reason.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_retry_reason.3 new file mode 120000 index 00000000..3f3f6d3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_retry_reason.3 @@ -0,0 +1 @@ +BIO_should_retry.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_shutdown.3 new file mode 120000 index 00000000..1bbda12f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_shutdown.3 @@ -0,0 +1 @@ +BIO_get_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ssl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ssl.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_ssl.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_write_buf_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_write_buf_size.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_write_buf_size.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_write_guarantee.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_write_guarantee.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_get_write_guarantee.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_gets.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_gets.3 new file mode 120000 index 00000000..899127af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_gets.3 @@ -0,0 +1 @@ +BIO_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_hostserv_priorities.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_hostserv_priorities.3 new file mode 120000 index 00000000..7c29d2a9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_hostserv_priorities.3 @@ -0,0 +1 @@ +BIO_parse_hostserv.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_info_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_info_cb.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_info_cb.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_int_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_int_ctrl.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_int_ctrl.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_listen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_listen.3 new file mode 120000 index 00000000..2f67a67a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_listen.3 @@ -0,0 +1 @@ +BIO_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup_ex.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup_ex.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup_type.3 new file mode 120000 index 00000000..2d8ef3b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_lookup_type.3 @@ -0,0 +1 @@ +BIO_ADDRINFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_make_bio_pair.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_make_bio_pair.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_make_bio_pair.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_free.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_free.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_callback_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_callback_ctrl.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_callback_ctrl.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_create.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_create.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_create.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_ctrl.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_ctrl.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_destroy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_destroy.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_destroy.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_gets.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_gets.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_gets.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_puts.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_puts.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_puts.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_read.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_read.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_read.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_read_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_read_ex.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_read_ex.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_write.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_write.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_write.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_write_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_write_ex.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_get_write_ex.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_new.3 index afef7268..e5ac1b6b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_METH_NEW 3" -.TH BIO_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_callback_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_callback_ctrl.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_callback_ctrl.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_create.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_create.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_create.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_ctrl.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_ctrl.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_destroy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_destroy.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_destroy.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_gets.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_gets.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_gets.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_puts.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_puts.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_puts.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_read.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_read.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_read.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_read_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_read_ex.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_read_ex.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_write.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_write.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_write.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_write_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_write_ex.3 new file mode 120000 index 00000000..1ec0db88 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_meth_set_write_ex.3 @@ -0,0 +1 @@ +BIO_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_method_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_method_type.3 new file mode 120000 index 00000000..3759841a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_method_type.3 @@ -0,0 +1 @@ +BIO_find_type.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new.3 index a2f9290d..75efb8b3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_NEW 3" -.TH BIO_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_CMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_CMS.3 index 8a468cfd..9c8d77b1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_CMS.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_CMS.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_NEW_CMS 3" -.TH BIO_NEW_CMS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_NEW_CMS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_accept.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_accept.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_accept.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_bio_pair.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_bio_pair.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_bio_pair.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_buffer_ssl_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_buffer_ssl_connect.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_buffer_ssl_connect.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_connect.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_connect.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_fd.3 new file mode 120000 index 00000000..47d0cb80 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_fd.3 @@ -0,0 +1 @@ +BIO_s_fd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_file.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_file.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_fp.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_fp.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_mem_buf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_mem_buf.3 new file mode 120000 index 00000000..72cb355b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_mem_buf.3 @@ -0,0 +1 @@ +BIO_s_mem.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_socket.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_socket.3 new file mode 120000 index 00000000..56005f8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_socket.3 @@ -0,0 +1 @@ +BIO_s_socket.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_ssl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_ssl.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_ssl.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_ssl_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_ssl_connect.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_new_ssl_connect.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_next.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_next.3 new file mode 120000 index 00000000..3759841a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_next.3 @@ -0,0 +1 @@ +BIO_find_type.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_parse_hostserv.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_parse_hostserv.3 index f344b875..661d8efc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_parse_hostserv.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_parse_hostserv.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_PARSE_HOSTSERV 3" -.TH BIO_PARSE_HOSTSERV 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_PARSE_HOSTSERV 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -154,10 +154,10 @@ BIO_hostserv_priorities, BIO_parse_hostserv \&\- utility routines to parse a sta .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fBBIO_parse_hostserv()\fR will parse the information given in \fBhostserv\fR, -create strings with the host name and service name and give those +create strings with the hostname and service name and give those back via \fBhost\fR and \fBservice\fR. Those will need to be freed after they are used. \fBhostserv_prio\fR helps determine if \fBhostserv\fR shall -be interpreted primarily as a host name or a service name in ambiguous +be interpreted primarily as a hostname or a service name in ambiguous cases. .PP The syntax the \fBBIO_parse_hostserv()\fR recognises is: @@ -204,7 +204,7 @@ and \fBhostserv_prio\fR, as follows: \&\s-1\fBBIO_ADDRINFO\s0\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_pending.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_pending.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_pending.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_pop.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_pop.3 new file mode 120000 index 00000000..e6846c7e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_pop.3 @@ -0,0 +1 @@ +BIO_push.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_printf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_printf.3 index 3d981a14..81b9dfda 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_printf.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_printf.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_PRINTF 3" -.TH BIO_PRINTF 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_PRINTF 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ptr_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ptr_ctrl.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ptr_ctrl.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_push.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_push.3 index e1386735..28c6d208 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_push.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_push.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_PUSH 3" -.TH BIO_PUSH 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_PUSH 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -145,22 +145,27 @@ BIO_push, BIO_pop, BIO_set_next \- add and remove BIOs from a chain .Vb 1 \& #include \& -\& BIO *BIO_push(BIO *b, BIO *append); +\& BIO *BIO_push(BIO *b, BIO *next); \& BIO *BIO_pop(BIO *b); \& void BIO_set_next(BIO *b, BIO *next); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \fBBIO_push()\fR function appends the \s-1BIO\s0 \fBappend\fR to \fBb\fR, it returns -\&\fBb\fR. +\&\fBBIO_push()\fR pushes \fIb\fR on \fInext\fR. +If \fIb\fR is \s-1NULL\s0 the function does nothing and returns \fInext\fR. +Otherwise it prepends \fIb\fR, which may be a single \s-1BIO\s0 or a chain of BIOs, +to \fInext\fR (unless \fInext\fR is \s-1NULL\s0). +It then makes a control call on \fIb\fR and returns \fIb\fR. .PP -\&\fBBIO_pop()\fR removes the \s-1BIO\s0 \fBb\fR from a chain and returns the next \s-1BIO\s0 -in the chain, or \s-1NULL\s0 if there is no next \s-1BIO.\s0 The removed \s-1BIO\s0 then -becomes a single \s-1BIO\s0 with no association with the original chain, -it can thus be freed or attached to a different chain. +\&\fBBIO_pop()\fR removes the \s-1BIO\s0 \fIb\fR from any chain is is part of. +If \fIb\fR is \s-1NULL\s0 the function does nothing and returns \s-1NULL.\s0 +Otherwise it makes a control call on \fIb\fR and +returns the next \s-1BIO\s0 in the chain, or \s-1NULL\s0 if there is no next \s-1BIO.\s0 +The removed \s-1BIO\s0 becomes a single \s-1BIO\s0 with no association with +the original chain, it can thus be freed or be made part of a different chain. .PP \&\fBBIO_set_next()\fR replaces the existing next \s-1BIO\s0 in a chain with the \s-1BIO\s0 pointed to -by \fBnext\fR. The new chain may include some of the same BIOs from the old chain +by \fInext\fR. The new chain may include some of the same BIOs from the old chain or it may be completely different. .SH "NOTES" .IX Header "NOTES" @@ -169,18 +174,19 @@ joins two \s-1BIO\s0 chains whereas \fBBIO_pop()\fR deletes a single \s-1BIO\s0 the deleted \s-1BIO\s0 does not need to be at the end of a chain. .PP The process of calling \fBBIO_push()\fR and \fBBIO_pop()\fR on a \s-1BIO\s0 may have additional -consequences (a control call is made to the affected BIOs) any effects will -be noted in the descriptions of individual BIOs. +consequences (a control call is made to the affected BIOs). +Any effects will be noted in the descriptions of individual BIOs. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBBIO_push()\fR returns the end of the chain, \fBb\fR. +\&\fBBIO_push()\fR returns the head of the chain, +which usually is \fIb\fR, or \fInext\fR if \fIb\fR is \s-1NULL.\s0 .PP -\&\fBBIO_pop()\fR returns the next \s-1BIO\s0 in the chain, or \s-1NULL\s0 if there is no next -\&\s-1BIO.\s0 +\&\fBBIO_pop()\fR returns the next \s-1BIO\s0 in the chain, +or \s-1NULL\s0 if there is no next \s-1BIO.\s0 .SH "EXAMPLES" .IX Header "EXAMPLES" -For these examples suppose \fBmd1\fR and \fBmd2\fR are digest BIOs, \fBb64\fR is -a base64 \s-1BIO\s0 and \fBf\fR is a file \s-1BIO.\s0 +For these examples suppose \fImd1\fR and \fImd2\fR are digest BIOs, +\&\fIb64\fR is a base64 \s-1BIO\s0 and \fIf\fR is a file \s-1BIO.\s0 .PP If the call: .PP @@ -188,26 +194,29 @@ If the call: \& BIO_push(b64, f); .Ve .PP -is made then the new chain will be \fBb64\-f\fR. After making the calls +is made then the new chain will be \fIb64\-f\fR. After making the calls .PP .Vb 2 \& BIO_push(md2, b64); \& BIO_push(md1, md2); .Ve .PP -the new chain is \fBmd1\-md2\-b64\-f\fR. Data written to \fBmd1\fR will be digested -by \fBmd1\fR and \fBmd2\fR, \fBbase64\fR encoded and written to \fBf\fR. +the new chain is \fImd1\-md2\-b64\-f\fR. Data written to \fImd1\fR will be digested +by \fImd1\fR and \fImd2\fR, base64 encoded, and finally written to \fIf\fR. .PP It should be noted that reading causes data to pass in the reverse -direction, that is data is read from \fBf\fR, base64 \fBdecoded\fR and digested -by \fBmd1\fR and \fBmd2\fR. If the call: +direction, that is data is read from \fIf\fR, base64 decoded, +and digested by \fImd2\fR and then \fImd1\fR. +.PP +The call: .PP .Vb 1 \& BIO_pop(md2); .Ve .PP -The call will return \fBb64\fR and the new chain will be \fBmd1\-b64\-f\fR data can -be written to \fBmd1\fR as before. +will return \fIb64\fR and the new chain will be \fImd1\-b64\-f\fR. +Data can be written to and read from \fImd1\fR as before, +except that \fImd2\fR will no more be applied. .SH "SEE ALSO" .IX Header "SEE ALSO" bio @@ -216,7 +225,7 @@ bio The \fBBIO_set_next()\fR function was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_puts.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_puts.3 new file mode 120000 index 00000000..899127af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_puts.3 @@ -0,0 +1 @@ +BIO_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read.3 index 1dad2173..f59e781b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_READ 3" -.TH BIO_READ 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_READ 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -189,7 +189,7 @@ the operation is not implemented in the specific \s-1BIO\s0 type. The trailing .SH "NOTES" .IX Header "NOTES" A 0 or \-1 return is not necessarily an indication of an error. In -particular when the source/sink is non-blocking or of a certain type +particular when the source/sink is nonblocking or of a certain type it may merely be an indication that no data is currently available and that the application should retry the operation later. .PP @@ -218,7 +218,7 @@ to the chain. keep the '\en' at the end of the line in the buffer. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read_ex.3 new file mode 120000 index 00000000..899127af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read_ex.3 @@ -0,0 +1 @@ +BIO_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read_filename.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read_filename.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_read_filename.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_reset.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_reset.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_reset.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_retry_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_retry_type.3 new file mode 120000 index 00000000..3f3f6d3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_retry_type.3 @@ -0,0 +1 @@ +BIO_should_retry.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_rw_filename.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_rw_filename.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_rw_filename.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_accept.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_accept.3 index b65d29f4..4ceb9fd1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_accept.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_accept.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_ACCEPT 3" -.TH BIO_S_ACCEPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_ACCEPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -277,7 +277,7 @@ however because the accept \s-1BIO\s0 will still accept additional incoming connections. This can be resolved by using \fBBIO_pop()\fR (see above) and freeing up the accept \s-1BIO\s0 after the initial connection. .PP -If the underlying accept socket is non-blocking and \fBBIO_do_accept()\fR is +If the underlying accept socket is nonblocking and \fBBIO_do_accept()\fR is called to await an incoming connection it is possible for \&\fBBIO_should_io_special()\fR with the reason \s-1BIO_RR_ACCEPT.\s0 If this happens then it is an indication that an accept attempt would block: the application @@ -357,7 +357,7 @@ down each and finally closes both down. .Ve .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_bio.3 index 1ef52461..d2a442d3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_bio.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_bio.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_BIO 3" -.TH BIO_S_BIO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_BIO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -276,7 +276,7 @@ without having to go through the SSL-interface. \& ... \& BIO_new_bio_pair(&internal_bio, 0, &network_bio, 0); \& SSL_set_bio(ssl, internal_bio, internal_bio); -\& SSL_operations(); /* e.g SSL_read and SSL_write */ +\& SSL_operations(); /* e.g. SSL_read and SSL_write */ \& ... \& \& application | TLS\-engine @@ -300,7 +300,7 @@ without having to go through the SSL-interface. .Ve .PP As the \s-1BIO\s0 pair will only buffer the data and never directly access the -connection, it behaves non-blocking and will return as soon as the write +connection, it behaves nonblocking and will return as soon as the write buffer is full or the read buffer is drained. Then the application has to flush the write buffer and/or fill the read buffer. .PP @@ -321,7 +321,7 @@ the peer might be waiting for the data before being able to continue. \&\fBBIO_should_retry\fR\|(3), \fBBIO_read_ex\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_connect.3 index 3130dfbd..78ad4015 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_connect.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_connect.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_CONNECT 3" -.TH BIO_S_CONNECT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_CONNECT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -238,7 +238,7 @@ If blocking I/O is set then a non positive return value from any I/O call is caused by an error condition, although a zero return will normally mean that the connection was closed. .PP -If the port name is supplied as part of the host name then this will +If the port name is supplied as part of the hostname then this will override any value set with \fBBIO_set_conn_port()\fR. This may be undesirable if the application does not wish to allow connection to arbitrary ports. This can be avoided by checking for the presence of the ':' @@ -330,7 +330,7 @@ were removed in OpenSSL 1.1.0. Use \fBBIO_set_conn_address()\fR and \fBBIO_get_conn_address()\fR instead. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_fd.3 index 54811459..cc3a78ee 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_fd.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_fd.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_FD 3" -.TH BIO_S_FD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_FD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_file.3 index e6f478f9..c815902d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_file.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_file.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_FILE 3" -.TH BIO_S_FILE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_FILE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -212,7 +212,7 @@ in stdio behaviour will be mirrored by the corresponding \s-1BIO.\s0 .PP On Windows BIO_new_files reserves for the filename argument to be \&\s-1UTF\-8\s0 encoded. In other words if you have to make it work in multi\- -lingual environment, encode file names in \s-1UTF\-8.\s0 +lingual environment, encode filenames in \s-1UTF\-8.\s0 .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBBIO_s_file()\fR returns the file \s-1BIO\s0 method. @@ -295,7 +295,7 @@ occurred this differs from other types of \s-1BIO\s0 which will typically return \&\fBBIO_set_close\fR\|(3), \fBBIO_get_close\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_mem.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_mem.3 index 9c220924..f64212c2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_mem.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_mem.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_MEM 3" -.TH BIO_S_MEM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_MEM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_null.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_null.3 index 4f8becc9..5c07f91a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_null.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_null.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_NULL 3" -.TH BIO_S_NULL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_NULL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_secmem.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_secmem.3 new file mode 120000 index 00000000..72cb355b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_secmem.3 @@ -0,0 +1 @@ +BIO_s_mem.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_socket.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_socket.3 index 5e29cfac..715a4cb5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_socket.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_s_socket.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_S_SOCKET 3" -.TH BIO_S_SOCKET 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_S_SOCKET 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_seek.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_seek.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_seek.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_bios.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_bios.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_bios.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_ip_family.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_ip_family.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_ip_family.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_name.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_name.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_port.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_port.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_accept_port.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_bind_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_bind_mode.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_bind_mode.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_buffer_read_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_buffer_read_data.3 new file mode 120000 index 00000000..977161cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_buffer_read_data.3 @@ -0,0 +1 @@ +BIO_f_buffer.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_buffer_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_buffer_size.3 new file mode 120000 index 00000000..977161cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_buffer_size.3 @@ -0,0 +1 @@ +BIO_f_buffer.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback.3 index 6f14d176..9f0c2531 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_SET_CALLBACK 3" -.TH BIO_SET_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_SET_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -165,7 +165,7 @@ BIO_set_callback_ex, BIO_get_callback_ex, BIO_set_callback, BIO_get_callback, BI .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fBBIO_set_callback_ex()\fR and \fBBIO_get_callback_ex()\fR set and retrieve the \s-1BIO\s0 -callback. The callback is called during most high level \s-1BIO\s0 operations. It can +callback. The callback is called during most high-level \s-1BIO\s0 operations. It can be used for debugging purposes to trace operations on a \s-1BIO\s0 or to modify its operation. .PP @@ -384,7 +384,7 @@ The \fBBIO_debug_callback()\fR function is a good example, its source is in crypto/bio/bio_cb.c .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback_arg.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback_arg.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback_ex.3 new file mode 120000 index 00000000..b2c6b7aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_callback_ex.3 @@ -0,0 +1 @@ +BIO_set_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_cipher.3 new file mode 120000 index 00000000..0d99524e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_cipher.3 @@ -0,0 +1 @@ +BIO_f_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_close.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_close.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_close.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_address.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_address.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_address.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_hostname.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_hostname.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_hostname.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_ip_family.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_ip_family.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_ip_family.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_port.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_port.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_conn_port.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_data.3 new file mode 120000 index 00000000..1bbda12f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_data.3 @@ -0,0 +1 @@ +BIO_get_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_fd.3 new file mode 120000 index 00000000..47d0cb80 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_fd.3 @@ -0,0 +1 @@ +BIO_s_fd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_fp.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_fp.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_info_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_info_callback.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_info_callback.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_init.3 new file mode 120000 index 00000000..1bbda12f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_init.3 @@ -0,0 +1 @@ +BIO_get_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_md.3 new file mode 120000 index 00000000..264a7c3b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_md.3 @@ -0,0 +1 @@ +BIO_f_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_mem_buf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_mem_buf.3 new file mode 120000 index 00000000..72cb355b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_mem_buf.3 @@ -0,0 +1 @@ +BIO_s_mem.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_mem_eof_return.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_mem_eof_return.3 new file mode 120000 index 00000000..72cb355b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_mem_eof_return.3 @@ -0,0 +1 @@ +BIO_s_mem.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_nbio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_nbio.3 new file mode 120000 index 00000000..3e3e84a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_nbio.3 @@ -0,0 +1 @@ +BIO_s_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_nbio_accept.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_nbio_accept.3 new file mode 120000 index 00000000..0ce0c2f6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_nbio_accept.3 @@ -0,0 +1 @@ +BIO_s_accept.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_next.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_next.3 new file mode 120000 index 00000000..e6846c7e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_next.3 @@ -0,0 +1 @@ +BIO_push.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_read_buffer_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_read_buffer_size.3 new file mode 120000 index 00000000..977161cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_read_buffer_size.3 @@ -0,0 +1 @@ +BIO_f_buffer.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_retry_reason.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_retry_reason.3 new file mode 120000 index 00000000..3f3f6d3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_retry_reason.3 @@ -0,0 +1 @@ +BIO_should_retry.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_shutdown.3 new file mode 120000 index 00000000..1bbda12f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_shutdown.3 @@ -0,0 +1 @@ +BIO_get_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_mode.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_mode.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_renegotiate_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_renegotiate_bytes.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_renegotiate_bytes.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_renegotiate_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_renegotiate_timeout.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_ssl_renegotiate_timeout.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_write_buf_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_write_buf_size.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_write_buf_size.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_write_buffer_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_write_buffer_size.3 new file mode 120000 index 00000000..977161cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_set_write_buffer_size.3 @@ -0,0 +1 @@ +BIO_f_buffer.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_io_special.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_io_special.3 new file mode 120000 index 00000000..3f3f6d3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_io_special.3 @@ -0,0 +1 @@ +BIO_should_retry.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_read.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_read.3 new file mode 120000 index 00000000..3f3f6d3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_read.3 @@ -0,0 +1 @@ +BIO_should_retry.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_retry.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_retry.3 index 3b773e3e..cf7c6b6a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_retry.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_retry.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO_SHOULD_RETRY 3" -.TH BIO_SHOULD_RETRY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO_SHOULD_RETRY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_write.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_write.3 new file mode 120000 index 00000000..3f3f6d3c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_should_write.3 @@ -0,0 +1 @@ +BIO_should_retry.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_shutdown_wr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_shutdown_wr.3 new file mode 120000 index 00000000..5ba68984 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_shutdown_wr.3 @@ -0,0 +1 @@ +BIO_s_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_snprintf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_snprintf.3 new file mode 120000 index 00000000..09a898d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_snprintf.3 @@ -0,0 +1 @@ +BIO_printf.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_socket.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_socket.3 new file mode 120000 index 00000000..2f67a67a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_socket.3 @@ -0,0 +1 @@ +BIO_connect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ssl_copy_session_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ssl_copy_session_id.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ssl_copy_session_id.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ssl_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ssl_shutdown.3 new file mode 120000 index 00000000..4451cfed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_ssl_shutdown.3 @@ -0,0 +1 @@ +BIO_f_ssl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_tell.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_tell.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_tell.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_up_ref.3 new file mode 120000 index 00000000..9161f01c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_up_ref.3 @@ -0,0 +1 @@ +BIO_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vfree.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vfree.3 new file mode 120000 index 00000000..9161f01c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vfree.3 @@ -0,0 +1 @@ +BIO_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vprintf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vprintf.3 new file mode 120000 index 00000000..09a898d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vprintf.3 @@ -0,0 +1 @@ +BIO_printf.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vsnprintf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vsnprintf.3 new file mode 120000 index 00000000..09a898d3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_vsnprintf.3 @@ -0,0 +1 @@ +BIO_printf.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_wpending.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_wpending.3 new file mode 120000 index 00000000..83b7fd3e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_wpending.3 @@ -0,0 +1 @@ +BIO_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write.3 new file mode 120000 index 00000000..899127af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write.3 @@ -0,0 +1 @@ +BIO_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write_ex.3 new file mode 120000 index 00000000..899127af --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write_ex.3 @@ -0,0 +1 @@ +BIO_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write_filename.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write_filename.3 new file mode 120000 index 00000000..4efef0cb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BIO_write_filename.3 @@ -0,0 +1 @@ +BIO_s_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_convert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_convert.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_convert.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_convert_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_convert_ex.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_convert_ex.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_create_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_create_param.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_create_param.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_free.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_free.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_get_flags.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_get_flags.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_invert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_invert.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_invert.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_invert_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_invert_ex.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_invert_ex.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_is_current_thread.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_is_current_thread.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_is_current_thread.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_lock.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_lock.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_lock.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_new.3 index 01b756d3..28c05e2a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_BLINDING_NEW 3" -.TH BN_BLINDING_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_BLINDING_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_set_current_thread.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_set_current_thread.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_set_current_thread.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_set_flags.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_set_flags.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_unlock.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_unlock.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_unlock.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_update.3 new file mode 120000 index 00000000..b9befb1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_BLINDING_update.3 @@ -0,0 +1 @@ +BN_BLINDING_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_end.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_end.3 new file mode 120000 index 00000000..12861e2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_end.3 @@ -0,0 +1 @@ +BN_CTX_start.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_free.3 new file mode 120000 index 00000000..eb2d371c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_free.3 @@ -0,0 +1 @@ +BN_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_get.3 new file mode 120000 index 00000000..12861e2d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_get.3 @@ -0,0 +1 @@ +BN_CTX_start.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_new.3 index 08b045fd..f5fae1f4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_CTX_NEW 3" -.TH BN_CTX_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_CTX_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_secure_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_secure_new.3 new file mode 120000 index 00000000..eb2d371c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_secure_new.3 @@ -0,0 +1 @@ +BN_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_start.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_start.3 index 3a74b470..eaae3d39 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_start.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_CTX_start.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_CTX_START 3" -.TH BN_CTX_START 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_CTX_START 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_call.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_call.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_call.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_free.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_free.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_get_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_get_arg.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_get_arg.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_new.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_new.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_set.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_set.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_set_old.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_set_old.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_GENCB_set_old.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_copy.3 new file mode 120000 index 00000000..a5c73d47 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_copy.3 @@ -0,0 +1 @@ +BN_mod_mul_montgomery.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_free.3 new file mode 120000 index 00000000..a5c73d47 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_free.3 @@ -0,0 +1 @@ +BN_mod_mul_montgomery.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_new.3 new file mode 120000 index 00000000..a5c73d47 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_new.3 @@ -0,0 +1 @@ +BN_mod_mul_montgomery.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_set.3 new file mode 120000 index 00000000..a5c73d47 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_MONT_CTX_set.3 @@ -0,0 +1 @@ +BN_mod_mul_montgomery.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_free.3 new file mode 120000 index 00000000..c1917ad9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_free.3 @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_new.3 new file mode 120000 index 00000000..c1917ad9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_new.3 @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_set.3 new file mode 120000 index 00000000..c1917ad9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_RECP_CTX_set.3 @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_abs_is_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_abs_is_word.3 new file mode 120000 index 00000000..61c3ac82 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_abs_is_word.3 @@ -0,0 +1 @@ +BN_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add.3 index 640e2080..b0436d89 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "BN_ADD 3" -.TH BN_ADD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_ADD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -BN_add, BN_sub, BN_mul, BN_sqr, BN_div, BN_mod, BN_nnmod, BN_mod_add, BN_mod_sub, BN_mod_mul, BN_mod_sqr, BN_exp, BN_mod_exp, BN_gcd \- arithmetic operations on BIGNUMs +BN_add, BN_sub, BN_mul, BN_sqr, BN_div, BN_mod, BN_nnmod, BN_mod_add, BN_mod_sub, BN_mod_mul, BN_mod_sqr, BN_mod_sqrt, BN_exp, BN_mod_exp, BN_gcd \- arithmetic operations on BIGNUMs .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -171,6 +171,8 @@ BN_add, BN_sub, BN_mul, BN_sqr, BN_div, BN_mod, BN_nnmod, BN_mod_add, BN_mod_sub \& \& int BN_mod_sqr(BIGNUM *r, BIGNUM *a, const BIGNUM *m, BN_CTX *ctx); \& +\& BIGNUM *BN_mod_sqrt(BIGNUM *in, BIGNUM *a, const BIGNUM *p, BN_CTX *ctx); +\& \& int BN_exp(BIGNUM *r, BIGNUM *a, BIGNUM *p, BN_CTX *ctx); \& \& int BN_mod_exp(BIGNUM *r, BIGNUM *a, const BIGNUM *p, @@ -203,16 +205,16 @@ For division by powers of 2, use \fBBN_rshift\fR\|(3). .PP \&\fBBN_mod()\fR corresponds to \fBBN_div()\fR with \fIdv\fR set to \fB\s-1NULL\s0\fR. .PP -\&\fBBN_nnmod()\fR reduces \fIa\fR modulo \fIm\fR and places the non-negative +\&\fBBN_nnmod()\fR reduces \fIa\fR modulo \fIm\fR and places the nonnegative remainder in \fIr\fR. .PP -\&\fBBN_mod_add()\fR adds \fIa\fR to \fIb\fR modulo \fIm\fR and places the non-negative +\&\fBBN_mod_add()\fR adds \fIa\fR to \fIb\fR modulo \fIm\fR and places the nonnegative result in \fIr\fR. .PP \&\fBBN_mod_sub()\fR subtracts \fIb\fR from \fIa\fR modulo \fIm\fR and places the -non-negative result in \fIr\fR. +nonnegative result in \fIr\fR. .PP -\&\fBBN_mod_mul()\fR multiplies \fIa\fR by \fIb\fR and finds the non-negative +\&\fBBN_mod_mul()\fR multiplies \fIa\fR by \fIb\fR and finds the nonnegative remainder respective to modulus \fIm\fR (\f(CW\*(C`r=(a*b) mod m\*(C'\fR). \fIr\fR may be the same \fB\s-1BIGNUM\s0\fR as \fIa\fR or \fIb\fR. For more efficient algorithms for repeated computations using the same modulus, see @@ -222,6 +224,12 @@ repeated computations using the same modulus, see \&\fBBN_mod_sqr()\fR takes the square of \fIa\fR modulo \fBm\fR and places the result in \fIr\fR. .PP +\&\fBBN_mod_sqrt()\fR returns the modular square root of \fIa\fR such that +\&\f(CW\*(C`in^2 = a (mod p)\*(C'\fR. The modulus \fIp\fR must be a +prime, otherwise an error or an incorrect \*(L"result\*(R" will be returned. +The result is stored into \fIin\fR which can be \s-1NULL.\s0 The result will be +newly allocated in that case. +.PP \&\fBBN_exp()\fR raises \fIa\fR to the \fIp\fR\-th power and places the result in \fIr\fR (\f(CW\*(C`r=a^p\*(C'\fR). This function is faster than repeated applications of \&\fBBN_mul()\fR. @@ -242,7 +250,10 @@ Unless noted otherwise, the result \fB\s-1BIGNUM\s0\fR must be different from the arguments. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -For all functions, 1 is returned for success, 0 on error. The return +The \fBBN_mod_sqrt()\fR returns the result (possibly incorrect if \fIp\fR is +not a prime), or \s-1NULL.\s0 +.PP +For all remaining functions, 1 is returned for success, 0 on error. The return value should always be checked (e.g., \f(CW\*(C`if (!BN_add(r,a,b)) goto err;\*(C'\fR). The error codes can be obtained by \fBERR_get_error\fR\|(3). .SH "SEE ALSO" @@ -251,7 +262,7 @@ The error codes can be obtained by \fBERR_get_error\fR\|(3). \&\fBBN_add_word\fR\|(3), \fBBN_set_bit\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add_word.3 index 9f4ba410..ce643cb8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add_word.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_add_word.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_ADD_WORD 3" -.TH BN_ADD_WORD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_ADD_WORD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bin2bn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bin2bn.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bin2bn.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2bin.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2bin.3 index 17f55b92..fbc07107 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2bin.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2bin.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_BN2BIN 3" -.TH BN_BN2BIN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_BN2BIN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -171,7 +171,7 @@ memory. .PP \&\fBBN_bn2binpad()\fR also converts the absolute value of \fBa\fR into big-endian form and stores it at \fBto\fR. \fBtolen\fR indicates the length of the output buffer -\&\fBto\fR. The result is padded with zeroes if necessary. If \fBtolen\fR is less than +\&\fBto\fR. The result is padded with zeros if necessary. If \fBtolen\fR is less than BN_num_bytes(\fBa\fR) an error is returned. .PP \&\fBBN_bin2bn()\fR converts the positive integer in big-endian form of length @@ -237,7 +237,7 @@ The error codes can be obtained by \fBERR_get_error\fR\|(3). \&\fBBN_num_bytes\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2binpad.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2binpad.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2binpad.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2dec.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2dec.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2dec.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2hex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2hex.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2hex.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2lebinpad.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2lebinpad.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2lebinpad.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2mpi.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2mpi.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_bn2mpi.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear.3 new file mode 120000 index 00000000..0512e5a3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear.3 @@ -0,0 +1 @@ +BN_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear_bit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear_bit.3 new file mode 120000 index 00000000..fa628cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear_bit.3 @@ -0,0 +1 @@ +BN_set_bit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear_free.3 new file mode 120000 index 00000000..0512e5a3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_clear_free.3 @@ -0,0 +1 @@ +BN_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_cmp.3 index 0d949da2..8824a9cc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_cmp.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_cmp.3 @@ -133,46 +133,50 @@ .\" ======================================================================== .\" .IX Title "BN_CMP 3" -.TH BN_CMP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_CMP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -BN_cmp, BN_ucmp, BN_is_zero, BN_is_one, BN_is_word, BN_is_odd \- BIGNUM comparison and test functions +BN_cmp, BN_ucmp, BN_is_zero, BN_is_one, BN_is_word, BN_abs_is_word, BN_is_odd \- BIGNUM comparison and test functions .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& #include \& -\& int BN_cmp(BIGNUM *a, BIGNUM *b); -\& int BN_ucmp(BIGNUM *a, BIGNUM *b); +\& int BN_cmp(const BIGNUM *a, const BIGNUM *b); +\& int BN_ucmp(const BIGNUM *a, const BIGNUM *b); \& -\& int BN_is_zero(BIGNUM *a); -\& int BN_is_one(BIGNUM *a); -\& int BN_is_word(BIGNUM *a, BN_ULONG w); -\& int BN_is_odd(BIGNUM *a); +\& int BN_is_zero(const BIGNUM *a); +\& int BN_is_one(const BIGNUM *a); +\& int BN_is_word(const BIGNUM *a, const BN_ULONG w); +\& int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w); +\& int BN_is_odd(const BIGNUM *a); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -\&\fBBN_cmp()\fR compares the numbers \fBa\fR and \fBb\fR. \fBBN_ucmp()\fR compares their +\&\fBBN_cmp()\fR compares the numbers \fIa\fR and \fIb\fR. \fBBN_ucmp()\fR compares their absolute values. .PP -\&\fBBN_is_zero()\fR, \fBBN_is_one()\fR and \fBBN_is_word()\fR test if \fBa\fR equals 0, 1, -or \fBw\fR respectively. \fBBN_is_odd()\fR tests if a is odd. -.PP -\&\fBBN_is_zero()\fR, \fBBN_is_one()\fR, \fBBN_is_word()\fR and \fBBN_is_odd()\fR are macros. +\&\fBBN_is_zero()\fR, \fBBN_is_one()\fR, \fBBN_is_word()\fR and \fBBN_abs_is_word()\fR test if +\&\fIa\fR equals 0, 1, \fIw\fR, or |\fIw\fR| respectively. +\&\fBBN_is_odd()\fR tests if \fIa\fR is odd. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBBN_cmp()\fR returns \-1 if \fBa\fR < \fBb\fR, 0 if \fBa\fR == \fBb\fR and 1 if -\&\fBa\fR > \fBb\fR. \fBBN_ucmp()\fR is the same using the absolute values -of \fBa\fR and \fBb\fR. +\&\fBBN_cmp()\fR returns \-1 if \fIa\fR < \fIb\fR, 0 if \fIa\fR == \fIb\fR and 1 if +\&\fIa\fR > \fIb\fR. \fBBN_ucmp()\fR is the same using the absolute values +of \fIa\fR and \fIb\fR. .PP -\&\fBBN_is_zero()\fR, \fBBN_is_one()\fR \fBBN_is_word()\fR and \fBBN_is_odd()\fR return 1 if -the condition is true, 0 otherwise. +\&\fBBN_is_zero()\fR, \fBBN_is_one()\fR \fBBN_is_word()\fR, \fBBN_abs_is_word()\fR and +\&\fBBN_is_odd()\fR return 1 if the condition is true, 0 otherwise. +.SH "HISTORY" +.IX Header "HISTORY" +Prior to OpenSSL 1.1.0, \fBBN_is_zero()\fR, \fBBN_is_one()\fR, \fBBN_is_word()\fR, +\&\fBBN_abs_is_word()\fR and \fBBN_is_odd()\fR were macros. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_copy.3 index 009cd642..62f5d551 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_copy.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_copy.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_COPY 3" -.TH BN_COPY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_COPY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_dec2bn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_dec2bn.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_dec2bn.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div_recp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div_recp.3 new file mode 120000 index 00000000..c1917ad9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div_recp.3 @@ -0,0 +1 @@ +BN_mod_mul_reciprocal.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div_word.3 new file mode 120000 index 00000000..6295e05c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_div_word.3 @@ -0,0 +1 @@ +BN_add_word.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_dup.3 new file mode 120000 index 00000000..e121f9da --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_dup.3 @@ -0,0 +1 @@ +BN_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_exp.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_exp.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_free.3 new file mode 120000 index 00000000..0512e5a3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_free.3 @@ -0,0 +1 @@ +BN_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_from_montgomery.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_from_montgomery.3 new file mode 120000 index 00000000..a5c73d47 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_from_montgomery.3 @@ -0,0 +1 @@ +BN_mod_mul_montgomery.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_gcd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_gcd.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_gcd.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_generate_prime.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_generate_prime.3 index 1f481ae8..fbcbf532 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_generate_prime.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_generate_prime.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_GENERATE_PRIME 3" -.TH BN_GENERATE_PRIME 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_GENERATE_PRIME 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -251,7 +251,7 @@ For instance, to reach the 128 bit security level, \fBnchecks\fR should be set t .PP If \fBcb\fR is not \fB\s-1NULL\s0\fR, \fBBN_GENCB_call(cb, 1, j)\fR is called after the j\-th iteration (j = 0, 1, ...). \fBctx\fR is a -pre-allocated \fB\s-1BN_CTX\s0\fR (to save the overhead of allocating and +preallocated \fB\s-1BN_CTX\s0\fR (to save the overhead of allocating and freeing the structure in a loop), or \fB\s-1NULL\s0\fR. .PP \&\fBBN_GENCB_call()\fR calls the callback function held in the \fB\s-1BN_GENCB\s0\fR structure diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_generate_prime_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_generate_prime_ex.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_generate_prime_ex.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_192.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_192.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_192.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_224.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_224.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_224.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_256.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_256.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_384.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_384.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_384.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_521.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_521.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get0_nist_prime_521.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc2409_prime_1024.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc2409_prime_1024.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc2409_prime_1024.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc2409_prime_768.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc2409_prime_768.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc2409_prime_768.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_1536.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_1536.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_1536.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_2048.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_2048.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_2048.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_3072.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_3072.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_3072.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_4096.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_4096.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_4096.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_6144.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_6144.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_6144.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_8192.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_8192.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_rfc3526_prime_8192.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_word.3 new file mode 120000 index 00000000..8a84faa6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_get_word.3 @@ -0,0 +1 @@ +BN_zero.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_hex2bn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_hex2bn.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_hex2bn.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_bit_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_bit_set.3 new file mode 120000 index 00000000..fa628cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_bit_set.3 @@ -0,0 +1 @@ +BN_set_bit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_odd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_odd.3 new file mode 120000 index 00000000..61c3ac82 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_odd.3 @@ -0,0 +1 @@ +BN_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_one.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_one.3 new file mode 120000 index 00000000..61c3ac82 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_one.3 @@ -0,0 +1 @@ +BN_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_ex.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_ex.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_fasttest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_fasttest.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_fasttest.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_fasttest_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_fasttest_ex.3 new file mode 120000 index 00000000..de0c835a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_prime_fasttest_ex.3 @@ -0,0 +1 @@ +BN_generate_prime.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_word.3 new file mode 120000 index 00000000..61c3ac82 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_word.3 @@ -0,0 +1 @@ +BN_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_zero.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_zero.3 new file mode 120000 index 00000000..61c3ac82 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_is_zero.3 @@ -0,0 +1 @@ +BN_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lebin2bn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lebin2bn.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lebin2bn.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lshift.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lshift.3 new file mode 120000 index 00000000..fa628cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lshift.3 @@ -0,0 +1 @@ +BN_set_bit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lshift1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lshift1.3 new file mode 120000 index 00000000..fa628cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_lshift1.3 @@ -0,0 +1 @@ +BN_set_bit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mask_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mask_bits.3 new file mode 120000 index 00000000..fa628cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mask_bits.3 @@ -0,0 +1 @@ +BN_set_bit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_add.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_add.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_add.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_exp.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_exp.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_inverse.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_inverse.3 index 0ab1f7eb..bc929e3c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_inverse.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_inverse.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_MOD_INVERSE 3" -.TH BN_MOD_INVERSE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_MOD_INVERSE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_montgomery.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_montgomery.3 index d8fd3b1a..b9e5529b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_montgomery.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_montgomery.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_MOD_MUL_MONTGOMERY 3" -.TH BN_MOD_MUL_MONTGOMERY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_MOD_MUL_MONTGOMERY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -184,7 +184,7 @@ the result in \fIr\fR. \&\fBBN_from_montgomery()\fR performs the Montgomery reduction \fIr\fR = \fIa\fR*R^\-1. .PP \&\fBBN_to_montgomery()\fR computes Mont(\fIa\fR,R^2), i.e. \fIa\fR*R. -Note that \fIa\fR must be non-negative and smaller than the modulus. +Note that \fIa\fR must be nonnegative and smaller than the modulus. .PP For all functions, \fIctx\fR is a previously allocated \fB\s-1BN_CTX\s0\fR used for temporary variables. @@ -210,7 +210,7 @@ outside the expected range. \&\fBBN_MONT_CTX_init()\fR was removed in OpenSSL 1.1.0 .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_reciprocal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_reciprocal.3 index 7a9d3be8..0a3ff4aa 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_reciprocal.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_mul_reciprocal.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_MOD_MUL_RECIPROCAL 3" -.TH BN_MOD_MUL_RECIPROCAL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_MOD_MUL_RECIPROCAL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sqr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sqr.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sqr.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sqrt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sqrt.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sqrt.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sub.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sub.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_sub.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_word.3 new file mode 120000 index 00000000..6295e05c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mod_word.3 @@ -0,0 +1 @@ +BN_add_word.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mpi2bn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mpi2bn.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mpi2bn.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mul.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mul.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mul.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mul_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mul_word.3 new file mode 120000 index 00000000..6295e05c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_mul_word.3 @@ -0,0 +1 @@ +BN_add_word.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_new.3 index 2a59e453..ff400296 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_NEW 3" -.TH BN_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_nnmod.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_nnmod.3 new file mode 120000 index 00000000..386e9d52 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_nnmod.3 @@ -0,0 +1 @@ +BN_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bits.3 new file mode 120000 index 00000000..2a689125 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bits.3 @@ -0,0 +1 @@ +BN_num_bytes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bits_word.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bits_word.3 new file mode 120000 index 00000000..2a689125 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bits_word.3 @@ -0,0 +1 @@ +BN_num_bytes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bytes.3 index a3002753..b2b9dd0d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bytes.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_num_bytes.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_NUM_BYTES 3" -.TH BN_NUM_BYTES 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_NUM_BYTES 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_one.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_one.3 new file mode 120000 index 00000000..8a84faa6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_one.3 @@ -0,0 +1 @@ +BN_zero.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_print.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_print.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_print_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_print_fp.3 new file mode 120000 index 00000000..794dc7fd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_print_fp.3 @@ -0,0 +1 @@ +BN_bn2bin.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_priv_rand.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_priv_rand.3 new file mode 120000 index 00000000..4f3c4cc3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_priv_rand.3 @@ -0,0 +1 @@ +BN_rand.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_priv_rand_range.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_priv_rand_range.3 new file mode 120000 index 00000000..4f3c4cc3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_priv_rand_range.3 @@ -0,0 +1 @@ +BN_rand.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_pseudo_rand.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_pseudo_rand.3 new file mode 120000 index 00000000..4f3c4cc3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_pseudo_rand.3 @@ -0,0 +1 @@ +BN_rand.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_pseudo_rand_range.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_pseudo_rand_range.3 new file mode 120000 index 00000000..4f3c4cc3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_pseudo_rand_range.3 @@ -0,0 +1 @@ +BN_rand.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rand.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rand.3 index a022b1f9..d0313017 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rand.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rand.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_RAND 3" -.TH BN_RAND 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_RAND 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -173,7 +173,7 @@ the number will be set to 1, so that the product of two such random numbers will always have 2*\fBbits\fR length. If \fBbottom\fR is \fB\s-1BN_RAND_BOTTOM_ODD\s0\fR, the number will be odd; if it is \fB\s-1BN_RAND_BOTTOM_ANY\s0\fR it can be odd or even. -If \fBbits\fR is 1 then \fBtop\fR cannot also be \fB\s-1BN_RAND_FLG_TOPTWO\s0\fR. +If \fBbits\fR is 1 then \fBtop\fR cannot also be \fB\s-1BN_RAND_TOP_TWO\s0\fR. .PP \&\fBBN_rand_range()\fR generates a cryptographically strong pseudo-random number \fBrnd\fR in the range 0 <= \fBrnd\fR < \fBrange\fR. @@ -212,7 +212,7 @@ The \&\fBBN_priv_rand()\fR and \fBBN_priv_rand_range()\fR functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rand_range.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rand_range.3 new file mode 120000 index 00000000..4f3c4cc3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rand_range.3 @@ -0,0 +1 @@ +BN_rand.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rshift.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rshift.3 new file mode 120000 index 00000000..fa628cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rshift.3 @@ -0,0 +1 @@ +BN_set_bit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rshift1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rshift1.3 new file mode 120000 index 00000000..fa628cf4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_rshift1.3 @@ -0,0 +1 @@ +BN_set_bit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_secure_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_secure_new.3 new file mode 120000 index 00000000..0512e5a3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_secure_new.3 @@ -0,0 +1 @@ +BN_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_security_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_security_bits.3 index b767c21f..89553dd9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_security_bits.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_security_bits.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_SECURITY_BITS 3" -.TH BN_SECURITY_BITS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_SECURITY_BITS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_set_bit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_set_bit.3 index 3ed23ffa..71b7e1c1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_set_bit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/BN_set_bit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BN_SET_BIT 3" -.TH BN_SET_BIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BN_SET_BIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -169,15 +169,15 @@ error occurs if \fBa\fR is shorter than \fBn\fR bits. \&\fBBN_is_bit_set()\fR tests if bit \fBn\fR in \fBa\fR is set. .PP \&\fBBN_mask_bits()\fR truncates \fBa\fR to an \fBn\fR bit number -(\f(CW\*(C`a&=~((~0)>>n)\*(C'\fR). An error occurs if \fBa\fR already is +(\f(CW\*(C`a&=~((~0)<p\fR and \fBdh\->g\fR. It generates a random private \s-1DH\s0 value @@ -165,6 +167,14 @@ published. \&\fBDH_compute_key()\fR computes the shared secret from the private \s-1DH\s0 value in \fBdh\fR and the other party's public value in \fBpub_key\fR and stores it in \fBkey\fR. \fBkey\fR must point to \fBDH_size(dh)\fR bytes of memory. +The padding style is \s-1RFC 5246\s0 (8.1.2) that strips leading zero bytes. +It is not constant time due to the leading zero bytes being stripped. +The return value should be considered public. +.PP +\&\fBDH_compute_key_padded()\fR is similar but stores a fixed number of bytes. +The padding style is \s-1NIST SP 800\-56A\s0 (C.1) that retains leading zero bytes. +It is constant time due to the leading zero bytes being retained. +The return value should be considered public. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBDH_generate_key()\fR returns 1 on success, 0 otherwise. @@ -172,13 +182,18 @@ it in \fBkey\fR. \fBkey\fR must point to \fBDH_size(dh)\fR bytes of memory. \&\fBDH_compute_key()\fR returns the size of the shared secret on success, \-1 on error. .PP +\&\fBDH_compute_key_padded()\fR returns \fBDH_size(dh)\fR on success, \-1 on error. +.PP The error codes can be obtained by \fBERR_get_error\fR\|(3). .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBDH_new\fR\|(3), \fBERR_get_error\fR\|(3), \fBRAND_bytes\fR\|(3), \fBDH_size\fR\|(3) +.SH "HISTORY" +.IX Header "HISTORY" +\&\fBDH_compute_key_padded()\fR was added in OpenSSL 1.0.2. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_generate_parameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_generate_parameters.3 index 3de6f6de..58c1603e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_generate_parameters.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_generate_parameters.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_GENERATE_PARAMETERS 3" -.TH DH_GENERATE_PARAMETERS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_GENERATE_PARAMETERS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_generate_parameters_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_generate_parameters_ex.3 new file mode 120000 index 00000000..d2687ddd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_generate_parameters_ex.3 @@ -0,0 +1 @@ +DH_generate_parameters.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_engine.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_engine.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_g.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_g.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_g.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_key.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_key.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_p.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_p.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_p.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_pqg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_pqg.3 index 0a226aef..1ffcb360 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_pqg.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_pqg.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_GET0_PQG 3" -.TH DH_GET0_PQG 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_GET0_PQG 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -214,7 +214,7 @@ within the \s-1DH\s0 object. object, or \s-1NULL\s0 if no such \s-1ENGINE\s0 has been set. .PP The \fBDH_get_length()\fR and \fBDH_set_length()\fR functions get and set the optional -length parameter associated with this \s-1DH\s0 object. If the length is non-zero then +length parameter associated with this \s-1DH\s0 object. If the length is nonzero then it is used, otherwise it is ignored. The \fBlength\fR parameter indicates the length of the secret exponent (private key) in bits. .SH "NOTES" @@ -246,7 +246,7 @@ or zero if no such length has been explicitly set. The functions described here were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_priv_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_priv_key.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_priv_key.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_pub_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_pub_key.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_pub_key.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_q.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_q.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get0_q.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_1024_160.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_1024_160.3 index 03513428..0f212899 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_1024_160.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_1024_160.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_GET_1024_160 3" -.TH DH_GET_1024_160 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_GET_1024_160 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_2048_224.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_2048_224.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_2048_224.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_2048_256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_2048_256.3 new file mode 120000 index 00000000..f1ebeac1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_2048_256.3 @@ -0,0 +1 @@ +DH_get_1024_160.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_default_method.3 new file mode 120000 index 00000000..d2a1705e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_default_method.3 @@ -0,0 +1 @@ +DH_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_length.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_length.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_nid.3 new file mode 120000 index 00000000..72c3ee72 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_get_nid.3 @@ -0,0 +1 @@ +DH_new_by_nid.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_dup.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_dup.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_free.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_free.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get0_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get0_app_data.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get0_app_data.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get0_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get0_name.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get0_name.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_bn_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_bn_mod_exp.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_bn_mod_exp.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_compute_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_compute_key.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_compute_key.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_finish.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_finish.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_finish.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_flags.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_flags.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_generate_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_generate_key.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_generate_key.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_generate_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_generate_params.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_generate_params.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_init.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_get_init.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_new.3 index 15172015..3da7b137 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_METH_NEW 3" -.TH DH_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set0_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set0_app_data.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set0_app_data.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set1_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set1_name.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set1_name.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_bn_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_bn_mod_exp.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_bn_mod_exp.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_compute_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_compute_key.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_compute_key.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_finish.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_finish.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_finish.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_flags.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_flags.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_generate_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_generate_key.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_generate_key.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_generate_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_generate_params.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_generate_params.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_init.3 new file mode 120000 index 00000000..7fe46548 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_meth_set_init.3 @@ -0,0 +1 @@ +DH_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new.3 index f765fc81..3407899f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_NEW 3" -.TH DH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new_by_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new_by_nid.3 index c993ebe4..54e43823 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new_by_nid.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new_by_nid.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_NEW_BY_NID 3" -.TH DH_NEW_BY_NID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_NEW_BY_NID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new_method.3 new file mode 120000 index 00000000..d2a1705e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_new_method.3 @@ -0,0 +1 @@ +DH_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_security_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_security_bits.3 new file mode 120000 index 00000000..436c8275 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_security_bits.3 @@ -0,0 +1 @@ +DH_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set0_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set0_key.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set0_key.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set0_pqg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set0_pqg.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set0_pqg.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_default_method.3 new file mode 120000 index 00000000..d2a1705e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_default_method.3 @@ -0,0 +1 @@ +DH_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_flags.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_flags.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_length.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_length.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_method.3 index f9f0c1f0..97de8614 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_method.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_set_method.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_SET_METHOD 3" -.TH DH_SET_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_SET_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -181,7 +181,7 @@ API\s0 is being used, so this function is no longer recommended. This will replace the \s-1DH_METHOD\s0 used by the \s-1DH\s0 key and if the previous method was supplied by an \s-1ENGINE,\s0 the handle to that \s-1ENGINE\s0 will be released during the change. It is possible to have \s-1DH\s0 keys that only work with certain \s-1DH_METHOD\s0 -implementations (eg. from an \s-1ENGINE\s0 module that supports embedded +implementations (e.g. from an \s-1ENGINE\s0 module that supports embedded hardware-protected keys), and in such cases attempting to change the \s-1DH_METHOD\s0 for the key can have unexpected results. .PP @@ -199,7 +199,7 @@ A new \s-1DH_METHOD\s0 object may be constructed using \fBDH_meth_new()\fR (see .PP \&\fBDH_set_default_method()\fR returns no value. .PP -\&\fBDH_set_method()\fR returns non-zero if the provided \fBmeth\fR was successfully set as +\&\fBDH_set_method()\fR returns nonzero if the provided \fBmeth\fR was successfully set as the method for \fBdh\fR (including unloading the \s-1ENGINE\s0 handle if the previous method was supplied by an \s-1ENGINE\s0). .PP @@ -211,7 +211,7 @@ returns a pointer to the newly allocated structure. \&\fBDH_new\fR\|(3), \fBDH_new\fR\|(3), \fBDH_meth_new\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_size.3 index ecdc0b9a..108caea0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_size.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_size.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DH_SIZE 3" -.TH DH_SIZE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DH_SIZE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_test_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_test_flags.3 new file mode 120000 index 00000000..f3245692 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DH_test_flags.3 @@ -0,0 +1 @@ +DH_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DHparams_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DHparams_print.3 new file mode 120000 index 00000000..1b54d4f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DHparams_print.3 @@ -0,0 +1 @@ +RSA_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DHparams_print_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DHparams_print_fp.3 new file mode 120000 index 00000000..1b54d4f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DHparams_print_fp.3 @@ -0,0 +1 @@ +RSA_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIRECTORYSTRING_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIRECTORYSTRING_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIRECTORYSTRING_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIRECTORYSTRING_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIRECTORYSTRING_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIRECTORYSTRING_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DISPLAYTEXT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DISPLAYTEXT_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DISPLAYTEXT_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DISPLAYTEXT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DISPLAYTEXT_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DISPLAYTEXT_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_NAME_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_NAME_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_NAME_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_NAME_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_NAME_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_NAME_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DIST_POINT_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_OpenSSL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_OpenSSL.3 new file mode 120000 index 00000000..a270075e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_OpenSSL.3 @@ -0,0 +1 @@ +DSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_free.3 new file mode 120000 index 00000000..594a0682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_free.3 @@ -0,0 +1 @@ +DSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_get0.3 new file mode 120000 index 00000000..594a0682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_get0.3 @@ -0,0 +1 @@ +DSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_new.3 index 023b20af..0561f6b5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_SIG_NEW 3" -.TH DSA_SIG_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_SIG_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_set0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_set0.3 new file mode 120000 index 00000000..594a0682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_SIG_set0.3 @@ -0,0 +1 @@ +DSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_bits.3 new file mode 120000 index 00000000..a70c5594 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_bits.3 @@ -0,0 +1 @@ +DSA_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_clear_flags.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_clear_flags.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_do_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_do_sign.3 index b0e978c3..35e4b90a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_do_sign.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_do_sign.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_DO_SIGN 3" -.TH DSA_DO_SIGN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_DO_SIGN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_do_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_do_verify.3 new file mode 120000 index 00000000..cb094e2a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_do_verify.3 @@ -0,0 +1 @@ +DSA_do_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_dup_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_dup_DH.3 index 862a5977..e0f12e4e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_dup_DH.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_dup_DH.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_DUP_DH 3" -.TH DSA_DUP_DH 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_DUP_DH 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_free.3 new file mode 120000 index 00000000..99811ec8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_free.3 @@ -0,0 +1 @@ +DSA_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_key.3 index 7b62ff98..36851b0c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_key.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_key.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_GENERATE_KEY 3" -.TH DSA_GENERATE_KEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_GENERATE_KEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_parameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_parameters.3 index 62466b66..ed41e1c4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_parameters.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_parameters.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_GENERATE_PARAMETERS 3" -.TH DSA_GENERATE_PARAMETERS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_GENERATE_PARAMETERS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_parameters_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_parameters_ex.3 new file mode 120000 index 00000000..bc41282e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_generate_parameters_ex.3 @@ -0,0 +1 @@ +DSA_generate_parameters.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_engine.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_engine.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_g.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_g.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_g.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_key.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_key.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_p.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_p.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_p.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_pqg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_pqg.3 index 033b873e..6c95ff30 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_pqg.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_pqg.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_GET0_PQG 3" -.TH DSA_GET0_PQG 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_GET0_PQG 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_priv_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_priv_key.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_priv_key.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_pub_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_pub_key.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_pub_key.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_q.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_q.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get0_q.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_default_method.3 new file mode 120000 index 00000000..a270075e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_default_method.3 @@ -0,0 +1 @@ +DSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_dup.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_dup.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_free.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_free.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get0_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get0_app_data.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get0_app_data.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get0_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get0_name.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get0_name.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_bn_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_bn_mod_exp.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_bn_mod_exp.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_finish.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_finish.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_finish.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_flags.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_flags.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_init.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_init.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_keygen.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_keygen.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_mod_exp.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_mod_exp.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_paramgen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_paramgen.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_paramgen.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_sign.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_sign.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_sign_setup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_sign_setup.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_sign_setup.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_verify.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_get_verify.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_new.3 index aca06aeb..804b2a86 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_METH_NEW 3" -.TH DSA_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set0_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set0_app_data.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set0_app_data.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set1_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set1_name.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set1_name.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_bn_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_bn_mod_exp.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_bn_mod_exp.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_finish.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_finish.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_finish.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_flags.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_flags.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_init.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_init.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_keygen.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_keygen.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_mod_exp.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_mod_exp.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_paramgen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_paramgen.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_paramgen.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_sign.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_sign.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_sign_setup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_sign_setup.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_sign_setup.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_verify.3 new file mode 120000 index 00000000..66aa353c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_meth_set_verify.3 @@ -0,0 +1 @@ +DSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_new.3 index 6043d3b1..dcbb88a2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_NEW 3" -.TH DSA_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_new_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_new_method.3 new file mode 120000 index 00000000..a270075e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_new_method.3 @@ -0,0 +1 @@ +DSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_print.3 new file mode 120000 index 00000000..1b54d4f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_print.3 @@ -0,0 +1 @@ +RSA_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_print_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_print_fp.3 new file mode 120000 index 00000000..1b54d4f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_print_fp.3 @@ -0,0 +1 @@ +RSA_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_security_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_security_bits.3 new file mode 120000 index 00000000..a70c5594 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_security_bits.3 @@ -0,0 +1 @@ +DSA_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set0_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set0_key.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set0_key.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set0_pqg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set0_pqg.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set0_pqg.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_default_method.3 new file mode 120000 index 00000000..a270075e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_default_method.3 @@ -0,0 +1 @@ +DSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_flags.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_flags.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_method.3 index 3aa3b047..b761a0dd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_method.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_set_method.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_SET_METHOD 3" -.TH DSA_SET_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_SET_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -182,7 +182,7 @@ recommended. \&\fBrsa\fR. This will replace the \s-1DSA_METHOD\s0 used by the \s-1DSA\s0 key and if the previous method was supplied by an \s-1ENGINE,\s0 the handle to that \s-1ENGINE\s0 will be released during the change. It is possible to have \s-1DSA\s0 keys that only -work with certain \s-1DSA_METHOD\s0 implementations (eg. from an \s-1ENGINE\s0 module +work with certain \s-1DSA_METHOD\s0 implementations (e.g. from an \s-1ENGINE\s0 module that supports embedded hardware-protected keys), and in such cases attempting to change the \s-1DSA_METHOD\s0 for the key can have unexpected results. See DSA_meth_new for information on constructing custom \s-1DSA_METHOD\s0 @@ -199,7 +199,7 @@ controlled by \fBDSA_set_default_method()\fR is used. .PP \&\fBDSA_set_default_method()\fR returns no value. .PP -\&\fBDSA_set_method()\fR returns non-zero if the provided \fBmeth\fR was successfully set as +\&\fBDSA_set_method()\fR returns nonzero if the provided \fBmeth\fR was successfully set as the method for \fBdsa\fR (including unloading the \s-1ENGINE\s0 handle if the previous method was supplied by an \s-1ENGINE\s0). .PP @@ -211,7 +211,7 @@ fails. Otherwise it returns a pointer to the newly allocated structure. \&\fBDSA_new\fR\|(3), \fBDSA_new\fR\|(3), \fBDSA_meth_new\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_sign.3 index 2d6df2d4..b33cf431 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_sign.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_sign.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_SIGN 3" -.TH DSA_SIGN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_SIGN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_sign_setup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_sign_setup.3 new file mode 120000 index 00000000..ccbb2fc3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_sign_setup.3 @@ -0,0 +1 @@ +DSA_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_size.3 index f678c6c5..c6fdb22e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_size.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_size.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DSA_SIZE 3" -.TH DSA_SIZE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DSA_SIZE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_test_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_test_flags.3 new file mode 120000 index 00000000..d86c0a8f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_test_flags.3 @@ -0,0 +1 @@ +DSA_get0_pqg.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_verify.3 new file mode 120000 index 00000000..ccbb2fc3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSA_verify.3 @@ -0,0 +1 @@ +DSA_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_print.3 new file mode 120000 index 00000000..1b54d4f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_print.3 @@ -0,0 +1 @@ +RSA_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_print_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_print_fp.3 new file mode 120000 index 00000000..1b54d4f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DSAparams_print_fp.3 @@ -0,0 +1 @@ +RSA_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_get_data_mtu.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_get_data_mtu.3 index c26592e0..6fdafced 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_get_data_mtu.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_get_data_mtu.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DTLS_GET_DATA_MTU 3" -.TH DTLS_GET_DATA_MTU 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DTLS_GET_DATA_MTU 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_set_timer_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_set_timer_cb.3 index bc03d54d..0537eb6c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_set_timer_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_set_timer_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DTLS_SET_TIMER_CB 3" -.TH DTLS_SET_TIMER_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DTLS_SET_TIMER_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_timer_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_timer_cb.3 new file mode 120000 index 00000000..cff504c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLS_timer_cb.3 @@ -0,0 +1 @@ +DTLS_set_timer_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_2_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_listen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_listen.3 index 00e9bb2f..316dcbb3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_listen.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_listen.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DTLSV1_LISTEN 3" -.TH DTLSV1_LISTEN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DTLSV1_LISTEN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -169,7 +169,7 @@ message then the amplification attack has succeeded. If \s-1DTLS\s0 is used over \s-1UDP\s0 (or any datagram based protocol that does not validate the source \s-1IP\s0) then it is susceptible to this type of attack. TLSv1.3 is designed to operate over a stream-based transport protocol (such as \s-1TCP\s0). -If \s-1TCP\s0 is being used then there is no need to use \fBSSL_stateless()\fR. However some +If \s-1TCP\s0 is being used then there is no need to use \fBSSL_stateless()\fR. However, some stream-based transport protocols (e.g. \s-1QUIC\s0) may not validate the source address. In this case a TLSv1.3 application would be susceptible to this attack. .PP @@ -231,7 +231,7 @@ will be set up ready to continue the handshake. the \fBpeer\fR value will also filled in. .PP A return value of 0 indicates a non-fatal error. This could (for -example) be because of non-blocking \s-1IO,\s0 or some invalid message having been +example) be because of nonblocking \s-1IO,\s0 or some invalid message having been received from a peer. Errors may be placed on the OpenSSL error queue with further information if appropriate. Typically user code is expected to retry the call to \fBDTLSv1_listen()\fR in the event of a non-fatal error. @@ -256,7 +256,7 @@ The \fBDTLSv1_listen()\fR return codes were clarified in OpenSSL 1.1.0. The type of \*(L"peer\*(R" also changed in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/DTLSv1_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDH_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_free.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_free.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0_r.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0_r.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0_r.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0_s.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0_s.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_get0_s.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_new.3 index 04e1bba2..537ac24e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_new.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "ECDSA_SIG_NEW 3" -.TH ECDSA_SIG_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ECDSA_SIG_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -ECDSA_SIG_get0, ECDSA_SIG_get0_r, ECDSA_SIG_get0_s, ECDSA_SIG_set0, ECDSA_SIG_new, ECDSA_SIG_free, ECDSA_size, ECDSA_sign, ECDSA_do_sign, ECDSA_verify, ECDSA_do_verify, ECDSA_sign_setup, ECDSA_sign_ex, ECDSA_do_sign_ex \- low level elliptic curve digital signature algorithm (ECDSA) functions +ECDSA_SIG_get0, ECDSA_SIG_get0_r, ECDSA_SIG_get0_s, ECDSA_SIG_set0, ECDSA_SIG_new, ECDSA_SIG_free, ECDSA_size, ECDSA_sign, ECDSA_do_sign, ECDSA_verify, ECDSA_do_verify, ECDSA_sign_setup, ECDSA_sign_ex, ECDSA_do_sign_ex \- low\-level elliptic curve digital signature algorithm (ECDSA) functions .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -173,7 +173,7 @@ ECDSA_SIG_get0, ECDSA_SIG_get0_r, ECDSA_SIG_get0_s, ECDSA_SIG_set0, ECDSA_SIG_ne .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -Note: these functions provide a low level interface to \s-1ECDSA.\s0 Most +Note: these functions provide a low-level interface to \s-1ECDSA.\s0 Most applications should use the higher level \fB\s-1EVP\s0\fR interface such as \&\fBEVP_DigestSignInit\fR\|(3) or \fBEVP_DigestVerifyInit\fR\|(3) instead. .PP @@ -339,7 +339,7 @@ and finally evaluate the return value: \&\fBd2i_ECDSA_SIG\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2004\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2004\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_set0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_set0.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_SIG_set0.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_sign.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_sign.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_sign_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_sign_ex.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_sign_ex.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_verify.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_do_verify.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign_ex.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign_ex.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign_setup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign_setup.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_sign_setup.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_size.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_size.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_verify.3 new file mode 120000 index 00000000..d9b069bf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECDSA_verify.3 @@ -0,0 +1 @@ +ECDSA_SIG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPARAMETERS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPARAMETERS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPARAMETERS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPARAMETERS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPARAMETERS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPARAMETERS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKPARAMETERS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKPARAMETERS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKPARAMETERS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKPARAMETERS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKPARAMETERS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKPARAMETERS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKParameters_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKParameters_print.3 index de918ece..2f8ddfb0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKParameters_print.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKParameters_print.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ECPKPARAMETERS_PRINT 3" -.TH ECPKPARAMETERS_PRINT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ECPKPARAMETERS_PRINT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKParameters_print_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKParameters_print_fp.3 new file mode 120000 index 00000000..f4dd40ca --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ECPKParameters_print_fp.3 @@ -0,0 +1 @@ +ECPKParameters_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GF2m_simple_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GF2m_simple_method.3 new file mode 120000 index 00000000..e3009d9d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GF2m_simple_method.3 @@ -0,0 +1 @@ +EC_GFp_simple_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_mont_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_mont_method.3 new file mode 120000 index 00000000..e3009d9d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_mont_method.3 @@ -0,0 +1 @@ +EC_GFp_simple_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nist_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nist_method.3 new file mode 120000 index 00000000..e3009d9d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nist_method.3 @@ -0,0 +1 @@ +EC_GFp_simple_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp224_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp224_method.3 new file mode 120000 index 00000000..e3009d9d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp224_method.3 @@ -0,0 +1 @@ +EC_GFp_simple_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp256_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp256_method.3 new file mode 120000 index 00000000..e3009d9d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp256_method.3 @@ -0,0 +1 @@ +EC_GFp_simple_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp521_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp521_method.3 new file mode 120000 index 00000000..e3009d9d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_nistp521_method.3 @@ -0,0 +1 @@ +EC_GFp_simple_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_simple_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_simple_method.3 index a3f36dc3..0eb1cff9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_simple_method.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GFp_simple_method.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EC_GFP_SIMPLE_METHOD 3" -.TH EC_GFP_SIMPLE_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC_GFP_SIMPLE_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_check.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_check.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_check_discriminant.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_check_discriminant.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_check_discriminant.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_clear_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_clear_free.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_clear_free.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_cmp.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_cmp.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_copy.3 index f41a962d..3ab9f823 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_copy.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_copy.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EC_GROUP_COPY 3" -.TH EC_GROUP_COPY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC_GROUP_COPY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_dup.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_dup.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_free.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_free.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_cofactor.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_cofactor.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_cofactor.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_generator.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_generator.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_generator.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_order.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_order.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_order.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_seed.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_seed.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get0_seed.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_asn1_flag.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_asn1_flag.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_asn1_flag.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_basis_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_basis_type.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_basis_type.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_cofactor.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_cofactor.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_cofactor.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_GF2m.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_GF2m.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_GF2m.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_GFp.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_GFp.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_name.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_curve_name.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_degree.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_degree.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_degree.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_ecparameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_ecparameters.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_ecparameters.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_ecpkparameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_ecpkparameters.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_ecpkparameters.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_order.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_order.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_order.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_pentanomial_basis.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_pentanomial_basis.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_pentanomial_basis.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_point_conversion_form.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_point_conversion_form.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_point_conversion_form.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_seed_len.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_seed_len.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_seed_len.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_trinomial_basis.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_trinomial_basis.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_get_trinomial_basis.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_have_precompute_mult.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_have_precompute_mult.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_have_precompute_mult.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_method_of.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_method_of.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_method_of.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new.3 index 3373ace3..ed1e0b94 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EC_GROUP_NEW 3" -.TH EC_GROUP_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC_GROUP_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -204,7 +204,7 @@ specific \s-1PK\s0 \fBparams\fR. \&\fBEC_GROUP_set_curve()\fR sets the curve parameters \fBp\fR, \fBa\fR and \fBb\fR. For a curve over Fp \fBp\fR is the prime for the field. For a curve over F2^m \fBp\fR represents the irreducible polynomial \- each bit represents a term in the polynomial. -Therefore there will either be three or five bits set dependent on whether the +Therefore, there will either be three or five bits set dependent on whether the polynomial is a trinomial or a pentanomial. In either case, \fBa\fR and \fBb\fR represents the coefficients a and b from the relevant equation introduced above. @@ -271,7 +271,7 @@ All EC_GROUP_new* functions return a pointer to the newly constructed group, or \&\fBEC_GFp_simple_method\fR\|(3), \fBd2i_ECPKParameters\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2013\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2013\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_by_curve_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_by_curve_name.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_by_curve_name.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_curve_GF2m.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_curve_GF2m.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_curve_GF2m.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_curve_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_curve_GFp.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_curve_GFp.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_from_ecparameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_from_ecparameters.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_from_ecparameters.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_from_ecpkparameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_from_ecpkparameters.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_new_from_ecpkparameters.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_order_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_order_bits.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_order_bits.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_precompute_mult.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_precompute_mult.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_precompute_mult.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_asn1_flag.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_asn1_flag.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_asn1_flag.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_GF2m.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_GF2m.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_GF2m.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_GFp.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_GFp.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_name.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_curve_name.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_generator.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_generator.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_generator.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_point_conversion_form.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_point_conversion_form.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_point_conversion_form.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_seed.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_seed.3 new file mode 120000 index 00000000..e366f002 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_GROUP_set_seed.3 @@ -0,0 +1 @@ +EC_GROUP_copy.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_check_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_check_key.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_check_key.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_clear_flags.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_clear_flags.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_copy.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_copy.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_decoded_from_explicit_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_decoded_from_explicit_params.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_decoded_from_explicit_params.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_dup.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_dup.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_free.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_free.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_generate_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_generate_key.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_generate_key.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_engine.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_engine.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_group.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_group.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_group.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_private_key.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_private_key.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_public_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_public_key.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get0_public_key.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_conv_form.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_conv_form.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_conv_form.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_enc_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_enc_flags.3 index 8c62fdd2..4726e137 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_enc_flags.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_enc_flags.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EC_KEY_GET_ENC_FLAGS 3" -.TH EC_KEY_GET_ENC_FLAGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC_KEY_GET_ENC_FLAGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_flags.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_flags.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_method.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_get_method.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_key2buf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_key2buf.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_key2buf.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_new.3 index 91d4d8e8..e9136fa0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_new.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "EC_KEY_NEW 3" -.TH EC_KEY_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC_KEY_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -EC_KEY_get_method, EC_KEY_set_method, EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_flags, EC_KEY_clear_flags, EC_KEY_new_by_curve_name, EC_KEY_free, EC_KEY_copy, EC_KEY_dup, EC_KEY_up_ref, EC_KEY_get0_engine, EC_KEY_get0_group, EC_KEY_set_group, EC_KEY_get0_private_key, EC_KEY_set_private_key, EC_KEY_get0_public_key, EC_KEY_set_public_key, EC_KEY_get_conv_form, EC_KEY_set_conv_form, EC_KEY_set_asn1_flag, EC_KEY_precompute_mult, EC_KEY_generate_key, EC_KEY_check_key, EC_KEY_set_public_key_affine_coordinates, EC_KEY_oct2key, EC_KEY_key2buf, EC_KEY_oct2priv, EC_KEY_priv2oct, EC_KEY_priv2buf \- Functions for creating, destroying and manipulating EC_KEY objects +EC_KEY_get_method, EC_KEY_set_method, EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_flags, EC_KEY_clear_flags, EC_KEY_new_by_curve_name, EC_KEY_free, EC_KEY_copy, EC_KEY_dup, EC_KEY_up_ref, EC_KEY_get0_engine, EC_KEY_get0_group, EC_KEY_set_group, EC_KEY_get0_private_key, EC_KEY_set_private_key, EC_KEY_get0_public_key, EC_KEY_set_public_key, EC_KEY_get_conv_form, EC_KEY_set_conv_form, EC_KEY_set_asn1_flag, EC_KEY_decoded_from_explicit_params, EC_KEY_precompute_mult, EC_KEY_generate_key, EC_KEY_check_key, EC_KEY_set_public_key_affine_coordinates, EC_KEY_oct2key, EC_KEY_key2buf, EC_KEY_oct2priv, EC_KEY_priv2oct, EC_KEY_priv2buf \- Functions for creating, destroying and manipulating EC_KEY objects .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -158,12 +158,13 @@ EC_KEY_get_method, EC_KEY_set_method, EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_f \& const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key); \& int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group); \& const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); -\& int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *prv); +\& int EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key); \& const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); \& int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub); \& point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key); \& void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform); \& void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); +\& int EC_KEY_decoded_from_explicit_params(const EC_KEY *key); \& int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx); \& int EC_KEY_generate_key(EC_KEY *key); \& int EC_KEY_check_key(const EC_KEY *key); @@ -226,7 +227,9 @@ that it is valid. The functions \fBEC_KEY_get0_group()\fR, \fBEC_KEY_set_group()\fR, \&\fBEC_KEY_get0_private_key()\fR, \fBEC_KEY_set_private_key()\fR, \fBEC_KEY_get0_public_key()\fR, and \fBEC_KEY_set_public_key()\fR get and set the \s-1EC_GROUP\s0 object, the private key, -and the \s-1EC_POINT\s0 public key for the \fBkey\fR respectively. +and the \s-1EC_POINT\s0 public key for the \fBkey\fR respectively. The function +\&\fBEC_KEY_set_private_key()\fR accepts \s-1NULL\s0 as the priv_key argument to securely clear +the private key component from the \s-1EC_KEY.\s0 .PP The functions \fBEC_KEY_get_conv_form()\fR and \fBEC_KEY_set_conv_form()\fR get and set the point_conversion_form for the \fBkey\fR. For a description of @@ -244,11 +247,15 @@ other flags are left in their existing state. (if set). Refer to \fBEC_GROUP_copy\fR\|(3) for further information on the asn1_flag. .PP +\&\fBEC_KEY_decoded_from_explicit_params()\fR returns 1 if the group of the \fIkey\fR was +decoded from data with explicitly encoded group parameters, \-1 if the \fIkey\fR +is \s-1NULL\s0 or the group parameters are missing, and 0 otherwise. +.PP \&\fBEC_KEY_precompute_mult()\fR stores multiples of the underlying \s-1EC_GROUP\s0 generator for faster point multiplication. See also \fBEC_POINT_add\fR\|(3). .PP \&\fBEC_KEY_oct2key()\fR and \fBEC_KEY_key2buf()\fR are identical to the functions -\&\fBEC_POINT_oct2point()\fR and \fBEC_KEY_point2buf()\fR except they use the public key +\&\fBEC_POINT_oct2point()\fR and \fBEC_POINT_point2buf()\fR except they use the public key \&\s-1EC_POINT\s0 in \fBeckey\fR. .PP \&\fBEC_KEY_oct2priv()\fR and \fBEC_KEY_priv2oct()\fR convert between the private key @@ -279,10 +286,14 @@ integer. .PP \&\fBEC_KEY_get0_engine()\fR returns a pointer to an \s-1ENGINE,\s0 or \s-1NULL\s0 if it wasn't set. .PP -\&\fBEC_KEY_up_ref()\fR, \fBEC_KEY_set_group()\fR, \fBEC_KEY_set_private_key()\fR, -\&\fBEC_KEY_set_public_key()\fR, \fBEC_KEY_precompute_mult()\fR, \fBEC_KEY_generate_key()\fR, -\&\fBEC_KEY_check_key()\fR, \fBEC_KEY_set_public_key_affine_coordinates()\fR, -\&\fBEC_KEY_oct2key()\fR and \fBEC_KEY_oct2priv()\fR return 1 on success or 0 on error. +\&\fBEC_KEY_up_ref()\fR, \fBEC_KEY_set_group()\fR, \fBEC_KEY_set_public_key()\fR, +\&\fBEC_KEY_precompute_mult()\fR, \fBEC_KEY_generate_key()\fR, \fBEC_KEY_check_key()\fR, +\&\fBEC_KEY_set_public_key_affine_coordinates()\fR, \fBEC_KEY_oct2key()\fR and +\&\fBEC_KEY_oct2priv()\fR return 1 on success or 0 on error. +.PP +\&\fBEC_KEY_set_private_key()\fR returns 1 on success or 0 on error except when the +priv_key argument is \s-1NULL,\s0 in that case it returns 0, for legacy compatibility, +and should not be treated as an error. .PP \&\fBEC_KEY_get0_group()\fR returns the \s-1EC_GROUP\s0 associated with the \s-1EC_KEY.\s0 .PP @@ -301,7 +312,7 @@ of the buffer or 0 on error. \&\fBd2i_ECPKParameters\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2013\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2013\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_new_by_curve_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_new_by_curve_name.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_new_by_curve_name.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_oct2key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_oct2key.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_oct2key.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_oct2priv.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_oct2priv.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_oct2priv.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_precompute_mult.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_precompute_mult.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_precompute_mult.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_priv2buf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_priv2buf.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_priv2buf.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_priv2oct.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_priv2oct.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_priv2oct.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_asn1_flag.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_asn1_flag.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_asn1_flag.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_conv_form.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_conv_form.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_conv_form.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_enc_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_enc_flags.3 new file mode 120000 index 00000000..1caac360 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_enc_flags.3 @@ -0,0 +1 @@ +EC_KEY_get_enc_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_flags.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_flags.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_group.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_group.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_group.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_method.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_method.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_private_key.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_private_key.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_public_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_public_key.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_public_key.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_public_key_affine_coordinates.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_public_key_affine_coordinates.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_set_public_key_affine_coordinates.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_up_ref.3 new file mode 120000 index 00000000..369b9ad7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_KEY_up_ref.3 @@ -0,0 +1 @@ +EC_KEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_METHOD_get_field_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_METHOD_get_field_type.3 new file mode 120000 index 00000000..e3009d9d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_METHOD_get_field_type.3 @@ -0,0 +1 @@ +EC_GFp_simple_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_add.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_add.3 index 763a1095..fe76ac9c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_add.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_add.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EC_POINT_ADD 3" -.TH EC_POINT_ADD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC_POINT_ADD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_bn2point.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_bn2point.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_bn2point.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_clear_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_clear_free.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_clear_free.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_cmp.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_cmp.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_copy.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_copy.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_dbl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_dbl.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_dbl.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_dup.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_dup.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_free.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_free.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_Jprojective_coordinates_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_Jprojective_coordinates_GFp.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_Jprojective_coordinates_GFp.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates_GF2m.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates_GF2m.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates_GF2m.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates_GFp.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_get_affine_coordinates_GFp.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_hex2point.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_hex2point.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_hex2point.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_invert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_invert.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_invert.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_is_at_infinity.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_is_at_infinity.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_is_at_infinity.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_is_on_curve.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_is_on_curve.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_is_on_curve.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_make_affine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_make_affine.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_make_affine.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_method_of.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_method_of.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_method_of.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_mul.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_mul.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_mul.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_new.3 index 238a372a..c4a8f041 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EC_POINT_NEW 3" -.TH EC_POINT_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EC_POINT_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -259,7 +259,7 @@ to (x, y, 1). To set or get the projective co-ordinates use .PP Points can also be described in terms of their compressed co-ordinates. For a point (x, y), for any given value for x such that the point is on the curve -there will only ever be two possible values for y. Therefore a point can be set +there will only ever be two possible values for y. Therefore, a point can be set using the \fBEC_POINT_set_compressed_coordinates()\fR function where \fBx\fR is the x co-ordinate and \fBy_bit\fR is a value 0 or 1 to identify which of the two possible values for y should be used. @@ -351,7 +351,7 @@ error. \&\fBEC_GFp_simple_method\fR\|(3), \fBd2i_ECPKParameters\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2013\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2013\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_oct2point.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_oct2point.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_oct2point.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2bn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2bn.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2bn.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2buf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2buf.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2buf.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2hex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2hex.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2hex.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2oct.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2oct.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_point2oct.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_Jprojective_coordinates_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_Jprojective_coordinates_GFp.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_Jprojective_coordinates_GFp.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates_GF2m.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates_GF2m.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates_GF2m.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates_GFp.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_affine_coordinates_GFp.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates_GF2m.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates_GF2m.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates_GF2m.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates_GFp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates_GFp.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_compressed_coordinates_GFp.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_to_infinity.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_to_infinity.3 new file mode 120000 index 00000000..69d18a48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINT_set_to_infinity.3 @@ -0,0 +1 @@ +EC_POINT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINTs_make_affine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINTs_make_affine.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINTs_make_affine.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINTs_mul.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINTs_mul.3 new file mode 120000 index 00000000..e4add875 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_POINTs_mul.3 @@ -0,0 +1 @@ +EC_POINT_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_get_builtin_curves.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_get_builtin_curves.3 new file mode 120000 index 00000000..b170f49c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EC_get_builtin_curves.3 @@ -0,0 +1 @@ +EC_GROUP_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EDIPARTYNAME_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EDIPARTYNAME_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EDIPARTYNAME_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EDIPARTYNAME_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EDIPARTYNAME_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EDIPARTYNAME_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_add.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_add.3 index 369d8e25..bd7a2ddd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_add.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_add.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ENGINE_ADD 3" -.TH ENGINE_ADD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ENGINE_ADD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -283,7 +283,7 @@ implementation includes the following abstractions; .SS "Reference counting and handles" .IX Subsection "Reference counting and handles" Due to the modular nature of the \s-1ENGINE API,\s0 pointers to ENGINEs need to be -treated as handles \- ie. not only as pointers, but also as references to +treated as handles \- i.e. not only as pointers, but also as references to the underlying \s-1ENGINE\s0 object. Ie. one should obtain a new reference when making copies of an \s-1ENGINE\s0 pointer if the copies will be used (and released) independently. @@ -354,15 +354,15 @@ operational \s-1ENGINE\s0 for a given cryptographic purpose. .PP To obtain a functional reference from an existing structural reference, call the \fBENGINE_init()\fR function. This returns zero if the \s-1ENGINE\s0 was not -already operational and couldn't be successfully initialised (eg. lack of +already operational and couldn't be successfully initialised (e.g. lack of system drivers, no special hardware attached, etc), otherwise it will -return non-zero to indicate that the \s-1ENGINE\s0 is now operational and will +return nonzero to indicate that the \s-1ENGINE\s0 is now operational and will have allocated a new \fBfunctional\fR reference to the \s-1ENGINE.\s0 All functional references are released by calling \fBENGINE_finish()\fR (which removes the implicit structural reference as well). .PP The second way to get a functional reference is by asking OpenSSL for a -default implementation for a given task, eg. by \fBENGINE_get_default_RSA()\fR, +default implementation for a given task, e.g. by \fBENGINE_get_default_RSA()\fR, \&\fBENGINE_get_default_cipher_engine()\fR, etc. These are discussed in the next section, though they are not usually required by application programmers as they are used automatically when creating and using the relevant @@ -379,7 +379,7 @@ In the case of other abstractions like \s-1RSA, DSA,\s0 etc, there is only one \&\*(L"algorithm\*(R" so all implementations implicitly register using the same 'nid' index. .PP -When a default \s-1ENGINE\s0 is requested for a given abstraction/algorithm/mode, (eg. +When a default \s-1ENGINE\s0 is requested for a given abstraction/algorithm/mode, (e.g. when calling RSA_new_method(\s-1NULL\s0)), a \*(L"get_default\*(R" call will be made to the \&\s-1ENGINE\s0 subsystem to process the corresponding state table and return a functional reference to an initialised \s-1ENGINE\s0 whose implementation should be @@ -428,7 +428,7 @@ is something for the application to control. Some applications will want to allow the user to specify exactly which \s-1ENGINE\s0 they want used if any is to be used at all. Others may prefer to load all support and have OpenSSL automatically use at run-time any \s-1ENGINE\s0 that is able to -successfully initialise \- ie. to assume that this corresponds to +successfully initialise \- i.e. to assume that this corresponds to acceleration hardware attached to the machine or some such thing. There are probably numerous other ways in which applications may prefer to handle things, so we will simply illustrate the consequences as they apply to a @@ -520,7 +520,7 @@ so that it can be initialised for use. This could include the path to any driver or config files it needs to load, required network addresses, smart-card identifiers, passwords to initialise protected devices, logging information, etc etc. This class of commands typically needs to be -passed to an \s-1ENGINE\s0 \fBbefore\fR attempting to initialise it, ie. before +passed to an \s-1ENGINE\s0 \fBbefore\fR attempting to initialise it, i.e. before calling \fBENGINE_init()\fR. The other class of commands consist of settings or operations that tweak certain behaviour or cause certain operations to take place, and these commands may work either before or after \fBENGINE_init()\fR, or @@ -582,7 +582,7 @@ boolean success or failure. .Ve .PP Note that \fBENGINE_ctrl_cmd_string()\fR accepts a boolean argument that can -relax the semantics of the function \- if set non-zero it will only return +relax the semantics of the function \- if set nonzero it will only return failure if the \s-1ENGINE\s0 supported the given command name but failed while executing it, if the \s-1ENGINE\s0 doesn't support the command name it will simply return success without doing anything. In this case we assume the user is @@ -595,7 +595,7 @@ It is possible to discover at run-time the names, numerical-ids, descriptions and input parameters of the control commands supported by an \s-1ENGINE\s0 using a structural reference. Note that some control commands are defined by OpenSSL itself and it will intercept and handle these control commands on behalf of the -\&\s-1ENGINE,\s0 ie. the \s-1ENGINE\s0's \fBctrl()\fR handler is not used for the control command. +\&\s-1ENGINE,\s0 i.e. the \s-1ENGINE\s0's \fBctrl()\fR handler is not used for the control command. openssl/engine.h defines an index, \s-1ENGINE_CMD_BASE,\s0 that all control commands implemented by ENGINEs should be numbered from. Any command value lower than this symbol is considered a \*(L"generic\*(R" command is handled directly by the @@ -667,7 +667,7 @@ by applications, administrations, users, etc. These can support arbitrary operations via \fBENGINE_ctrl()\fR, including passing to and/or from the control commands data of any arbitrary type. These commands are supported in the discovery mechanisms simply to allow applications to determine if an \s-1ENGINE\s0 -supports certain specific commands it might want to use (eg. application \*(L"foo\*(R" +supports certain specific commands it might want to use (e.g. application \*(L"foo\*(R" might query various ENGINEs to see if they implement \*(L"\s-1FOO_GET_VENDOR_LOGO_GIF\*(R"\s0 \- and \s-1ENGINE\s0 could therefore decide whether or not to support this \*(L"foo\*(R"\-specific extension). @@ -702,8 +702,7 @@ global table flags which are used to control the registration behaviour of .PP All \fBENGINE_register_TYPE()\fR functions return 1 on success or 0 on error. .PP -\&\fBENGINE_register_complete()\fR and \fBENGINE_register_all_complete()\fR return 1 on success -or 0 on error. +\&\fBENGINE_register_complete()\fR and \fBENGINE_register_all_complete()\fR always return 1. .PP \&\fBENGINE_ctrl()\fR returns a positive value on success or others on error. .PP @@ -714,7 +713,7 @@ or 0 on error. \&\fBENGINE_new()\fR returns a valid \fB\s-1ENGINE\s0\fR structure on success or \s-1NULL\s0 if an error occurred. .PP -\&\fBENGINE_free()\fR returns 1 on success or 0 on error. +\&\fBENGINE_free()\fR always returns 1. .PP \&\fBENGINE_up_ref()\fR returns 1 on success or 0 on error. .PP @@ -759,7 +758,7 @@ done by \fBOPENSSL_cleanup()\fR and should not be used. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2002\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2002\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_add_conf_module.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_add_conf_module.3 new file mode 120000 index 00000000..8619db58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_add_conf_module.3 @@ -0,0 +1 @@ +OPENSSL_load_builtin_modules.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_by_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_by_id.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_by_id.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_cleanup.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_cleanup.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_cmd_is_executable.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_cmd_is_executable.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_cmd_is_executable.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl_cmd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl_cmd.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl_cmd.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl_cmd_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl_cmd_string.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_ctrl_cmd_string.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_finish.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_finish.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_finish.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_free.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_free.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_DH.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_DH.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_DSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_DSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_RAND.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_RAND.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_RAND.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_RSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_RSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cipher.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cipher.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cipher_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cipher_engine.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cipher_engine.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ciphers.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ciphers.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cmd_defns.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cmd_defns.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_cmd_defns.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ctrl_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ctrl_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ctrl_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_DH.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_DH.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_DSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_DSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_RAND.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_RAND.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_RAND.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_RSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_default_RSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_destroy_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_destroy_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_destroy_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digest.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digest.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digest_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digest_engine.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digest_engine.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digests.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digests.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_digests.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_finish_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_finish_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_finish_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_first.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_first.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_first.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_flags.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_flags.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_id.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_id.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_init_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_init_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_init_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_last.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_last.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_last.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_load_privkey_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_load_privkey_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_load_privkey_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_load_pubkey_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_load_pubkey_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_load_pubkey_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_name.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_name.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_next.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_next.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_next.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_prev.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_prev.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_prev.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_table_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_table_flags.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_get_table_flags.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_init.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_init.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_builtin_engines.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_builtin_engines.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_builtin_engines.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_private_key.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_private_key.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_public_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_public_key.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_load_public_key.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_new.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_new.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_DH.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_DH.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_DSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_DSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_RAND.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_RAND.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_RAND.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_RSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_RSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_DH.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_DH.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_DSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_DSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_RAND.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_RAND.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_RAND.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_RSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_RSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_ciphers.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_ciphers.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_complete.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_complete.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_complete.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_digests.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_digests.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_all_digests.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_ciphers.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_ciphers.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_complete.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_complete.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_complete.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_digests.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_digests.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_register_digests.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_remove.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_remove.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_remove.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_DH.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_DH.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_DSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_DSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_RAND.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_RAND.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_RAND.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_RSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_RSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ciphers.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ciphers.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_cmd_defns.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_cmd_defns.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_cmd_defns.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ctrl_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ctrl_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ctrl_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_DH.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_DH.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_DSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_DSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_RAND.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_RAND.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_RAND.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_RSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_RSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_ciphers.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_ciphers.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_digests.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_digests.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_digests.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_string.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_default_string.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_destroy_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_destroy_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_destroy_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_digests.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_digests.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_digests.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_finish_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_finish_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_finish_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_flags.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_flags.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_id.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_id.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_init_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_init_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_init_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_load_privkey_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_load_privkey_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_load_privkey_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_load_pubkey_function.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_load_pubkey_function.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_load_pubkey_function.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_name.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_name.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_table_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_table_flags.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_set_table_flags.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_DH.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_DH.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_DSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_DSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_RAND.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_RAND.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_RAND.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_RSA.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_RSA.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_ciphers.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_ciphers.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_digests.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_digests.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_unregister_digests.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_up_ref.3 new file mode 120000 index 00000000..af529ac9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ENGINE_up_ref.3 @@ -0,0 +1 @@ +ENGINE_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_FATAL_ERROR.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_FATAL_ERROR.3 new file mode 120000 index 00000000..1ad0bf79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_FATAL_ERROR.3 @@ -0,0 +1 @@ +ERR_GET_LIB.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_FUNC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_FUNC.3 new file mode 120000 index 00000000..1ad0bf79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_FUNC.3 @@ -0,0 +1 @@ +ERR_GET_LIB.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_LIB.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_LIB.3 index 326a6965..197879c6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_LIB.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_LIB.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_GET_LIB 3" -.TH ERR_GET_LIB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_GET_LIB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_REASON.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_REASON.3 new file mode 120000 index 00000000..1ad0bf79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_GET_REASON.3 @@ -0,0 +1 @@ +ERR_GET_LIB.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_PACK.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_PACK.3 new file mode 120000 index 00000000..9aa18d84 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_PACK.3 @@ -0,0 +1 @@ +ERR_load_strings.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_add_error_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_add_error_data.3 new file mode 120000 index 00000000..f3142674 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_add_error_data.3 @@ -0,0 +1 @@ +ERR_put_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_add_error_vdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_add_error_vdata.3 new file mode 120000 index 00000000..f3142674 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_add_error_vdata.3 @@ -0,0 +1 @@ +ERR_put_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_clear_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_clear_error.3 index 9e5cec6a..58ca5052 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_clear_error.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_clear_error.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_CLEAR_ERROR 3" -.TH ERR_CLEAR_ERROR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_CLEAR_ERROR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_error_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_error_string.3 index 7b2b946e..56a59631 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_error_string.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_error_string.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_ERROR_STRING 3" -.TH ERR_ERROR_STRING 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_ERROR_STRING 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_error_string_n.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_error_string_n.3 new file mode 120000 index 00000000..565a5ddd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_error_string_n.3 @@ -0,0 +1 @@ +ERR_error_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_free_strings.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_free_strings.3 new file mode 120000 index 00000000..1bb33ce4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_free_strings.3 @@ -0,0 +1 @@ +ERR_load_crypto_strings.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_func_error_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_func_error_string.3 new file mode 120000 index 00000000..565a5ddd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_func_error_string.3 @@ -0,0 +1 @@ +ERR_error_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error.3 index 010fdc02..cb2f31a4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_GET_ERROR 3" -.TH ERR_GET_ERROR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_GET_ERROR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -179,7 +179,7 @@ messages. .PP \&\fBERR_get_error_line()\fR, \fBERR_peek_error_line()\fR and \&\fBERR_peek_last_error_line()\fR are the same as the above, but they -additionally store the file name and line number where +additionally store the filename and line number where the error occurred in *\fBfile\fR and *\fBline\fR, unless these are \fB\s-1NULL\s0\fR. .PP \&\fBERR_get_error_line_data()\fR, \fBERR_peek_error_line_data()\fR and @@ -200,7 +200,7 @@ The error code, or 0 if there is no error in the queue. \&\s-1\fBERR_GET_LIB\s0\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error_line.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error_line.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error_line.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error_line_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error_line_data.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_error_line_data.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_next_error_library.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_next_error_library.3 new file mode 120000 index 00000000..9aa18d84 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_get_next_error_library.3 @@ -0,0 +1 @@ +ERR_load_strings.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_lib_error_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_lib_error_string.3 new file mode 120000 index 00000000..565a5ddd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_lib_error_string.3 @@ -0,0 +1 @@ +ERR_error_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_crypto_strings.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_crypto_strings.3 index 9dc2e3b9..eb25b18c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_crypto_strings.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_crypto_strings.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_LOAD_CRYPTO_STRINGS 3" -.TH ERR_LOAD_CRYPTO_STRINGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_LOAD_CRYPTO_STRINGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_strings.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_strings.3 index 6235ee38..95acc357 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_strings.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_load_strings.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_LOAD_STRINGS 3" -.TH ERR_LOAD_STRINGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_LOAD_STRINGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -145,7 +145,7 @@ ERR_load_strings, ERR_PACK, ERR_get_next_error_library \- load arbitrary error s .Vb 1 \& #include \& -\& void ERR_load_strings(int lib, ERR_STRING_DATA str[]); +\& int ERR_load_strings(int lib, ERR_STRING_DATA *str); \& \& int ERR_get_next_error_library(void); \& @@ -175,7 +175,7 @@ The last entry in the array is {0,0}. to user libraries at runtime. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBERR_load_strings()\fR returns no value. \s-1\fBERR_PACK\s0()\fR return the error code. +\&\fBERR_load_strings()\fR returns 1 for success and 0 for failure. \s-1\fBERR_PACK\s0()\fR returns the error code. \&\fBERR_get_next_error_library()\fR returns zero on failure, otherwise a new library number. .SH "SEE ALSO" @@ -183,7 +183,7 @@ library number. \&\fBERR_load_strings\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error_line.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error_line.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error_line.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error_line_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error_line_data.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_error_line_data.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error_line.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error_line.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error_line.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error_line_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error_line_data.3 new file mode 120000 index 00000000..cd53b195 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_peek_last_error_line_data.3 @@ -0,0 +1 @@ +ERR_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_pop_to_mark.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_pop_to_mark.3 new file mode 120000 index 00000000..8b1eb619 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_pop_to_mark.3 @@ -0,0 +1 @@ +ERR_set_mark.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors.3 index 8cc56c93..766372e7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_PRINT_ERRORS 3" -.TH ERR_PRINT_ERRORS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_PRINT_ERRORS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -165,7 +165,7 @@ emptying the error queue. The error strings will have the following format: .PP .Vb 1 -\& [pid]:error:[error code]:[library name]:[function name]:[reason string]:[file name]:[line]:[optional text message] +\& [pid]:error:[error code]:[library name]:[function name]:[reason string]:[filename]:[line]:[optional text message] .Ve .PP \&\fIerror code\fR is an 8 digit hexadecimal number. \fIlibrary name\fR, @@ -183,7 +183,7 @@ the error string will contain the numeric code. \&\fBERR_get_error\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors_cb.3 new file mode 120000 index 00000000..1b050b58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors_cb.3 @@ -0,0 +1 @@ +ERR_print_errors.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors_fp.3 new file mode 120000 index 00000000..1b050b58 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_print_errors_fp.3 @@ -0,0 +1 @@ +ERR_print_errors.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_put_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_put_error.3 index a2973c18..9d8d1895 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_put_error.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_put_error.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_PUT_ERROR 3" -.TH ERR_PUT_ERROR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_PUT_ERROR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -177,14 +177,14 @@ descriptions. For example, the function \fBssl3_read_bytes()\fR reports a \& SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE); .Ve .PP -Function and reason codes should consist of upper case characters, +Function and reason codes should consist of uppercase characters, numbers and underscores only. The error file generation script translates function codes into function names by looking in the header files for an appropriate function name, if none is found it just uses the capitalized form such as \*(L"\s-1SSL3_READ_BYTES\*(R"\s0 in the above example. .PP The trailing section of a reason code (after the \*(L"_R_\*(R") is translated -into lower case and underscores changed to spaces. +into lowercase and underscores changed to spaces. .PP Although a library will normally report errors using its own specific XXXerr macro, another library's macro can be used. This is normally @@ -199,7 +199,7 @@ no values. \&\fBERR_load_strings\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_reason_error_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_reason_error_string.3 new file mode 120000 index 00000000..565a5ddd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_reason_error_string.3 @@ -0,0 +1 @@ +ERR_error_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_remove_state.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_remove_state.3 index 21a7e031..9d74acd9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_remove_state.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_remove_state.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_REMOVE_STATE 3" -.TH ERR_REMOVE_STATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_REMOVE_STATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_remove_thread_state.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_remove_thread_state.3 new file mode 120000 index 00000000..7c3d2c1b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_remove_thread_state.3 @@ -0,0 +1 @@ +ERR_remove_state.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_set_mark.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_set_mark.3 index 65ab4cab..d09f4023 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_set_mark.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ERR_set_mark.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ERR_SET_MARK 3" -.TH ERR_SET_MARK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ERR_SET_MARK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_CERT_ID_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_ISSUER_SERIAL_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ESS_SIGNING_CERT_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_BytesToKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_BytesToKey.3 index f5fefedd..2f92dcf4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_BytesToKey.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_BytesToKey.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_BYTESTOKEY 3" -.TH EVP_BYTESTOKEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_BYTESTOKEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_block_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_block_size.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_block_size.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_cipher.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_cipher.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_ctrl.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_ctrl.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_flags.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_flags.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_free.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_free.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_get_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_get_app_data.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_get_app_data.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_get_cipher_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_get_cipher_data.3 index 1333ef4b..e4e24b94 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_get_cipher_data.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_get_cipher_data.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_CIPHER_CTX_GET_CIPHER_DATA 3" -.TH EVP_CIPHER_CTX_GET_CIPHER_DATA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_CIPHER_CTX_GET_CIPHER_DATA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_iv_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_iv_length.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_iv_length.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_key_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_key_length.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_key_length.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_mode.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_mode.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_new.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_new.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_nid.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_nid.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_reset.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_reset.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_reset.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_app_data.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_app_data.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_cipher_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_cipher_data.3 new file mode 120000 index 00000000..9d73e296 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_cipher_data.3 @@ -0,0 +1 @@ +EVP_CIPHER_CTX_get_cipher_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_key_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_key_length.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_key_length.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_padding.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_padding.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_set_padding.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_type.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_CTX_type.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_asn1_to_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_asn1_to_param.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_asn1_to_param.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_block_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_block_size.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_block_size.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_flags.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_flags.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_iv_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_iv_length.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_iv_length.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_key_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_key_length.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_key_length.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_dup.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_dup.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_free.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_free.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_cleanup.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_cleanup.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_ctrl.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_ctrl.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_do_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_do_cipher.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_do_cipher.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_get_asn1_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_get_asn1_params.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_get_asn1_params.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_init.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_init.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_set_asn1_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_set_asn1_params.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_get_set_asn1_params.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_new.3 index 28c75d85..49a90f60 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_CIPHER_METH_NEW 3" -.TH EVP_CIPHER_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_CIPHER_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_cleanup.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_cleanup.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_ctrl.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_ctrl.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_do_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_do_cipher.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_do_cipher.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_flags.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_flags.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_get_asn1_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_get_asn1_params.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_get_asn1_params.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_impl_ctx_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_impl_ctx_size.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_impl_ctx_size.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_init.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_init.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_iv_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_iv_length.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_iv_length.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_set_asn1_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_set_asn1_params.3 new file mode 120000 index 00000000..3e167821 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_meth_set_set_asn1_params.3 @@ -0,0 +1 @@ +EVP_CIPHER_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_mode.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_mode.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_nid.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_nid.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_param_to_asn1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_param_to_asn1.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_param_to_asn1.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_type.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CIPHER_type.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherFinal.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherFinal.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherFinal_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherFinal_ex.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherFinal_ex.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherInit.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherInit.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherInit_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherInit_ex.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherInit_ex.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherUpdate.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_CipherUpdate.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeBlock.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeBlock.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeBlock.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeFinal.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeFinal.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeInit.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeInit.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeUpdate.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecodeUpdate.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptFinal.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptFinal.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptFinal_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptFinal_ex.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptFinal_ex.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptInit.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptInit.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptInit_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptInit_ex.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptInit_ex.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptUpdate.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DecryptUpdate.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_Digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_Digest.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_Digest.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinal.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinal.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinalXOF.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinalXOF.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinalXOF.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinal_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinal_ex.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestFinal_ex.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestInit.3 index d7b5c311..c5e33c4b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_DIGESTINIT 3" -.TH EVP_DIGESTINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_DIGESTINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -195,7 +195,7 @@ EVP_MD_CTX_new, EVP_MD_CTX_reset, EVP_MD_CTX_free, EVP_MD_CTX_copy, EVP_MD_CTX_c .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 digest routines are a high level interface to message digests, +The \s-1EVP\s0 digest routines are a high-level interface to message digests, and should be used instead of the cipher-specific functions. .IP "\fBEVP_MD_CTX_new()\fR" 4 .IX Item "EVP_MD_CTX_new()" @@ -386,7 +386,7 @@ This function has no return value. .SH "NOTES" .IX Header "NOTES" The \fB\s-1EVP\s0\fR interface to message digests should almost always be used in -preference to the low level interfaces. This is because the code then becomes +preference to the low-level interfaces. This is because the code then becomes transparent to the digest used and much more flexible. .PP New applications should use the \s-1SHA\-2\s0 (such as \fBEVP_sha256\fR\|(3)) or the \s-1SHA\-3\s0 @@ -489,7 +489,7 @@ The \fBEVP_dss1()\fR function was removed in OpenSSL 1.1.0. The \fBEVP_MD_CTX_set_pkey_ctx()\fR function was added in 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestInit_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestInit_ex.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestInit_ex.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSign.3 new file mode 120000 index 00000000..75173db6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSign.3 @@ -0,0 +1 @@ +EVP_DigestSignInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignFinal.3 new file mode 120000 index 00000000..75173db6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignFinal.3 @@ -0,0 +1 @@ +EVP_DigestSignInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignInit.3 index 55c3aab1..03c31f79 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_DIGESTSIGNINIT 3" -.TH EVP_DIGESTSIGNINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_DIGESTSIGNINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -156,7 +156,7 @@ EVP_DigestSignInit, EVP_DigestSignUpdate, EVP_DigestSignFinal, EVP_DigestSign \- .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 signature routines are a high level interface to digital signatures. +The \s-1EVP\s0 signature routines are a high-level interface to digital signatures. .PP \&\fBEVP_DigestSignInit()\fR sets up signing context \fBctx\fR to use digest \fBtype\fR from \&\s-1ENGINE\s0 \fBe\fR and private key \fBpkey\fR. \fBctx\fR must be created with @@ -232,7 +232,7 @@ The error codes can be obtained from \fBERR_get_error\fR\|(3). .SH "NOTES" .IX Header "NOTES" The \fB\s-1EVP\s0\fR interface to digital signatures should almost always be used in -preference to the low level interfaces. This is because the code then becomes +preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible. .PP \&\fBEVP_DigestSign()\fR is a one shot operation which signs a single block of data diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignUpdate.3 new file mode 120000 index 00000000..75173db6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestSignUpdate.3 @@ -0,0 +1 @@ +EVP_DigestSignInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestUpdate.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestUpdate.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerify.3 new file mode 120000 index 00000000..fc7742c1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerify.3 @@ -0,0 +1 @@ +EVP_DigestVerifyInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyFinal.3 new file mode 120000 index 00000000..fc7742c1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyFinal.3 @@ -0,0 +1 @@ +EVP_DigestVerifyInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyInit.3 index 4ba9b171..e1007826 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_DIGESTVERIFYINIT 3" -.TH EVP_DIGESTVERIFYINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_DIGESTVERIFYINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -155,7 +155,7 @@ EVP_DigestVerifyInit, EVP_DigestVerifyUpdate, EVP_DigestVerifyFinal, EVP_DigestV .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 signature routines are a high level interface to digital signatures. +The \s-1EVP\s0 signature routines are a high-level interface to digital signatures. .PP \&\fBEVP_DigestVerifyInit()\fR sets up verification context \fBctx\fR to use digest \&\fBtype\fR from \s-1ENGINE\s0 \fBe\fR and public key \fBpkey\fR. \fBctx\fR must be created @@ -196,7 +196,7 @@ The error codes can be obtained from \fBERR_get_error\fR\|(3). .SH "NOTES" .IX Header "NOTES" The \fB\s-1EVP\s0\fR interface to digital signatures should almost always be used in -preference to the low level interfaces. This is because the code then becomes +preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible. .PP \&\fBEVP_DigestVerify()\fR is a one shot operation which verifies a single block of @@ -235,7 +235,7 @@ will occur. were added in OpenSSL 1.0.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyUpdate.3 new file mode 120000 index 00000000..fc7742c1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_DigestVerifyUpdate.3 @@ -0,0 +1 @@ +EVP_DigestVerifyInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_copy.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_copy.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_free.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_free.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_new.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_new.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_num.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_num.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ENCODE_CTX_num.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeBlock.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeBlock.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeBlock.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeFinal.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeFinal.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeInit.3 index e989c398..bd67f912 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_ENCODEINIT 3" -.TH EVP_ENCODEINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_ENCODEINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -163,7 +163,7 @@ EVP_ENCODE_CTX_new, EVP_ENCODE_CTX_free, EVP_ENCODE_CTX_copy, EVP_ENCODE_CTX_num .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 encode routines provide a high level interface to base 64 encoding and +The \s-1EVP\s0 encode routines provide a high-level interface to base 64 encoding and decoding. Base 64 encoding converts binary data into a printable form that uses the characters A\-Z, a\-z, 0\-9, \*(L"+\*(R" and \*(L"/\*(R" to represent the data. For every 3 bytes of binary data provided 4 bytes of base 64 encoded data will be produced @@ -217,8 +217,8 @@ sufficiently large to accommodate the output data which will never be more than be encoded or decoded that are pending in the \fBctx\fR object. .PP \&\fBEVP_EncodeBlock()\fR encodes a full block of input data in \fBf\fR and of length -\&\fBdlen\fR and stores it in \fBt\fR. For every 3 bytes of input provided 4 bytes of -output data will be produced. If \fBdlen\fR is not divisible by 3 then the block is +\&\fBn\fR and stores it in \fBt\fR. For every 3 bytes of input provided 4 bytes of +output data will be produced. If \fBn\fR is not divisible by 3 then the block is encoded as a final block of data and the output is padded such that it is always divisible by 4. Additionally a \s-1NUL\s0 terminator character will be added. For example if 16 bytes of input data is provided then 24 bytes of encoded data is @@ -282,7 +282,7 @@ then no more non-padding base 64 characters are expected. \&\fBevp\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeUpdate.3 new file mode 120000 index 00000000..332ef778 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncodeUpdate.3 @@ -0,0 +1 @@ +EVP_EncodeInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptFinal.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptFinal.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptFinal_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptFinal_ex.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptFinal_ex.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptInit.3 index 83753d88..5418bdd1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_ENCRYPTINIT 3" -.TH EVP_ENCRYPTINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_ENCRYPTINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -211,7 +211,7 @@ EVP_CIPHER_CTX_new, EVP_CIPHER_CTX_reset, EVP_CIPHER_CTX_free, EVP_EncryptInit_e .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 cipher routines are a high level interface to certain +The \s-1EVP\s0 cipher routines are a high-level interface to certain symmetric ciphers. .PP \&\fBEVP_CIPHER_CTX_new()\fR creates a cipher context. @@ -237,10 +237,15 @@ appropriate. \&\fBEVP_EncryptUpdate()\fR encrypts \fBinl\fR bytes from the buffer \fBin\fR and writes the encrypted version to \fBout\fR. This function can be called multiple times to encrypt successive blocks of data. The amount -of data written depends on the block alignment of the encrypted data: -as a result the amount of data written may be anything from zero bytes -to (inl + cipher_block_size \- 1) so \fBout\fR should contain sufficient -room. The actual number of bytes written is placed in \fBoutl\fR. It also +of data written depends on the block alignment of the encrypted data. +For most ciphers and modes, the amount of data written can be anything +from zero bytes to (inl + cipher_block_size \- 1) bytes. +For wrap cipher modes, the amount of data written can be anything +from zero bytes to (inl + cipher_block_size) bytes. +For stream ciphers, the amount of data written can be anything from zero +bytes to inl bytes. +Thus, \fBout\fR should contain sufficient room for the operation being performed. +The actual number of bytes written is placed in \fBoutl\fR. It also checks if \fBin\fR and \fBout\fR are partially overlapping, and if they are 0 is returned to indicate failure. .PP @@ -398,7 +403,7 @@ length. \&\fBEVP_CIPHER_CTX_set_padding()\fR always returns 1. .PP \&\fBEVP_CIPHER_iv_length()\fR and \fBEVP_CIPHER_CTX_iv_length()\fR return the \s-1IV\s0 -length or zero if the cipher does not use an \s-1IV.\s0 +length, zero if the cipher does not use an \s-1IV\s0 and a negative value on error. .PP \&\fBEVP_CIPHER_type()\fR and \fBEVP_CIPHER_CTX_type()\fR return the \s-1NID\s0 of the cipher's \&\s-1OBJECT IDENTIFIER\s0 or NID_undef if it has no defined \s-1OBJECT IDENTIFIER.\s0 @@ -452,18 +457,20 @@ For \s-1OCB,\s0 \f(CW\*(C`taglen\*(C'\fR must either be 16 or the value previous \&\fB\s-1EVP_CTRL_AEAD_SET_TAG\s0\fR. .IP "EVP_CIPHER_CTX_ctrl(ctx, \s-1EVP_CTRL_AEAD_SET_TAG,\s0 taglen, tag)" 4 .IX Item "EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, taglen, tag)" -Sets the expected tag to \f(CW\*(C`taglen\*(C'\fR bytes from \f(CW\*(C`tag\*(C'\fR. -The tag length can only be set before specifying an \s-1IV.\s0 +When decrypting, this call sets the expected tag to \f(CW\*(C`taglen\*(C'\fR bytes from \f(CW\*(C`tag\*(C'\fR. \&\f(CW\*(C`taglen\*(C'\fR must be between 1 and 16 inclusive. +The tag must be set prior to any call to \fBEVP_DecryptFinal()\fR or +\&\fBEVP_DecryptFinal_ex()\fR. .Sp For \s-1GCM,\s0 this call is only valid when decrypting data. .Sp For \s-1OCB,\s0 this call is valid when decrypting data to set the expected tag, -and before encryption to set the desired tag length. +and when encrypting to set the desired tag length. .Sp -In \s-1OCB\s0 mode, calling this before encryption with \f(CW\*(C`tag\*(C'\fR set to \f(CW\*(C`NULL\*(C'\fR sets the -tag length. If this is not called prior to encryption, a default tag length is -used. +In \s-1OCB\s0 mode, calling this when encrypting with \f(CW\*(C`tag\*(C'\fR set to \f(CW\*(C`NULL\*(C'\fR sets the +tag length. The tag length can only be set before specifying an \s-1IV.\s0 If this is +not called prior to setting the \s-1IV\s0 during encryption, then a default tag length +is used. .Sp For \s-1OCB AES,\s0 the default tag length is 16 (i.e. 128 bits). It is also the maximum tag length for \s-1OCB.\s0 @@ -491,8 +498,8 @@ passing additional authenticated data (see \*(L"\s-1AEAD\s0 Interface\*(R"). Sets the \s-1CCM\s0 \fBL\fR value. If not set a default is used (8 for \s-1AES\s0). .IP "EVP_CIPHER_CTX_ctrl(ctx, \s-1EVP_CTRL_AEAD_SET_IVLEN,\s0 ivlen, \s-1NULL\s0)" 4 .IX Item "EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, ivlen, NULL)" -Sets the \s-1CCM\s0 nonce (\s-1IV\s0) length. This call can only be made before specifying an -nonce value. The nonce length is given by \fB15 \- L\fR so it is 7 by default for +Sets the \s-1CCM\s0 nonce (\s-1IV\s0) length. This call can only be made before specifying +a nonce value. The nonce length is given by \fB15 \- L\fR so it is 7 by default for \&\s-1AES.\s0 .SS "ChaCha20\-Poly1305" .IX Subsection "ChaCha20-Poly1305" @@ -521,10 +528,10 @@ This call is only valid when decrypting data. .SH "NOTES" .IX Header "NOTES" Where possible the \fB\s-1EVP\s0\fR interface to symmetric ciphers should be used in -preference to the low level interfaces. This is because the code then becomes +preference to the low-level interfaces. This is because the code then becomes transparent to the cipher used and much more flexible. Additionally, the \&\fB\s-1EVP\s0\fR interface will ensure the use of platform specific cryptographic -acceleration such as AES-NI (the low level interfaces do not provide the +acceleration such as AES-NI (the low-level interfaces do not provide the guarantee). .PP \&\s-1PKCS\s0 padding works by adding \fBn\fR padding bytes of value \fBn\fR to make the total @@ -652,7 +659,7 @@ with a 128\-bit key: \& \& /* Don\*(Aqt set key or IV right away; we want to check lengths */ \& ctx = EVP_CIPHER_CTX_new(); -\& EVP_CipherInit_ex(&ctx, EVP_aes_128_cbc(), NULL, NULL, NULL, +\& EVP_CipherInit_ex(ctx, EVP_aes_128_cbc(), NULL, NULL, NULL, \& do_encrypt); \& OPENSSL_assert(EVP_CIPHER_CTX_key_length(ctx) == 16); \& OPENSSL_assert(EVP_CIPHER_CTX_iv_length(ctx) == 16); @@ -712,7 +719,7 @@ disappeared. \fBEVP_CIPHER_CTX_init()\fR remains as an alias for \&\fBEVP_CIPHER_CTX_reset()\fR. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptInit_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptInit_ex.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptInit_ex.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptUpdate.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_EncryptUpdate.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_block_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_block_size.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_block_size.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_clear_flags.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_clear_flags.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_copy.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_copy.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_copy_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_copy_ex.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_copy_ex.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_ctrl.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_ctrl.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_free.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_free.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_md.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_md.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_md_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_md_data.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_md_data.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_new.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_new.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_pkey_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_pkey_ctx.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_pkey_ctx.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_reset.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_reset.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_reset.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_flags.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_flags.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_pkey_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_pkey_ctx.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_pkey_ctx.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_update_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_update_fn.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_set_update_fn.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_size.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_size.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_test_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_test_flags.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_test_flags.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_type.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_type.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_update_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_update_fn.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_CTX_update_fn.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_block_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_block_size.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_block_size.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_flags.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_flags.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_dup.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_dup.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_free.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_free.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_app_datasize.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_app_datasize.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_app_datasize.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_cleanup.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_cleanup.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_copy.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_copy.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_ctrl.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_ctrl.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_final.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_final.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_flags.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_flags.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_init.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_init.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_input_blocksize.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_input_blocksize.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_input_blocksize.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_result_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_result_size.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_result_size.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_update.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_get_update.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_new.3 index baea6040..6130d801 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_MD_METH_NEW 3" -.TH EVP_MD_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_MD_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_app_datasize.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_app_datasize.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_app_datasize.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_cleanup.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_cleanup.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_copy.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_copy.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_ctrl.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_ctrl.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_final.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_final.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_flags.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_flags.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_init.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_init.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_input_blocksize.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_input_blocksize.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_input_blocksize.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_result_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_result_size.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_result_size.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_update.3 new file mode 120000 index 00000000..3e59e2a7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_meth_set_update.3 @@ -0,0 +1 @@ +EVP_MD_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_pkey_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_pkey_type.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_pkey_type.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_size.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_size.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_type.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_MD_type.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenFinal.3 new file mode 120000 index 00000000..3e674973 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenFinal.3 @@ -0,0 +1 @@ +EVP_OpenInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenInit.3 index 4a3117aa..477be908 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_OPENINIT 3" -.TH EVP_OPENINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_OPENINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -153,7 +153,7 @@ EVP_OpenInit, EVP_OpenUpdate, EVP_OpenFinal \- EVP envelope decryption .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 envelope routines are a high level interface to envelope +The \s-1EVP\s0 envelope routines are a high-level interface to envelope decryption. They decrypt a public key encrypted symmetric key and then decrypt data using it. .PP @@ -192,7 +192,7 @@ recovered secret key size) if successful. \&\fBEVP_SealInit\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenUpdate.3 new file mode 120000 index 00000000..3e674973 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_OpenUpdate.3 @@ -0,0 +1 @@ +EVP_OpenInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_ASN1_METHOD.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_ASN1_METHOD.3 index e5a29c54..07739666 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_ASN1_METHOD.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_ASN1_METHOD.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_ASN1_METHOD 3" -.TH EVP_PKEY_ASN1_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_ASN1_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_add1_hkdf_info.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_add1_hkdf_info.3 new file mode 120000 index 00000000..71d96cbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_add1_hkdf_info.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_add1_tls1_prf_seed.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_add1_tls1_prf_seed.3 new file mode 120000 index 00000000..eb13006d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_add1_tls1_prf_seed.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_tls1_prf_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl.3 index 9667e7b7..80628fcd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CTX_CTRL 3" -.TH EVP_PKEY_CTX_CTRL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CTX_CTRL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -370,7 +370,7 @@ parameter generation. Use 0 for PKCS#3 \s-1DH\s0 and 1 for X9.42 \s-1DH.\s0 The default is 0. .PP The \fBEVP_PKEY_CTX_set_dh_pad()\fR macro sets the \s-1DH\s0 padding mode. If \fBpad\fR is -1 the shared secret is padded with zeroes up to the size of the \s-1DH\s0 prime \fBp\fR. +1 the shared secret is padded with zeros up to the size of the \s-1DH\s0 prime \fBp\fR. If \fBpad\fR is zero (the default) then no padding is performed. .PP \&\fBEVP_PKEY_CTX_set_dh_nid()\fR sets the \s-1DH\s0 parameters to values corresponding to @@ -530,7 +530,7 @@ The macros were added in 1.1.1, other functions were added in OpenSSL 1.0.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl_str.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl_str.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl_str.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl_uint64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl_uint64.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_ctrl_uint64.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_dup.3 new file mode 120000 index 00000000..6a32eb64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_dup.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_free.3 new file mode 120000 index 00000000..6a32eb64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_free.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_dh_kdf_oid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_dh_kdf_oid.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_dh_kdf_oid.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_dh_kdf_ukm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_dh_kdf_ukm.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_dh_kdf_ukm.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_ecdh_kdf_ukm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_ecdh_kdf_ukm.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_ecdh_kdf_ukm.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_rsa_oaep_label.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_rsa_oaep_label.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get0_rsa_oaep_label.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get1_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get1_id.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get1_id.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get1_id_len.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get1_id_len.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get1_id_len.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_app_data.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_app_data.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_cb.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_cb.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_outlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_outlen.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_outlen.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_type.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_dh_kdf_type.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_cofactor_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_cofactor_mode.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_cofactor_mode.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_outlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_outlen.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_outlen.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_type.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_ecdh_kdf_type.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_keygen_info.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_keygen_info.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_keygen_info.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_mgf1_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_mgf1_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_mgf1_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_oaep_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_oaep_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_oaep_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_padding.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_padding.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_padding.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_pss_saltlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_pss_saltlen.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_rsa_pss_saltlen.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_signature_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_signature_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_get_signature_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_hkdf_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_hkdf_mode.3 new file mode 120000 index 00000000..71d96cbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_hkdf_mode.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_new.3 index 7e25d761..cf0d8ddd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CTX_NEW 3" -.TH EVP_PKEY_CTX_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CTX_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -167,7 +167,7 @@ If \fBctx\fR is \s-1NULL,\s0 nothing is done. .SH "NOTES" .IX Header "NOTES" The \fB\s-1EVP_PKEY_CTX\s0\fR structure is an opaque public key algorithm context used -by the OpenSSL high level public key \s-1API.\s0 Contexts \fB\s-1MUST NOT\s0\fR be shared between +by the OpenSSL high-level public key \s-1API.\s0 Contexts \fB\s-1MUST NOT\s0\fR be shared between threads: that is it is not permissible to use the same context simultaneously in two threads. .SH "RETURN VALUES" @@ -184,7 +184,7 @@ the newly allocated \fB\s-1EVP_PKEY_CTX\s0\fR structure of \fB\s-1NULL\s0\fR if These functions were added in OpenSSL 1.0.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_new_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_new_id.3 new file mode 120000 index 00000000..6a32eb64 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_new_id.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_dh_kdf_oid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_dh_kdf_oid.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_dh_kdf_oid.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_dh_kdf_ukm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_dh_kdf_ukm.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_dh_kdf_ukm.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_ecdh_kdf_ukm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_ecdh_kdf_ukm.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_ecdh_kdf_ukm.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_rsa_oaep_label.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_rsa_oaep_label.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set0_rsa_oaep_label.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_hkdf_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_hkdf_key.3 new file mode 120000 index 00000000..71d96cbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_hkdf_key.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_hkdf_salt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_hkdf_salt.3 new file mode 120000 index 00000000..71d96cbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_hkdf_salt.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_hkdf_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_id.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_id.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_pbe_pass.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_pbe_pass.3 index fe5cd1c7..dbcb25d3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_pbe_pass.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_pbe_pass.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CTX_SET1_PBE_PASS 3" -.TH EVP_PKEY_CTX_SET1_PBE_PASS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CTX_SET1_PBE_PASS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_scrypt_salt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_scrypt_salt.3 new file mode 120000 index 00000000..d207ebdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_scrypt_salt.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_tls1_prf_secret.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_tls1_prf_secret.3 new file mode 120000 index 00000000..eb13006d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set1_tls1_prf_secret.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_tls1_prf_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_app_data.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_app_data.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_cb.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_cb.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_outlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_outlen.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_outlen.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_type.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_kdf_type.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_nid.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_nid.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_pad.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_pad.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_pad.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_generator.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_generator.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_generator.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_prime_len.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_prime_len.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_prime_len.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_subprime_len.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_subprime_len.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_subprime_len.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_type.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_paramgen_type.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_rfc5114.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_rfc5114.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dh_rfc5114.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dhx_rfc5114.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dhx_rfc5114.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dhx_rfc5114.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_bits.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_bits.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_q_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_q_bits.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_dsa_paramgen_q_bits.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ec_param_enc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ec_param_enc.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ec_param_enc.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ec_paramgen_curve_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ec_paramgen_curve_nid.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ec_paramgen_curve_nid.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_cofactor_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_cofactor_mode.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_cofactor_mode.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_outlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_outlen.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_outlen.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_type.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_ecdh_kdf_type.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_hkdf_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_hkdf_md.3 index 6542c750..8decd03a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_hkdf_md.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_hkdf_md.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CTX_SET_HKDF_MD 3" -.TH EVP_PKEY_CTX_SET_HKDF_MD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CTX_SET_HKDF_MD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_mac_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_mac_key.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_mac_key.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_bits.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_bits.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_primes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_primes.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_primes.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_pubexp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_pubexp.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_keygen_pubexp.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_mgf1_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_mgf1_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_mgf1_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_oaep_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_oaep_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_oaep_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_padding.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_padding.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_padding.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 index 19461385..03221b71 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CTX_SET_RSA_PSS_KEYGEN_MD 3" -.TH EVP_PKEY_CTX_SET_RSA_PSS_KEYGEN_MD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CTX_SET_RSA_PSS_KEYGEN_MD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md.3 new file mode 120000 index 00000000..2a761a76 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_mgf1_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen.3 new file mode 120000 index 00000000..2a761a76 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_keygen_saltlen.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_rsa_pss_keygen_md.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_saltlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_saltlen.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_rsa_pss_saltlen.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_N.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_N.3 index 60716e99..7d01b591 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_N.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_N.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CTX_SET_SCRYPT_N 3" -.TH EVP_PKEY_CTX_SET_SCRYPT_N 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CTX_SET_SCRYPT_N 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_maxmem_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_maxmem_bytes.3 new file mode 120000 index 00000000..d207ebdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_maxmem_bytes.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_p.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_p.3 new file mode 120000 index 00000000..d207ebdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_p.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_r.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_r.3 new file mode 120000 index 00000000..d207ebdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_scrypt_r.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_set_scrypt_N.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_signature_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_signature_md.3 new file mode 120000 index 00000000..1df3e461 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_signature_md.3 @@ -0,0 +1 @@ +EVP_PKEY_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_tls1_prf_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_tls1_prf_md.3 index fab8f310..e84a8b59 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_tls1_prf_md.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_CTX_set_tls1_prf_md.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CTX_SET_TLS1_PRF_MD 3" -.TH EVP_PKEY_CTX_SET_TLS1_PRF_MD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CTX_SET_TLS1_PRF_MD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_METHOD.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_METHOD.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_METHOD.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_add0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_add0.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_add0.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_add_alias.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_add_alias.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_add_alias.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_copy.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_copy.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_find.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_find.3 new file mode 120000 index 00000000..16a955ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_find.3 @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_find_str.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_find_str.3 new file mode 120000 index 00000000..16a955ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_find_str.3 @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_free.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_free.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get0.3 new file mode 120000 index 00000000..16a955ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get0.3 @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get0_info.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get0_info.3 new file mode 120000 index 00000000..16a955ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get0_info.3 @@ -0,0 +1 @@ +EVP_PKEY_asn1_get_count.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get_count.3 index d10444c4..d772daf8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get_count.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_get_count.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_ASN1_GET_COUNT 3" -.TH EVP_PKEY_ASN1_GET_COUNT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_ASN1_GET_COUNT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_new.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_new.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_check.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_check.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_ctrl.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_ctrl.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_free.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_free.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_get_priv_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_get_priv_key.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_get_priv_key.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_get_pub_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_get_pub_key.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_get_pub_key.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_item.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_item.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_item.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_param.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_param.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_param_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_param_check.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_param_check.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_private.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_private.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_private.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_public.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_public.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_public.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_public_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_public_check.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_public_check.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_security_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_security_bits.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_security_bits.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_set_priv_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_set_priv_key.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_set_priv_key.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_set_pub_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_set_pub_key.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_set_pub_key.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_siginf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_siginf.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_asn1_set_siginf.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_DH.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_DH.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_DSA.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_DSA.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_EC_KEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_EC_KEY.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_EC_KEY.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_POLY1305.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_POLY1305.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_POLY1305.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_RSA.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_RSA.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_SIPHASH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_SIPHASH.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_assign_SIPHASH.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_base_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_base_id.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_base_id.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_bits.3 new file mode 120000 index 00000000..4cf5d1b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_bits.3 @@ -0,0 +1 @@ +EVP_PKEY_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_check.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_check.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_cmp.3 index 05a5601c..37242a29 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_cmp.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_cmp.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_CMP 3" -.TH EVP_PKEY_CMP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_CMP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_cmp_parameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_cmp_parameters.3 new file mode 120000 index 00000000..92aa54cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_cmp_parameters.3 @@ -0,0 +1 @@ +EVP_PKEY_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_copy_parameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_copy_parameters.3 new file mode 120000 index 00000000..92aa54cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_copy_parameters.3 @@ -0,0 +1 @@ +EVP_PKEY_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_decrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_decrypt.3 index 4c0e322e..b687c578 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_decrypt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_decrypt.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_DECRYPT 3" -.TH EVP_PKEY_DECRYPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_DECRYPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_decrypt_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_decrypt_init.3 new file mode 120000 index 00000000..3ee29282 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_decrypt_init.3 @@ -0,0 +1 @@ +EVP_PKEY_decrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive.3 index 334b4f5f..25182203 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_DERIVE 3" -.TH EVP_PKEY_DERIVE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_DERIVE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive_init.3 new file mode 120000 index 00000000..c11df5c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive_init.3 @@ -0,0 +1 @@ +EVP_PKEY_derive.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive_set_peer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive_set_peer.3 new file mode 120000 index 00000000..c11df5c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_derive_set_peer.3 @@ -0,0 +1 @@ +EVP_PKEY_derive.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_encrypt.3 index 3989dd05..9883ea3d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_encrypt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_encrypt.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_ENCRYPT 3" -.TH EVP_PKEY_ENCRYPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_ENCRYPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_encrypt_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_encrypt_init.3 new file mode 120000 index 00000000..f9d3ca8a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_encrypt_init.3 @@ -0,0 +1 @@ +EVP_PKEY_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_free.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_free.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_gen_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_gen_cb.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_gen_cb.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_DH.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_DH.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_DSA.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_DSA.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_EC_KEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_EC_KEY.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_EC_KEY.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_RSA.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_RSA.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_asn1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_asn1.3 new file mode 120000 index 00000000..c67df162 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_asn1.3 @@ -0,0 +1 @@ +EVP_PKEY_ASN1_METHOD.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_engine.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_engine.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_hmac.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_hmac.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_hmac.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_poly1305.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_poly1305.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_poly1305.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_siphash.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_siphash.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get0_siphash.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_DH.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_DH.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_DSA.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_DSA.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_EC_KEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_EC_KEY.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_EC_KEY.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_RSA.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get1_RSA.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_default_digest_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_default_digest_nid.3 index 192fdfc4..b2449387 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_default_digest_nid.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_default_digest_nid.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_GET_DEFAULT_DIGEST_NID 3" -.TH EVP_PKEY_GET_DEFAULT_DIGEST_NID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_GET_DEFAULT_DIGEST_NID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_raw_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_raw_private_key.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_raw_private_key.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_raw_public_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_raw_public_key.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_get_raw_public_key.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_id.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_id.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_keygen.3 index bfc30e78..62d5c6f2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_keygen.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_keygen.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_KEYGEN 3" -.TH EVP_PKEY_KEYGEN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_KEYGEN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -182,7 +182,7 @@ generation callback. The function \fBEVP_PKEY_CTX_get_keygen_info()\fR returns parameters associated with the generation operation. If \fBidx\fR is \-1 the total number of parameters available is returned. Any non negative value returns the value of -that parameter. \fBEVP_PKEY_CTX_gen_keygen_info()\fR with a non-negative value for +that parameter. \fBEVP_PKEY_CTX_gen_keygen_info()\fR with a nonnegative value for \&\fBidx\fR should only be called within the generation callback. .PP If the callback returns 0 then the key generation operation is aborted and an @@ -327,7 +327,7 @@ These functions were added in OpenSSL 1.0.0. in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_keygen_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_keygen_init.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_keygen_init.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_add0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_add0.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_add0.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_copy.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_copy.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_find.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_find.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_find.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_free.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_free.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get0.3 new file mode 120000 index 00000000..ceb8a815 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get0.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_get_count.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get0_info.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get0_info.3 new file mode 120000 index 00000000..ceb8a815 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get0_info.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_get_count.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_check.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_check.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_cleanup.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_cleanup.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_copy.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_copy.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_count.3 index d814b2e6..06172b49 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_count.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_count.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_METH_GET_COUNT 3" -.TH EVP_PKEY_METH_GET_COUNT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_METH_GET_COUNT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_ctrl.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_ctrl.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_decrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_decrypt.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_decrypt.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_derive.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_derive.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_derive.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digest_custom.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digest_custom.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digest_custom.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digestsign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digestsign.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digestsign.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digestverify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digestverify.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_digestverify.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_encrypt.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_encrypt.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_init.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_init.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_keygen.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_keygen.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_param_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_param_check.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_param_check.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_paramgen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_paramgen.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_paramgen.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_public_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_public_check.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_public_check.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_sign.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_sign.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_signctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_signctx.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_signctx.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verify.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verify.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verify_recover.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verify_recover.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verify_recover.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verifyctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verifyctx.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_get_verifyctx.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_new.3 index fd9daff1..1368ea1c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_METH_NEW 3" -.TH EVP_PKEY_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_remove.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_remove.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_remove.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_check.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_check.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_cleanup.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_cleanup.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_copy.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_copy.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_ctrl.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_ctrl.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_decrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_decrypt.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_decrypt.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_derive.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_derive.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_derive.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digest_custom.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digest_custom.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digest_custom.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digestsign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digestsign.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digestsign.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digestverify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digestverify.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_digestverify.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_encrypt.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_encrypt.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_init.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_init.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_keygen.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_keygen.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_param_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_param_check.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_param_check.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_paramgen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_paramgen.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_paramgen.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_public_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_public_check.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_public_check.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_sign.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_sign.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_signctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_signctx.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_signctx.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verify.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verify.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verify_recover.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verify_recover.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verify_recover.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verifyctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verifyctx.3 new file mode 120000 index 00000000..2a39b7d0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_meth_set_verifyctx.3 @@ -0,0 +1 @@ +EVP_PKEY_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_missing_parameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_missing_parameters.3 new file mode 120000 index 00000000..92aa54cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_missing_parameters.3 @@ -0,0 +1 @@ +EVP_PKEY_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new.3 index 3f76152f..395863b6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_NEW 3" -.TH EVP_PKEY_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -194,7 +194,8 @@ information. Algorithm types that support raw public keys are \&\fBEVP_PKEY_new_CMAC_key()\fR works in the same way as \fBEVP_PKEY_new_raw_private_key()\fR except it is only for the \fB\s-1EVP_PKEY_CMAC\s0\fR algorithm type. In addition to the raw private key data, it also takes a cipher algorithm to be used during -creation of a \s-1CMAC\s0 in the \fBcipher\fR argument. +creation of a \s-1CMAC\s0 in the \fBcipher\fR argument. The cipher should be a standard +encryption only cipher. For example \s-1AEAD\s0 and \s-1XTS\s0 ciphers should not be used. .PP \&\fBEVP_PKEY_new_mac_key()\fR works in the same way as \fBEVP_PKEY_new_raw_private_key()\fR. New applications should use \fBEVP_PKEY_new_raw_private_key()\fR instead. diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_CMAC_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_CMAC_key.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_CMAC_key.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_mac_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_mac_key.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_mac_key.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_raw_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_raw_private_key.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_raw_private_key.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_raw_public_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_raw_public_key.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_new_raw_public_key.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_param_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_param_check.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_param_check.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_paramgen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_paramgen.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_paramgen.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_paramgen_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_paramgen_init.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_paramgen_init.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_params.3 new file mode 120000 index 00000000..6b3162eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_params.3 @@ -0,0 +1 @@ +EVP_PKEY_print_private.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_private.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_private.3 index a7c08745..843f6fe2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_private.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_private.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_PRINT_PRIVATE 3" -.TH EVP_PKEY_PRINT_PRIVATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_PRINT_PRIVATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_public.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_public.3 new file mode 120000 index 00000000..6b3162eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_print_public.3 @@ -0,0 +1 @@ +EVP_PKEY_print_private.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_public_check.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_public_check.3 new file mode 120000 index 00000000..375c0d8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_public_check.3 @@ -0,0 +1 @@ +EVP_PKEY_keygen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_security_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_security_bits.3 new file mode 120000 index 00000000..4cf5d1b1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_security_bits.3 @@ -0,0 +1 @@ +EVP_PKEY_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_DH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_DH.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_DH.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_DSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_DSA.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_DSA.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_EC_KEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_EC_KEY.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_EC_KEY.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_RSA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_RSA.3 index 48e151ef..37435447 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_RSA.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_RSA.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_SET1_RSA 3" -.TH EVP_PKEY_SET1_RSA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_SET1_RSA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_engine.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set1_engine.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set_alias_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set_alias_type.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_set_alias_type.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_sign.3 index 3b2733c9..5eb130b9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_sign.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_sign.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_SIGN 3" -.TH EVP_PKEY_SIGN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_SIGN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_sign_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_sign_init.3 new file mode 120000 index 00000000..0789a071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_sign_init.3 @@ -0,0 +1 @@ +EVP_PKEY_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_size.3 index 06a8243f..aa7bb5b9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_size.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_size.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_SIZE 3" -.TH EVP_PKEY_SIZE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_SIZE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_type.3 new file mode 120000 index 00000000..be0f1b40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_type.3 @@ -0,0 +1 @@ +EVP_PKEY_set1_RSA.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_up_ref.3 new file mode 120000 index 00000000..fb8163a6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_up_ref.3 @@ -0,0 +1 @@ +EVP_PKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify.3 index ecbb5fc2..e477d7b5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_VERIFY 3" -.TH EVP_PKEY_VERIFY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_VERIFY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_init.3 new file mode 120000 index 00000000..83397196 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_init.3 @@ -0,0 +1 @@ +EVP_PKEY_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_recover.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_recover.3 index 44d05a5b..959a9176 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_recover.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_recover.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_PKEY_VERIFY_RECOVER 3" -.TH EVP_PKEY_VERIFY_RECOVER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_PKEY_VERIFY_RECOVER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_recover_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_recover_init.3 new file mode 120000 index 00000000..be501ab4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_PKEY_verify_recover_init.3 @@ -0,0 +1 @@ +EVP_PKEY_verify_recover.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealFinal.3 new file mode 120000 index 00000000..a740a40c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealFinal.3 @@ -0,0 +1 @@ +EVP_SealInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealInit.3 index cb48d5e3..dae6213b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SEALINIT 3" -.TH EVP_SEALINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SEALINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -154,7 +154,7 @@ EVP_SealInit, EVP_SealUpdate, EVP_SealFinal \- EVP envelope encryption .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 envelope routines are a high level interface to envelope +The \s-1EVP\s0 envelope routines are a high-level interface to envelope encryption. They generate a random key and \s-1IV\s0 (if required) then \&\*(L"envelope\*(R" it by using public key encryption. Data can then be encrypted using this key. @@ -215,7 +215,7 @@ with \fBtype\fR set to \s-1NULL.\s0 \&\s-1\fBRAND\s0\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealUpdate.3 new file mode 120000 index 00000000..a740a40c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SealUpdate.3 @@ -0,0 +1 @@ +EVP_SealInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignFinal.3 new file mode 120000 index 00000000..c6358543 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignFinal.3 @@ -0,0 +1 @@ +EVP_SignInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignInit.3 index 5ec46b7f..bf082be4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SIGNINIT 3" -.TH EVP_SIGNINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SIGNINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -153,7 +153,7 @@ EVP_SignInit, EVP_SignInit_ex, EVP_SignUpdate, EVP_SignFinal \&\- EVP signing fu .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 signature routines are a high level interface to digital +The \s-1EVP\s0 signature routines are a high-level interface to digital signatures. .PP \&\fBEVP_SignInit_ex()\fR sets up signing context \fIctx\fR to use digest @@ -182,7 +182,7 @@ The error codes can be obtained by \fBERR_get_error\fR\|(3). .SH "NOTES" .IX Header "NOTES" The \fB\s-1EVP\s0\fR interface to digital signatures should almost always be used in -preference to the low level interfaces. This is because the code then becomes +preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible. .PP When signing with \s-1DSA\s0 private keys the random number generator must be seeded. diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignInit_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignInit_ex.3 new file mode 120000 index 00000000..c6358543 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignInit_ex.3 @@ -0,0 +1 @@ +EVP_SignInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignUpdate.3 new file mode 120000 index 00000000..c6358543 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_SignUpdate.3 @@ -0,0 +1 @@ +EVP_SignInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyFinal.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyFinal.3 new file mode 120000 index 00000000..fd8b2216 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyFinal.3 @@ -0,0 +1 @@ +EVP_VerifyInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyInit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyInit.3 index e270d75b..9e6e847d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyInit.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyInit.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_VERIFYINIT 3" -.TH EVP_VERIFYINIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_VERIFYINIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -154,7 +154,7 @@ EVP_VerifyInit_ex, EVP_VerifyInit, EVP_VerifyUpdate, EVP_VerifyFinal \&\- EVP si .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -The \s-1EVP\s0 signature verification routines are a high level interface to digital +The \s-1EVP\s0 signature verification routines are a high-level interface to digital signatures. .PP \&\fBEVP_VerifyInit_ex()\fR sets up verification context \fBctx\fR to use digest @@ -182,7 +182,7 @@ The error codes can be obtained by \fBERR_get_error\fR\|(3). .SH "NOTES" .IX Header "NOTES" The \fB\s-1EVP\s0\fR interface to digital signatures should almost always be used in -preference to the low level interfaces. This is because the code then becomes +preference to the low-level interfaces. This is because the code then becomes transparent to the algorithm used and much more flexible. .PP The call to \fBEVP_VerifyFinal()\fR internally finalizes a copy of the digest context. @@ -215,7 +215,7 @@ The previous two bugs are fixed in the newer EVP_DigestVerify*() function. \&\s-1\fBSHA1\s0\fR\|(3), \fBdgst\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyInit_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyInit_ex.3 new file mode 120000 index 00000000..fd8b2216 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyInit_ex.3 @@ -0,0 +1 @@ +EVP_VerifyInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyUpdate.3 new file mode 120000 index 00000000..fd8b2216 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_VerifyUpdate.3 @@ -0,0 +1 @@ +EVP_VerifyInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes.3 index ca024fcd..2f4cc51c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_AES 3" -.TH EVP_AES 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_AES 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc_hmac_sha1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc_hmac_sha1.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc_hmac_sha1.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc_hmac_sha256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc_hmac_sha256.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cbc_hmac_sha256.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ccm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ccm.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ccm.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb1.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb1.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb128.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb128.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb8.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_cfb8.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ctr.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ctr.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ecb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ecb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_gcm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_gcm.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_gcm.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ocb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ocb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ocb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ofb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_ofb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_wrap.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_wrap.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_wrap.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_wrap_pad.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_wrap_pad.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_wrap_pad.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_xts.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_xts.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_128_xts.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cbc.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cbc.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ccm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ccm.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ccm.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb1.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb1.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb128.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb128.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb8.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_cfb8.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ctr.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ctr.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ecb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ecb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_gcm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_gcm.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_gcm.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ocb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ocb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ocb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ofb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_ofb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_wrap.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_wrap.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_wrap.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_wrap_pad.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_wrap_pad.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_192_wrap_pad.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc_hmac_sha1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc_hmac_sha1.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc_hmac_sha1.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc_hmac_sha256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc_hmac_sha256.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cbc_hmac_sha256.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ccm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ccm.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ccm.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb1.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb1.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb128.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb128.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb8.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_cfb8.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ctr.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ctr.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ecb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ecb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_gcm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_gcm.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_gcm.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ocb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ocb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ocb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ofb.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_ofb.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_wrap.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_wrap.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_wrap.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_wrap_pad.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_wrap_pad.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_wrap_pad.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_xts.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_xts.3 new file mode 120000 index 00000000..1a8c298a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aes_256_xts.3 @@ -0,0 +1 @@ +EVP_aes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria.3 index a75afbcf..7eea113b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_ARIA 3" -.TH EVP_ARIA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_ARIA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cbc.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cbc.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ccm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ccm.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ccm.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb1.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb1.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb128.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb128.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb8.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_cfb8.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ctr.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ctr.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ecb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ecb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_gcm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_gcm.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_gcm.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ofb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_128_ofb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cbc.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cbc.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ccm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ccm.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ccm.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb1.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb1.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb128.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb128.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb8.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_cfb8.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ctr.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ctr.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ecb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ecb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_gcm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_gcm.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_gcm.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ofb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_192_ofb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cbc.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cbc.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ccm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ccm.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ccm.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb1.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb1.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb128.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb128.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb8.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_cfb8.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ctr.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ctr.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ecb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ecb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_gcm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_gcm.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_gcm.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ofb.3 new file mode 120000 index 00000000..de304985 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_aria_256_ofb.3 @@ -0,0 +1 @@ +EVP_aria.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cbc.3 index 40c2ae1f..fa946ef5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_BF_CBC 3" -.TH EVP_BF_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_BF_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cfb.3 new file mode 120000 index 00000000..f1a7f946 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cfb.3 @@ -0,0 +1 @@ +EVP_bf_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cfb64.3 new file mode 120000 index 00000000..f1a7f946 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_cfb64.3 @@ -0,0 +1 @@ +EVP_bf_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_ecb.3 new file mode 120000 index 00000000..f1a7f946 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_ecb.3 @@ -0,0 +1 @@ +EVP_bf_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_ofb.3 new file mode 120000 index 00000000..f1a7f946 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_bf_ofb.3 @@ -0,0 +1 @@ +EVP_bf_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_blake2b512.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_blake2b512.3 index a46b8902..4212c3e6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_blake2b512.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_blake2b512.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_BLAKE2B512 3" -.TH EVP_BLAKE2B512 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_BLAKE2B512 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_blake2s256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_blake2s256.3 new file mode 120000 index 00000000..aa13e1cc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_blake2s256.3 @@ -0,0 +1 @@ +EVP_blake2b512.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia.3 index 4eefb923..9d06c2ac 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_CAMELLIA 3" -.TH EVP_CAMELLIA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_CAMELLIA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cbc.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cbc.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb1.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb1.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb128.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb128.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb8.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_cfb8.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ctr.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ctr.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ecb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ecb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ofb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_128_ofb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cbc.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cbc.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb1.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb1.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb128.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb128.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb8.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_cfb8.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ctr.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ctr.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ecb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ecb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ofb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_192_ofb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cbc.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cbc.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb1.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb1.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb128.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb128.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb8.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_cfb8.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ctr.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ctr.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ecb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ecb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ofb.3 new file mode 120000 index 00000000..eb6886b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_camellia_256_ofb.3 @@ -0,0 +1 @@ +EVP_camellia.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cbc.3 index 05e420aa..0924fb88 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_CAST5_CBC 3" -.TH EVP_CAST5_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_CAST5_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cfb.3 new file mode 120000 index 00000000..f53b1bfa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cfb.3 @@ -0,0 +1 @@ +EVP_cast5_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cfb64.3 new file mode 120000 index 00000000..f53b1bfa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_cfb64.3 @@ -0,0 +1 @@ +EVP_cast5_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_ecb.3 new file mode 120000 index 00000000..f53b1bfa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_ecb.3 @@ -0,0 +1 @@ +EVP_cast5_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_ofb.3 new file mode 120000 index 00000000..f53b1bfa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cast5_ofb.3 @@ -0,0 +1 @@ +EVP_cast5_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_chacha20.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_chacha20.3 index 305cd63d..8a836f3a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_chacha20.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_chacha20.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_CHACHA20 3" -.TH EVP_CHACHA20 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_CHACHA20 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_chacha20_poly1305.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_chacha20_poly1305.3 new file mode 120000 index 00000000..a0569b0e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_chacha20_poly1305.3 @@ -0,0 +1 @@ +EVP_chacha20.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cleanup.3 new file mode 120000 index 00000000..2571f547 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_cleanup.3 @@ -0,0 +1 @@ +OpenSSL_add_all_algorithms.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des.3 index ece46dd0..d94c1f8d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_DES 3" -.TH EVP_DES 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_DES 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cbc.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cbc.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb1.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb1.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb64.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb64.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb8.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_cfb8.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ecb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ecb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cbc.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cbc.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb1.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb1.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb64.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb64.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb8.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_cfb8.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_ecb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_ecb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_ofb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_ofb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_wrap.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_wrap.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede3_wrap.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cbc.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cbc.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cfb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cfb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cfb64.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_cfb64.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_ecb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_ecb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_ofb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ede_ofb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ofb.3 new file mode 120000 index 00000000..7400ac27 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_des_ofb.3 @@ -0,0 +1 @@ +EVP_des.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_desx_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_desx_cbc.3 index 1b14f62f..d3bc5b6d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_desx_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_desx_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_DESX_CBC 3" -.TH EVP_DESX_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_DESX_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_enc_null.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_enc_null.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_enc_null.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbyname.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbyname.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbyname.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbynid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbynid.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbynid.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbyobj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbyobj.3 new file mode 120000 index 00000000..939f273a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_cipherbyobj.3 @@ -0,0 +1 @@ +EVP_EncryptInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbyname.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbyname.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbyname.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbynid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbynid.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbynid.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbyobj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbyobj.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_get_digestbyobj.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cbc.3 index 570fe2cf..49e0ff4b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_IDEA_CBC 3" -.TH EVP_IDEA_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_IDEA_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cfb.3 new file mode 120000 index 00000000..42e2275b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cfb.3 @@ -0,0 +1 @@ +EVP_idea_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cfb64.3 new file mode 120000 index 00000000..42e2275b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_cfb64.3 @@ -0,0 +1 @@ +EVP_idea_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_ecb.3 new file mode 120000 index 00000000..42e2275b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_ecb.3 @@ -0,0 +1 @@ +EVP_idea_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_ofb.3 new file mode 120000 index 00000000..42e2275b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_idea_ofb.3 @@ -0,0 +1 @@ +EVP_idea_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md2.3 index 549fd02c..62c2ec26 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md2.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md2.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_MD2 3" -.TH EVP_MD2 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_MD2 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md4.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md4.3 index 1456dbc6..80d1dded 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md4.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md4.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_MD4 3" -.TH EVP_MD4 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_MD4 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md5.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md5.3 index 81a54988..f80ec38a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md5.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md5.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_MD5 3" -.TH EVP_MD5 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_MD5 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md5_sha1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md5_sha1.3 new file mode 120000 index 00000000..adf9b04a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md5_sha1.3 @@ -0,0 +1 @@ +EVP_md5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md_null.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md_null.3 new file mode 120000 index 00000000..3f2985e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_md_null.3 @@ -0,0 +1 @@ +EVP_DigestInit.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_mdc2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_mdc2.3 index c6152723..99ad33b3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_mdc2.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_mdc2.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_MDC2 3" -.TH EVP_MDC2 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_MDC2 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_40_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_40_cbc.3 new file mode 120000 index 00000000..5e9ae8cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_40_cbc.3 @@ -0,0 +1 @@ +EVP_rc2_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_64_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_64_cbc.3 new file mode 120000 index 00000000..5e9ae8cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_64_cbc.3 @@ -0,0 +1 @@ +EVP_rc2_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cbc.3 index 1a355df8..8c9f6f54 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_RC2_CBC 3" -.TH EVP_RC2_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_RC2_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cfb.3 new file mode 120000 index 00000000..5e9ae8cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cfb.3 @@ -0,0 +1 @@ +EVP_rc2_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cfb64.3 new file mode 120000 index 00000000..5e9ae8cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_cfb64.3 @@ -0,0 +1 @@ +EVP_rc2_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_ecb.3 new file mode 120000 index 00000000..5e9ae8cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_ecb.3 @@ -0,0 +1 @@ +EVP_rc2_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_ofb.3 new file mode 120000 index 00000000..5e9ae8cf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc2_ofb.3 @@ -0,0 +1 @@ +EVP_rc2_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4.3 index 5cb98510..bbf11ce7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_RC4 3" -.TH EVP_RC4 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_RC4 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4_40.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4_40.3 new file mode 120000 index 00000000..cc4bcbf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4_40.3 @@ -0,0 +1 @@ +EVP_rc4.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4_hmac_md5.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4_hmac_md5.3 new file mode 120000 index 00000000..cc4bcbf6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc4_hmac_md5.3 @@ -0,0 +1 @@ +EVP_rc4.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cbc.3 index 45cc8af1..138245ca 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_RC5_32_12_16_CBC 3" -.TH EVP_RC5_32_12_16_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_RC5_32_12_16_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cfb.3 new file mode 120000 index 00000000..d82df694 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cfb.3 @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cfb64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cfb64.3 new file mode 120000 index 00000000..d82df694 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_cfb64.3 @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_ecb.3 new file mode 120000 index 00000000..d82df694 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_ecb.3 @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_ofb.3 new file mode 120000 index 00000000..d82df694 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_rc5_32_12_16_ofb.3 @@ -0,0 +1 @@ +EVP_rc5_32_12_16_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ripemd160.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ripemd160.3 index 4582df97..46a7c37c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ripemd160.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_ripemd160.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_RIPEMD160 3" -.TH EVP_RIPEMD160 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_RIPEMD160 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cbc.3 index 5f70a6dc..4012e56d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SEED_CBC 3" -.TH EVP_SEED_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SEED_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cfb.3 new file mode 120000 index 00000000..aba83e2f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cfb.3 @@ -0,0 +1 @@ +EVP_seed_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cfb128.3 new file mode 120000 index 00000000..aba83e2f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_cfb128.3 @@ -0,0 +1 @@ +EVP_seed_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_ecb.3 new file mode 120000 index 00000000..aba83e2f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_ecb.3 @@ -0,0 +1 @@ +EVP_seed_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_ofb.3 new file mode 120000 index 00000000..aba83e2f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_seed_ofb.3 @@ -0,0 +1 @@ +EVP_seed_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha1.3 index 56f3a047..3cf3db89 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha1.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha1.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SHA1 3" -.TH EVP_SHA1 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SHA1 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha224.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha224.3 index dc53e606..03ffc79f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha224.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha224.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SHA224 3" -.TH EVP_SHA224 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SHA224 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha256.3 new file mode 120000 index 00000000..1ba0ec28 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha256.3 @@ -0,0 +1 @@ +EVP_sha224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha384.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha384.3 new file mode 120000 index 00000000..1ba0ec28 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha384.3 @@ -0,0 +1 @@ +EVP_sha224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_224.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_224.3 index 8e89e334..24c6b474 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_224.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_224.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SHA3_224 3" -.TH EVP_SHA3_224 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SHA3_224 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_256.3 new file mode 120000 index 00000000..fb58a89d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_256.3 @@ -0,0 +1 @@ +EVP_sha3_224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_384.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_384.3 new file mode 120000 index 00000000..fb58a89d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_384.3 @@ -0,0 +1 @@ +EVP_sha3_224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_512.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_512.3 new file mode 120000 index 00000000..fb58a89d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha3_512.3 @@ -0,0 +1 @@ +EVP_sha3_224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512.3 new file mode 120000 index 00000000..1ba0ec28 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512.3 @@ -0,0 +1 @@ +EVP_sha224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512_224.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512_224.3 new file mode 120000 index 00000000..1ba0ec28 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512_224.3 @@ -0,0 +1 @@ +EVP_sha224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512_256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512_256.3 new file mode 120000 index 00000000..1ba0ec28 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sha512_256.3 @@ -0,0 +1 @@ +EVP_sha224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_shake128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_shake128.3 new file mode 120000 index 00000000..fb58a89d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_shake128.3 @@ -0,0 +1 @@ +EVP_sha3_224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_shake256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_shake256.3 new file mode 120000 index 00000000..fb58a89d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_shake256.3 @@ -0,0 +1 @@ +EVP_sha3_224.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm3.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm3.3 index 697478e4..cc3c8f98 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm3.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm3.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SM3 3" -.TH EVP_SM3 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SM3 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cbc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cbc.3 index 2fd1645f..fa0871cd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cbc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cbc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_SM4_CBC 3" -.TH EVP_SM4_CBC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_SM4_CBC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cfb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cfb.3 new file mode 120000 index 00000000..36d7c755 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cfb.3 @@ -0,0 +1 @@ +EVP_sm4_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cfb128.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cfb128.3 new file mode 120000 index 00000000..36d7c755 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_cfb128.3 @@ -0,0 +1 @@ +EVP_sm4_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ctr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ctr.3 new file mode 120000 index 00000000..36d7c755 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ctr.3 @@ -0,0 +1 @@ +EVP_sm4_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ecb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ecb.3 new file mode 120000 index 00000000..36d7c755 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ecb.3 @@ -0,0 +1 @@ +EVP_sm4_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ofb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ofb.3 new file mode 120000 index 00000000..36d7c755 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_sm4_ofb.3 @@ -0,0 +1 @@ +EVP_sm4_cbc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_whirlpool.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_whirlpool.3 index 219f91a4..d607ee2d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_whirlpool.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EVP_whirlpool.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP_WHIRLPOOL 3" -.TH EVP_WHIRLPOOL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP_WHIRLPOOL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EXTENDED_KEY_USAGE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EXTENDED_KEY_USAGE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EXTENDED_KEY_USAGE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EXTENDED_KEY_USAGE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EXTENDED_KEY_USAGE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/EXTENDED_KEY_USAGE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAMES_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAMES_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAMES_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAMES_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAMES_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAMES_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_NAME_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_SUBTREE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_SUBTREE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_SUBTREE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_SUBTREE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_SUBTREE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GENERAL_SUBTREE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GEN_SESSION_CB.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GEN_SESSION_CB.3 new file mode 120000 index 00000000..795607d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/GEN_SESSION_CB.3 @@ -0,0 +1 @@ +SSL_CTX_set_generate_session_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC.3 index 06596730..daa73bc4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "HMAC 3" -.TH HMAC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH HMAC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -146,7 +146,7 @@ HMAC, HMAC_CTX_new, HMAC_CTX_reset, HMAC_CTX_free, HMAC_Init, HMAC_Init_ex, HMAC \& #include \& \& unsigned char *HMAC(const EVP_MD *evp_md, const void *key, -\& int key_len, const unsigned char *d, int n, +\& int key_len, const unsigned char *d, size_t n, \& unsigned char *md, unsigned int *md_len); \& \& HMAC_CTX *HMAC_CTX_new(void); @@ -154,7 +154,7 @@ HMAC, HMAC_CTX_new, HMAC_CTX_reset, HMAC_CTX_free, HMAC_Init, HMAC_Init_ex, HMAC \& \& int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int key_len, \& const EVP_MD *md, ENGINE *impl); -\& int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, int len); +\& int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len); \& int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len); \& \& void HMAC_CTX_free(HMAC_CTX *ctx); @@ -196,7 +196,7 @@ not support variable output length digests such as \fBEVP_shake128()\fR and .PP \&\fBHMAC_CTX_new()\fR creates a new \s-1HMAC_CTX\s0 in heap memory. .PP -\&\fBHMAC_CTX_reset()\fR zeroes an existing \fB\s-1HMAC_CTX\s0\fR and associated +\&\fBHMAC_CTX_reset()\fR zeros an existing \fB\s-1HMAC_CTX\s0\fR and associated resources, making it suitable for new computations as if it was newly created with \fBHMAC_CTX_new()\fR. .PP @@ -271,7 +271,7 @@ or zero on error. OpenSSL before version 1.0.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_copy.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_copy.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_free.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_free.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_get_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_get_md.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_get_md.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_new.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_new.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_reset.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_reset.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_reset.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_set_flags.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_CTX_set_flags.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Final.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Final.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Init.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Init.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Init_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Init_ex.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Init_ex.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Update.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_Update.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_size.3 new file mode 120000 index 00000000..7f93ade8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/HMAC_size.3 @@ -0,0 +1 @@ +HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_ASN1_FUNCTIONS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_ASN1_FUNCTIONS.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_ASN1_FUNCTIONS.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_LHASH_COMP_FN.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_LHASH_COMP_FN.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_LHASH_COMP_FN.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_LHASH_HASH_FN.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_LHASH_HASH_FN.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IMPLEMENT_LHASH_HASH_FN.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressChoice_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressChoice_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressChoice_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressChoice_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressChoice_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressChoice_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressFamily_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressFamily_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressFamily_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressFamily_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressFamily_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressFamily_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressOrRange_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressOrRange_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressOrRange_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressOrRange_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressOrRange_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressOrRange_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressRange_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressRange_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressRange_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressRange_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressRange_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/IPAddressRange_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ISSUING_DIST_POINT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ISSUING_DIST_POINT_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ISSUING_DIST_POINT_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ISSUING_DIST_POINT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ISSUING_DIST_POINT_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ISSUING_DIST_POINT_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/LHASH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/LHASH.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/LHASH.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/LHASH_DOALL_ARG_FN_TYPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/LHASH_DOALL_ARG_FN_TYPE.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/LHASH_DOALL_ARG_FN_TYPE.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Final.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Final.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Init.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Init.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Update.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD2_Update.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Final.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Final.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Init.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Init.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Update.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD4_Update.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5.3 index e6768f8f..fbd472bf 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "MD5 3" -.TH MD5 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH MD5 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Final.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Final.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Init.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Init.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Update.3 new file mode 120000 index 00000000..cd8715ab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MD5_Update.3 @@ -0,0 +1 @@ +MD5.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2.3 new file mode 120000 index 00000000..21530fdd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2.3 @@ -0,0 +1 @@ +MDC2_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Final.3 new file mode 120000 index 00000000..21530fdd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Final.3 @@ -0,0 +1 @@ +MDC2_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Init.3 index 3cb010f0..553b5bbd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Init.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Init.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "MDC2_INIT 3" -.TH MDC2_INIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH MDC2_INIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Update.3 new file mode 120000 index 00000000..21530fdd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/MDC2_Update.3 @@ -0,0 +1 @@ +MDC2_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAME_CONSTRAINTS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAME_CONSTRAINTS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAME_CONSTRAINTS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAME_CONSTRAINTS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAME_CONSTRAINTS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAME_CONSTRAINTS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityId.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityId.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityId.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityText.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityText.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityText.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityURL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityURL.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_get0_authorityURL.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityId.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityId.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityId.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityText.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityText.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityText.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityURL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityURL.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NAMING_AUTHORITY_set0_authorityURL.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_CERT_SEQUENCE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_CERT_SEQUENCE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_CERT_SEQUENCE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_CERT_SEQUENCE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_CERT_SEQUENCE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_CERT_SEQUENCE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKAC_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKAC_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKAC_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKAC_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKAC_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKAC_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKI_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKI_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKI_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKI_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKI_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NETSCAPE_SPKI_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NOTICEREF_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NOTICEREF_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NOTICEREF_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NOTICEREF_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NOTICEREF_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/NOTICEREF_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_cleanup.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_cleanup.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_cmp.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_cmp.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_create.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_create.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_create.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_dup.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_dup.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_get0_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_get0_data.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_get0_data.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_length.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_length.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_ln2nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_ln2nid.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_ln2nid.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2ln.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2ln.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2ln.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2obj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2obj.3 index 82749e85..cf5850b1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2obj.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2obj.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OBJ_NID2OBJ 3" -.TH OBJ_NID2OBJ 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OBJ_NID2OBJ 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -181,50 +181,52 @@ Deprecated: The \s-1ASN1\s0 object utility functions process \s-1ASN1_OBJECT\s0 structures which are a representation of the \s-1ASN1 OBJECT IDENTIFIER\s0 (\s-1OID\s0) type. For convenience, OIDs are usually represented in source code as numeric -identifiers, or \fB\s-1NID\s0\fRs. OpenSSL has an internal table of OIDs that +identifiers, or \fI\s-1NID\s0\fRs. OpenSSL has an internal table of OIDs that are generated when the library is built, and their corresponding NIDs are available as defined constants. For the functions below, application code should treat all returned values \*(-- OIDs, NIDs, or names \*(-- as constants. .PP -\&\fBOBJ_nid2obj()\fR, \fBOBJ_nid2ln()\fR and \fBOBJ_nid2sn()\fR convert the \s-1NID\s0 \fBn\fR to +\&\fBOBJ_nid2obj()\fR, \fBOBJ_nid2ln()\fR and \fBOBJ_nid2sn()\fR convert the \s-1NID\s0 \fIn\fR to an \s-1ASN1_OBJECT\s0 structure, its long name and its short name respectively, or \fB\s-1NULL\s0\fR if an error occurred. .PP \&\fBOBJ_obj2nid()\fR, \fBOBJ_ln2nid()\fR, \fBOBJ_sn2nid()\fR return the corresponding \s-1NID\s0 -for the object \fBo\fR, the long name or the short name respectively +for the object \fIo\fR, the long name or the short name respectively or NID_undef if an error occurred. .PP -\&\fBOBJ_txt2nid()\fR returns \s-1NID\s0 corresponding to text string . \fBs\fR can be +\&\fBOBJ_txt2nid()\fR returns \s-1NID\s0 corresponding to text string \fIs\fR. \fIs\fR can be a long name, a short name or the numerical representation of an object. .PP -\&\fBOBJ_txt2obj()\fR converts the text string \fBs\fR into an \s-1ASN1_OBJECT\s0 structure. -If \fBno_name\fR is 0 then long names and short names will be interpreted -as well as numerical forms. If \fBno_name\fR is 1 only the numerical form +\&\fBOBJ_txt2obj()\fR converts the text string \fIs\fR into an \s-1ASN1_OBJECT\s0 structure. +If \fIno_name\fR is 0 then long names and short names will be interpreted +as well as numerical forms. If \fIno_name\fR is 1 only the numerical form is acceptable. .PP -\&\fBOBJ_obj2txt()\fR converts the \fB\s-1ASN1_OBJECT\s0\fR \fBa\fR into a textual representation. -The representation is written as a null terminated string to \fBbuf\fR -at most \fBbuf_len\fR bytes are written, truncating the result if necessary. -The total amount of space required is returned. If \fBno_name\fR is 0 then -if the object has a long or short name then that will be used, otherwise -the numerical form will be used. If \fBno_name\fR is 1 then the numerical -form will always be used. +\&\fBOBJ_obj2txt()\fR converts the \fB\s-1ASN1_OBJECT\s0\fR \fIa\fR into a textual representation. +Unless \fIbuf\fR is \s-1NULL,\s0 +the representation is written as a NUL-terminated string to \fIbuf\fR, where +at most \fIbuf_len\fR bytes are written, truncating the result if necessary. +In any case it returns the total string length, excluding the \s-1NUL\s0 character, +required for non-truncated representation, or \-1 on error. +If \fIno_name\fR is 0 then if the object has a long or short name +then that will be used, otherwise the numerical form will be used. +If \fIno_name\fR is 1 then the numerical form will always be used. .PP -\&\fBi2t_ASN1_OBJECT()\fR is the same as \fBOBJ_obj2txt()\fR with the \fBno_name\fR set to zero. +\&\fBi2t_ASN1_OBJECT()\fR is the same as \fBOBJ_obj2txt()\fR with the \fIno_name\fR set to zero. .PP -\&\fBOBJ_cmp()\fR compares \fBa\fR to \fBb\fR. If the two are identical 0 is returned. +\&\fBOBJ_cmp()\fR compares \fIa\fR to \fIb\fR. If the two are identical 0 is returned. .PP -\&\fBOBJ_dup()\fR returns a copy of \fBo\fR. +\&\fBOBJ_dup()\fR returns a copy of \fIo\fR. .PP -\&\fBOBJ_create()\fR adds a new object to the internal table. \fBoid\fR is the -numerical form of the object, \fBsn\fR the short name and \fBln\fR the +\&\fBOBJ_create()\fR adds a new object to the internal table. \fIoid\fR is the +numerical form of the object, \fIsn\fR the short name and \fIln\fR the long name. A new \s-1NID\s0 is returned for the created object in case of success and NID_undef in case of failure. .PP -\&\fBOBJ_length()\fR returns the size of the content octets of \fBobj\fR. +\&\fBOBJ_length()\fR returns the size of the content octets of \fIobj\fR. .PP -\&\fBOBJ_get0_data()\fR returns a pointer to the content octets of \fBobj\fR. +\&\fBOBJ_get0_data()\fR returns a pointer to the content octets of \fIobj\fR. The returned pointer is an internal pointer which \fBmust not\fR be freed. .PP \&\fBOBJ_cleanup()\fR releases any resources allocated by creating new objects. @@ -275,6 +277,13 @@ on error. .PP \&\fBOBJ_obj2nid()\fR, \fBOBJ_ln2nid()\fR, \fBOBJ_sn2nid()\fR and \fBOBJ_txt2nid()\fR return a \s-1NID\s0 or \fBNID_undef\fR on error. +.PP +\&\fBOBJ_add_sigid()\fR returns 1 on success or 0 on error. +.PP +\&\fBi2t_ASN1_OBJECT()\fR an \fBOBJ_obj2txt()\fR return \-1 on error. +On success, they return the length of the string written to \fIbuf\fR if \fIbuf\fR is +not \s-1NULL\s0 and \fIbuf_len\fR is big enough, otherwise the total string length. +Note that this does not count the trailing \s-1NUL\s0 character. .SH "EXAMPLES" .IX Header "EXAMPLES" Create an object for \fBcommonName\fR: @@ -302,14 +311,6 @@ Create a new object directly: .Vb 1 \& obj = OBJ_txt2obj("1.2.3.4", 1); .Ve -.SH "BUGS" -.IX Header "BUGS" -\&\fBOBJ_obj2txt()\fR is awkward and messy to use: it doesn't follow the -convention of other OpenSSL functions where the buffer can be set -to \fB\s-1NULL\s0\fR to determine the amount of data that should be written. -Instead \fBbuf\fR must point to a valid buffer and \fBbuf_len\fR should -be set to a positive value. A buffer length of 80 should be more -than enough to handle any \s-1OID\s0 encountered in practice. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBERR_get_error\fR\|(3) @@ -319,7 +320,7 @@ than enough to handle any \s-1OID\s0 encountered in practice. and should not be used. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2002\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2002\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2sn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2sn.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_nid2sn.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_obj2nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_obj2nid.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_obj2nid.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_obj2txt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_obj2txt.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_obj2txt.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_sn2nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_sn2nid.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_sn2nid.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_txt2nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_txt2nid.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_txt2nid.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_txt2obj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_txt2obj.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OBJ_txt2obj.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_BASICRESP_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_BASICRESP_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_BASICRESP_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_BASICRESP_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_BASICRESP_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_BASICRESP_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_free.3 new file mode 120000 index 00000000..519a1211 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_free.3 @@ -0,0 +1 @@ +OCSP_cert_to_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTID_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTSTATUS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTSTATUS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTSTATUS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTSTATUS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTSTATUS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CERTSTATUS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CRLID_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CRLID_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CRLID_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CRLID_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CRLID_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_CRLID_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_ONEREQ_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_ONEREQ_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_ONEREQ_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_ONEREQ_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_ONEREQ_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_ONEREQ_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQINFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQINFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQINFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQINFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQINFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQINFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQUEST_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQUEST_free.3 new file mode 120000 index 00000000..c4eb6e8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQUEST_free.3 @@ -0,0 +1 @@ +OCSP_REQUEST_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQUEST_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQUEST_new.3 index bc543976..c63fa10c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQUEST_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQUEST_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OCSP_REQUEST_NEW 3" -.TH OCSP_REQUEST_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OCSP_REQUEST_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_add1_header.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_add1_header.3 new file mode 120000 index 00000000..f4df8411 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_add1_header.3 @@ -0,0 +1 @@ +OCSP_sendreq_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_free.3 new file mode 120000 index 00000000..f4df8411 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_free.3 @@ -0,0 +1 @@ +OCSP_sendreq_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_i2d.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_i2d.3 new file mode 120000 index 00000000..f4df8411 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_i2d.3 @@ -0,0 +1 @@ +OCSP_sendreq_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_set1_req.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_set1_req.3 new file mode 120000 index 00000000..f4df8411 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REQ_CTX_set1_req.3 @@ -0,0 +1 @@ +OCSP_sendreq_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPBYTES_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPBYTES_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPBYTES_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPBYTES_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPBYTES_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPBYTES_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPDATA_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPDATA_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPDATA_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPDATA_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPDATA_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPDATA_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_match.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_match.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_match.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_set_by_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_set_by_key.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_set_by_key.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_set_by_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_set_by_name.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPID_set_by_name.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPONSE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPONSE_free.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPONSE_free.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPONSE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPONSE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_RESPONSE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REVOKEDINFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REVOKEDINFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REVOKEDINFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REVOKEDINFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REVOKEDINFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_REVOKEDINFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SERVICELOC_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SERVICELOC_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SERVICELOC_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SERVICELOC_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SERVICELOC_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SERVICELOC_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SIGNATURE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SIGNATURE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SIGNATURE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SIGNATURE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SIGNATURE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SIGNATURE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SINGLERESP_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SINGLERESP_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SINGLERESP_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SINGLERESP_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SINGLERESP_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_SINGLERESP_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_add1_nonce.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_add1_nonce.3 new file mode 120000 index 00000000..31049538 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_add1_nonce.3 @@ -0,0 +1 @@ +OCSP_request_add1_nonce.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_sign.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_sign.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_sign_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_sign_ctx.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_sign_ctx.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_verify.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_basic_verify.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_cert_id_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_cert_id_new.3 new file mode 120000 index 00000000..519a1211 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_cert_id_new.3 @@ -0,0 +1 @@ +OCSP_cert_to_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_cert_to_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_cert_to_id.3 index 589f14eb..16c4ce27 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_cert_to_id.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_cert_to_id.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OCSP_CERT_TO_ID 3" -.TH OCSP_CERT_TO_ID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OCSP_CERT_TO_ID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -186,7 +186,7 @@ corresponding parameter can be set to \fB\s-1NULL\s0\fR. \&\fBOCSP_cert_to_id()\fR and \fBOCSP_cert_id_new()\fR return either a pointer to a valid \&\fB\s-1OCSP_CERTID\s0\fR structure or \fB\s-1NULL\s0\fR if an error occurred. .PP -\&\fBOCSP_id_cmp()\fR and \fBOCSP_id_issuer_cmp()\fR returns zero for a match and non-zero +\&\fBOCSP_id_cmp()\fR and \fBOCSP_id_issuer_cmp()\fR returns zero for a match and nonzero otherwise. .PP \&\fBOCSP_CERTID_free()\fR does not return a value. @@ -210,7 +210,7 @@ NOT\s0\fR be freed up by an application: they will be freed when the correspondi \&\fBOCSP_sendreq_new\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_check_nonce.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_check_nonce.3 new file mode 120000 index 00000000..31049538 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_check_nonce.3 @@ -0,0 +1 @@ +OCSP_request_add1_nonce.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_check_validity.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_check_validity.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_check_validity.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_copy_nonce.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_copy_nonce.3 new file mode 120000 index 00000000..31049538 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_copy_nonce.3 @@ -0,0 +1 @@ +OCSP_request_add1_nonce.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_cmp.3 new file mode 120000 index 00000000..519a1211 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_cmp.3 @@ -0,0 +1 @@ +OCSP_cert_to_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_get0_info.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_get0_info.3 new file mode 120000 index 00000000..519a1211 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_get0_info.3 @@ -0,0 +1 @@ +OCSP_cert_to_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_issuer_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_issuer_cmp.3 new file mode 120000 index 00000000..519a1211 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_id_issuer_cmp.3 @@ -0,0 +1 @@ +OCSP_cert_to_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add0_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add0_id.3 new file mode 120000 index 00000000..c4eb6e8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add0_id.3 @@ -0,0 +1 @@ +OCSP_REQUEST_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add1_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add1_cert.3 new file mode 120000 index 00000000..c4eb6e8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add1_cert.3 @@ -0,0 +1 @@ +OCSP_REQUEST_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add1_nonce.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add1_nonce.3 index 274d9338..7eb2ebdd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add1_nonce.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_add1_nonce.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OCSP_REQUEST_ADD1_NONCE 3" -.TH OCSP_REQUEST_ADD1_NONCE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OCSP_REQUEST_ADD1_NONCE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -192,7 +192,7 @@ performance reasons. As a result they do not support nonces. .PP The return values of \fBOCSP_check_nonce()\fR can be checked to cover each case. A positive return value effectively indicates success: nonces are both present -and match, both absent or present in the response only. A non-zero return +and match, both absent or present in the response only. A nonzero return additionally covers the case where the nonce is present in the request only: this will happen if the responder doesn't support nonces. A zero return value indicates present and mismatched nonces: this should be treated as an error diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_onereq_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_onereq_count.3 new file mode 120000 index 00000000..c4eb6e8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_onereq_count.3 @@ -0,0 +1 @@ +OCSP_REQUEST_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_onereq_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_onereq_get0.3 new file mode 120000 index 00000000..c4eb6e8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_onereq_get0.3 @@ -0,0 +1 @@ +OCSP_REQUEST_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_sign.3 new file mode 120000 index 00000000..c4eb6e8e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_request_sign.3 @@ -0,0 +1 @@ +OCSP_REQUEST_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_count.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_count.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_find.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_find.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_find.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_find_status.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_find_status.3 index 9e19d1f0..ed3a3dc4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_find_status.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_find_status.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OCSP_RESP_FIND_STATUS 3" -.TH OCSP_RESP_FIND_STATUS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OCSP_RESP_FIND_STATUS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -238,7 +238,7 @@ no freeing of the results is necessary. .PP \&\fBOCSP_check_validity()\fR checks the validity of \fBthisupd\fR and \fBnextupd\fR values which will be typically obtained from \fBOCSP_resp_find_status()\fR or -\&\fBOCSP_single_get0_status()\fR. If \fBsec\fR is non-zero it indicates how many seconds +\&\fBOCSP_single_get0_status()\fR. If \fBsec\fR is nonzero it indicates how many seconds leeway should be allowed in the check. If \fBmaxsec\fR is positive it indicates the maximum age of \fBthisupd\fR in seconds. .PP @@ -291,7 +291,7 @@ can then take appropriate action based on the status of the certificate. .PP An \s-1OCSP\s0 response for a certificate contains \fBthisUpdate\fR and \fBnextUpdate\fR fields. Normally the current time should be between these two values. To -account for clock skew the \fBmaxsec\fR field can be set to non-zero in +account for clock skew the \fBmaxsec\fR field can be set to nonzero in \&\fBOCSP_check_validity()\fR. Some responders do not set the \fBnextUpdate\fR field, this would otherwise mean an ancient response would be considered valid: the \&\fBmaxsec\fR parameter to \fBOCSP_check_validity()\fR can be used to limit the permitted @@ -311,7 +311,7 @@ parameters can be set to \s-1NULL\s0 if their value is not required. \&\fBOCSP_sendreq_new\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_certs.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_certs.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_id.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_id.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_produced_at.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_produced_at.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_produced_at.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_respdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_respdata.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_respdata.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_signature.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_signature.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_signer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_signer.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_signer.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_tbs_sigalg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_tbs_sigalg.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get0_tbs_sigalg.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get1_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get1_id.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_resp_get1_id.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_create.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_create.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_create.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_get1_basic.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_get1_basic.3 new file mode 120000 index 00000000..87009992 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_get1_basic.3 @@ -0,0 +1 @@ +OCSP_response_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_status.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_status.3 index 63908154..d4f8e7cf 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_status.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_response_status.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OCSP_RESPONSE_STATUS 3" -.TH OCSP_RESPONSE_STATUS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OCSP_RESPONSE_STATUS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_bio.3 new file mode 120000 index 00000000..f4df8411 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_bio.3 @@ -0,0 +1 @@ +OCSP_sendreq_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_nbio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_nbio.3 new file mode 120000 index 00000000..f4df8411 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_nbio.3 @@ -0,0 +1 @@ +OCSP_sendreq_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_new.3 index 0ea775a5..f71855ad 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_sendreq_new.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "OCSP_SENDREQ_NEW 3" -.TH OCSP_SENDREQ_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OCSP_SENDREQ_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -OCSP_sendreq_new, OCSP_sendreq_nbio, OCSP_REQ_CTX_free, OCSP_set_max_response_length, OCSP_REQ_CTX_add1_header, OCSP_REQ_CTX_set1_req, OCSP_sendreq_bio \- OCSP responder query functions +OCSP_sendreq_new, OCSP_sendreq_nbio, OCSP_REQ_CTX_free, OCSP_set_max_response_length, OCSP_REQ_CTX_add1_header, OCSP_REQ_CTX_set1_req, OCSP_sendreq_bio, OCSP_REQ_CTX_i2d \&\- OCSP responder query functions .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -160,6 +160,9 @@ OCSP_sendreq_new, OCSP_sendreq_nbio, OCSP_REQ_CTX_free, OCSP_set_max_response_le \& int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req); \& \& OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req); +\& +\& int OCSP_REQ_CTX_i2d(OCSP_REQ_CTX *rctx, const char *content_type, +\& const ASN1_ITEM *it, ASN1_VALUE *req); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" @@ -169,7 +172,7 @@ response header maximum line length of \fBmaxline\fR. If \fBmaxline\fR is zero a default value of 4k is used. The \s-1OCSP\s0 request \fBreq\fR may be set to \fB\s-1NULL\s0\fR and provided later if required. .PP -\&\fBOCSP_sendreq_nbio()\fR performs non-blocking I/O on the \s-1OCSP\s0 request context +\&\fBOCSP_sendreq_nbio()\fR performs nonblocking I/O on the \s-1OCSP\s0 request context \&\fBrctx\fR. When the operation is complete it returns the response in \fB*presp\fR. .PP \&\fBOCSP_REQ_CTX_free()\fR frees up the \s-1OCSP\s0 context \fBrctx\fR. @@ -186,6 +189,17 @@ additional headers are set. .PP \&\fBOCSP_REQ_CTX_set1_req()\fR sets the \s-1OCSP\s0 request in \fBrctx\fR to \fBreq\fR. This function should be called after any calls to \fBOCSP_REQ_CTX_add1_header()\fR. +OCSP_REQ_CTX_set1_req(rctx, req) is equivalent to the following: +.PP +.Vb 2 +\& OCSP_REQ_CTX_i2d(rctx, "application/ocsp\-request", +\& ASN1_ITEM_rptr(OCSP_REQUEST), (ASN1_VALUE *)req) +.Ve +.PP +\&\fBOCSP_REQ_CTX_i2d()\fR sets the request context \fBrctx\fR to have the request +\&\fBreq\fR, which has the \s-1ASN.1\s0 type \fBit\fR. +The \fBcontent_type\fR, if not \s-1NULL,\s0 will be included in the \s-1HTTP\s0 request. +The function should be called after all other headers have already been added. .PP \&\fBOCSP_sendreq_bio()\fR performs an \s-1OCSP\s0 request using the responder \fBio\fR, the \s-1URL\s0 path \fBpath\fR, and the \s-1OCSP\s0 request \fBreq\fR with a response header maximum line @@ -198,8 +212,8 @@ an error occurred. \&\fBOCSP_sendreq_nbio()\fR returns \fB1\fR if the operation was completed successfully, \&\fB\-1\fR if the operation should be retried and \fB0\fR if an error occurred. .PP -\&\fBOCSP_REQ_CTX_add1_header()\fR and \fBOCSP_REQ_CTX_set1_req()\fR return \fB1\fR for success -and \fB0\fR for failure. +\&\fBOCSP_REQ_CTX_add1_header()\fR, \fBOCSP_REQ_CTX_set1_req()\fR, and \fBOCSP_REQ_CTX_i2d()\fR +return \fB1\fR for success and \fB0\fR for failure. .PP \&\fBOCSP_sendreq_bio()\fR returns the \fB\s-1OCSP_RESPONSE\s0\fR structure sent by the responder or \fB\s-1NULL\s0\fR if an error occurred. @@ -231,7 +245,7 @@ corresponding \s-1BIO\s0 can be examined to determine which operation (read or write) should be retried and appropriate action taken (for example a \fBselect()\fR call on the underlying socket). .PP -\&\fBOCSP_sendreq_bio()\fR does not support retries and so cannot handle non-blocking +\&\fBOCSP_sendreq_bio()\fR does not support retries and so cannot handle nonblocking I/O efficiently. It is retained for compatibility and its use in new applications is not recommended. .SH "SEE ALSO" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_set_max_response_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_set_max_response_length.3 new file mode 120000 index 00000000..f4df8411 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_set_max_response_length.3 @@ -0,0 +1 @@ +OCSP_sendreq_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_single_get0_status.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_single_get0_status.3 new file mode 120000 index 00000000..00b060ae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OCSP_single_get0_status.3 @@ -0,0 +1 @@ +OCSP_resp_find_status.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_Applink.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_Applink.3 index a9d6378d..901367f9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_Applink.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_Applink.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_APPLINK 3" -.TH OPENSSL_APPLINK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_APPLINK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_free.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_free.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_new.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_new.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_appname.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_appname.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_appname.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_file_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_file_flags.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_file_flags.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_filename.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_filename.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_INIT_set_config_filename.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_COMPFUNC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_COMPFUNC.3 index 048ece95..022f8621 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_COMPFUNC.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_COMPFUNC.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_LH_COMPFUNC 3" -.TH OPENSSL_LH_COMPFUNC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_LH_COMPFUNC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -152,7 +152,7 @@ LHASH, DECLARE_LHASH_OF, OPENSSL_LH_COMPFUNC, OPENSSL_LH_HASHFUNC, OPENSSL_LH_DO \& \& TYPE *lh_TYPE_insert(LHASH_OF(TYPE) *table, TYPE *data); \& TYPE *lh_TYPE_delete(LHASH_OF(TYPE) *table, TYPE *data); -\& TYPE *lh_retrieve(LHASH_OF(TYPE) *table, TYPE *data); +\& TYPE *lh_TYPE_retrieve(LHASH_OF(TYPE) *table, TYPE *data); \& \& void lh_TYPE_doall(LHASH_OF(TYPE) *table, OPENSSL_LH_DOALL_FUNC func); \& void lh_TYPE_doall_arg(LHASH_OF(TYPE) *table, OPENSSL_LH_DOALL_FUNCARG func, @@ -180,7 +180,7 @@ an unsigned long hash value for its key field. The hash value is normally truncated to a power of 2, so make sure that your hash function returns well mixed low order bits. The \fBcompare\fR callback takes two arguments (pointers to two hash table entries), and returns -0 if their keys are equal, non-zero otherwise. +0 if their keys are equal, nonzero otherwise. .PP If your hash table will contain items of some particular type and the \fBhash\fR and @@ -332,7 +332,7 @@ all such parameters as constant. .PP As an example, a hash table may be maintained by code that, for reasons of encapsulation, has only \*(L"const\*(R" access to the data being -indexed in the hash table (ie. it is returned as \*(L"const\*(R" from +indexed in the hash table (i.e. it is returned as \*(L"const\*(R" from elsewhere in their code) \- in this case the \s-1LHASH\s0 prototypes are appropriate as-is. Conversely, if the caller is responsible for the life-time of the data in question, then they may well wish to make @@ -361,7 +361,7 @@ In OpenSSL 1.0.0, the lhash interface was revamped for better type checking. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_DOALL_FUNC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_DOALL_FUNC.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_DOALL_FUNC.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_HASHFUNC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_HASHFUNC.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_HASHFUNC.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_stats.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_stats.3 new file mode 120000 index 00000000..f04ed0b0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_stats.3 @@ -0,0 +1 @@ +OPENSSL_LH_stats.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_stats_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_stats_bio.3 new file mode 120000 index 00000000..f04ed0b0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_stats_bio.3 @@ -0,0 +1 @@ +OPENSSL_LH_stats.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_usage_stats.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_usage_stats.3 new file mode 120000 index 00000000..f04ed0b0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_usage_stats.3 @@ -0,0 +1 @@ +OPENSSL_LH_stats.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_usage_stats_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_usage_stats_bio.3 new file mode 120000 index 00000000..f04ed0b0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_node_usage_stats_bio.3 @@ -0,0 +1 @@ +OPENSSL_LH_stats.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_stats.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_stats.3 index 8d54597b..e0cbe6e8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_stats.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_stats.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_LH_STATS 3" -.TH OPENSSL_LH_STATS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_LH_STATS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_stats_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_stats_bio.3 new file mode 120000 index 00000000..f04ed0b0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_LH_stats_bio.3 @@ -0,0 +1 @@ +OPENSSL_LH_stats.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_MALLOC_FAILURES.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_MALLOC_FAILURES.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_MALLOC_FAILURES.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_MALLOC_FD.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_MALLOC_FD.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_MALLOC_FD.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_VERSION_NUMBER.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_VERSION_NUMBER.3 index c94c2459..47482cc8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_VERSION_NUMBER.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_VERSION_NUMBER.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_VERSION_NUMBER 3" -.TH OPENSSL_VERSION_NUMBER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_VERSION_NUMBER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_VERSION_TEXT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_VERSION_TEXT.3 new file mode 120000 index 00000000..ab1700a9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_VERSION_TEXT.3 @@ -0,0 +1 @@ +OPENSSL_VERSION_NUMBER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_atexit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_atexit.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_atexit.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_buf2hexstr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_buf2hexstr.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_buf2hexstr.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cipher_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cipher_name.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cipher_name.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cleanse.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cleanse.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cleanse.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cleanup.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_cleanup.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_clear_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_clear_free.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_clear_free.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_clear_realloc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_clear_realloc.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_clear_realloc.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_config.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_config.3 index 8ffee227..5fd9e624 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_config.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_config.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_CONFIG 3" -.TH OPENSSL_CONFIG 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_CONFIG 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -177,7 +177,7 @@ initialization (that is before starting any threads). .PP There are several reasons why calling the OpenSSL configuration routines is advisable. For example, to load dynamic ENGINEs from shared libraries (DSOs). -However very few applications currently support the control interface and so +However, very few applications currently support the control interface and so very few can load and use dynamic ENGINEs. Equally in future more sophisticated ENGINEs will require certain control operations to customize them. If an application calls \fBOPENSSL_config()\fR it doesn't need to know or care about @@ -202,7 +202,7 @@ The \fBOPENSSL_no_config()\fR and \fBOPENSSL_config()\fR functions were deprecated in OpenSSL 1.1.0 by \fBOPENSSL_init_crypto()\fR. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2004\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2004\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_child.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_child.3 new file mode 120000 index 00000000..9c6be824 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_child.3 @@ -0,0 +1 @@ +OPENSSL_fork_prepare.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_parent.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_parent.3 new file mode 120000 index 00000000..9c6be824 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_parent.3 @@ -0,0 +1 @@ +OPENSSL_fork_prepare.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_prepare.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_prepare.3 index d5d3e7a6..991b4516 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_prepare.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_fork_prepare.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_FORK_PREPARE 3" -.TH OPENSSL_FORK_PREPARE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_FORK_PREPARE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_free.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_free.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_hexchar2int.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_hexchar2int.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_hexchar2int.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_hexstr2buf.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_hexstr2buf.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_hexstr2buf.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_ia32cap.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_ia32cap.3 index 663eee7f..1688ddf4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_ia32cap.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_ia32cap.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_IA32CAP 3" -.TH OPENSSL_IA32CAP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_IA32CAP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -231,8 +231,8 @@ The capability vector is further extended with \s-1EBX\s0 value returned by .IX Item "bit #64+18 denoting availability of RDSEED instruction;" .IP "bit #64+19 denoting availability of \s-1ADCX\s0 and \s-1ADOX\s0 instructions;" 4 .IX Item "bit #64+19 denoting availability of ADCX and ADOX instructions;" -.IP "bit #64+21 denoting availability of VPMADD52[\s-1LH\s0]UQ instructions, a.k.a. \s-1AVX512IFMA\s0 extension;" 4 -.IX Item "bit #64+21 denoting availability of VPMADD52[LH]UQ instructions, a.k.a. AVX512IFMA extension;" +.IP "bit #64+21 denoting availability of VPMADD52[\s-1LH\s0]UQ instructions, aka \s-1AVX512IFMA\s0 extension;" 4 +.IX Item "bit #64+21 denoting availability of VPMADD52[LH]UQ instructions, aka AVX512IFMA extension;" .IP "bit #64+29 denoting availability of \s-1SHA\s0 extension;" 4 .IX Item "bit #64+29 denoting availability of SHA extension;" .IP "bit #64+30 denoting availability of \s-1AVX512BW\s0 extension;" 4 @@ -287,7 +287,7 @@ version is used, as it is \s-1GNU\s0 assembler version that will be checked. Not available. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2004\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2004\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_crypto.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_crypto.3 index 534d12ad..48870c81 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_crypto.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_crypto.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_INIT_CRYPTO 3" -.TH OPENSSL_INIT_CRYPTO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_INIT_CRYPTO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -172,13 +172,13 @@ needs so no explicit initialisation is required. Similarly it will also automatically deinitialise as required. .PP However, there may be situations when explicit initialisation is desirable or -needed, for example when some non-default initialisation is required. The +needed, for example when some nondefault initialisation is required. The function \fBOPENSSL_init_crypto()\fR can be used for this purpose for libcrypto (see also \fBOPENSSL_init_ssl\fR\|(3) for the libssl equivalent). .PP Numerous internal OpenSSL functions call \fBOPENSSL_init_crypto()\fR. -Therefore, in order to perform non-default initialisation, +Therefore, in order to perform nondefault initialisation, \&\fBOPENSSL_init_crypto()\fR \s-1MUST\s0 be called by application code prior to any other OpenSSL function calls. .PP @@ -208,7 +208,7 @@ calls to \fBOPENSSL_init_crypto()\fR with the option With this option the library will automatically load and make available all libcrypto digests. This option is a default option. Once selected subsequent calls to \fBOPENSSL_init_crypto()\fR with the option -\&\fB\s-1OPENSSL_INIT_NO_ADD_ALL_CIPHERS\s0\fR will be ignored. +\&\fB\s-1OPENSSL_INIT_NO_ADD_ALL_DIGESTS\s0\fR will be ignored. .IP "\s-1OPENSSL_INIT_NO_ADD_ALL_CIPHERS\s0" 4 .IX Item "OPENSSL_INIT_NO_ADD_ALL_CIPHERS" With this option the library will suppress automatic loading of libcrypto @@ -328,10 +328,10 @@ The filename, application name, and flags can be customized by providing a non-null \fB\s-1OPENSSL_INIT_SETTINGS\s0\fR object. The object can be allocated via \fB\fBOPENSSL_init_new()\fB\fR. The \fB\fBOPENSSL_INIT_set_config_filename()\fB\fR function can be used to specify a -non-default filename, which is copied and need not refer to persistent storage. +nondefault filename, which is copied and need not refer to persistent storage. Similarly, \fBOPENSSL_INIT_set_config_appname()\fR can be used to specify a -non-default application name. -Finally, OPENSSL_INIT_set_file_flags can be used to specify non-default flags. +nondefault application name. +Finally, OPENSSL_INIT_set_file_flags can be used to specify nondefault flags. If the \fB\s-1CONF_MFLAGS_IGNORE_RETURN_CODES\s0\fR flag is not included, any errors in the configuration file will cause an error return from \fBOPENSSL_init_crypto\fR or indirectly \fBOPENSSL_init_ssl\fR\|(3). @@ -371,7 +371,7 @@ The \fBOPENSSL_init_crypto()\fR, \fBOPENSSL_cleanup()\fR, \fBOPENSSL_atexit()\fR and \fBOPENSSL_INIT_free()\fR functions were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_ssl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_ssl.3 index 8933c157..1b644e16 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_ssl.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_init_ssl.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_INIT_SSL 3" -.TH OPENSSL_INIT_SSL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_INIT_SSL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -160,14 +160,14 @@ needs so no explicit initialisation is required. Similarly it will also automatically deinitialise as required. .PP However, there may be situations when explicit initialisation is desirable or -needed, for example when some non-default initialisation is required. The +needed, for example when some nondefault initialisation is required. The function \fBOPENSSL_init_ssl()\fR can be used for this purpose. Calling this function will explicitly initialise \s-1BOTH\s0 libcrypto and libssl. To explicitly initialise \s-1ONLY\s0 libcrypto see the \&\fBOPENSSL_init_crypto\fR\|(3) function. .PP Numerous internal OpenSSL functions call \fBOPENSSL_init_ssl()\fR. -Therefore, in order to perform non-default initialisation, +Therefore, in order to perform nondefault initialisation, \&\fBOPENSSL_init_ssl()\fR \s-1MUST\s0 be called by application code prior to any other OpenSSL function calls. .PP @@ -201,7 +201,7 @@ The function \fBOPENSSL_init_ssl()\fR returns 1 on success or 0 on error. The \fBOPENSSL_init_ssl()\fR function was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_instrument_bus.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_instrument_bus.3 index 482178f2..353ed0a9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_instrument_bus.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_instrument_bus.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_INSTRUMENT_BUS 3" -.TH OPENSSL_INSTRUMENT_BUS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_INSTRUMENT_BUS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_instrument_bus2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_instrument_bus2.3 new file mode 120000 index 00000000..6ee08a4e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_instrument_bus2.3 @@ -0,0 +1 @@ +OPENSSL_instrument_bus.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_load_builtin_modules.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_load_builtin_modules.3 index 4ee9b4ff..17f43b0b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_load_builtin_modules.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_load_builtin_modules.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_LOAD_BUILTIN_MODULES 3" -.TH OPENSSL_LOAD_BUILTIN_MODULES 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_LOAD_BUILTIN_MODULES 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_malloc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_malloc.3 index aad0a031..13f121bd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_malloc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_malloc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_MALLOC 3" -.TH OPENSSL_MALLOC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_MALLOC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -224,7 +224,7 @@ before ultimately calling \fBOPENSSL_free()\fR. .PP \&\fBOPENSSL_cleanse()\fR fills \fBptr\fR of size \fBlen\fR with a string of 0's. Use \fBOPENSSL_cleanse()\fR with care if the memory is a mapping of a file. -If the storage controller uses write compression, then its possible +If the storage controller uses write compression, then it's possible that sensitive tail bytes will survive zeroization because the block of zeros will be compressed. If the storage controller uses wear leveling, then the old sensitive data will not be overwritten; rather, a block of diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_malloc_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_malloc_init.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_malloc_init.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_mem_debug_pop.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_mem_debug_pop.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_mem_debug_pop.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_mem_debug_push.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_mem_debug_push.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_mem_debug_push.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_memdup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_memdup.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_memdup.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_no_config.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_no_config.3 new file mode 120000 index 00000000..8e33e48f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_no_config.3 @@ -0,0 +1 @@ +OPENSSL_config.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_realloc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_realloc.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_realloc.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_actual_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_actual_size.3 new file mode 120000 index 00000000..1a8261fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_actual_size.3 @@ -0,0 +1 @@ +OPENSSL_secure_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_clear_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_clear_free.3 new file mode 120000 index 00000000..1a8261fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_clear_free.3 @@ -0,0 +1 @@ +OPENSSL_secure_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_free.3 new file mode 120000 index 00000000..1a8261fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_free.3 @@ -0,0 +1 @@ +OPENSSL_secure_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_malloc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_malloc.3 index cc1ecb47..7208d928 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_malloc.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_malloc.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_SECURE_MALLOC 3" -.TH OPENSSL_SECURE_MALLOC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_SECURE_MALLOC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_zalloc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_zalloc.3 new file mode 120000 index 00000000..1a8261fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_secure_zalloc.3 @@ -0,0 +1 @@ +OPENSSL_secure_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strdup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strdup.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strdup.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strlcat.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strlcat.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strlcat.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strlcpy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strlcpy.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strlcpy.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strndup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strndup.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_strndup.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_thread_stop.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_thread_stop.3 new file mode 120000 index 00000000..76a78b07 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_thread_stop.3 @@ -0,0 +1 @@ +OPENSSL_init_crypto.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_zalloc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_zalloc.3 new file mode 120000 index 00000000..92463685 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OPENSSL_zalloc.3 @@ -0,0 +1 @@ +OPENSSL_malloc.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_CTX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_CTX.3 new file mode 120000 index 00000000..2461f8be --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_CTX.3 @@ -0,0 +1 @@ +OSSL_STORE_open.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO.3 index e196b728..7b85af2e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OSSL_STORE_INFO 3" -.TH OSSL_STORE_INFO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OSSL_STORE_INFO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_free.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_free.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_CERT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_CERT.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_CERT.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_CRL.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_CRL.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_NAME.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_NAME.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_NAME_description.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_NAME_description.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_NAME_description.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_PARAMS.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_PARAMS.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_PKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_PKEY.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get0_PKEY.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_CERT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_CERT.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_CERT.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_CRL.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_CRL.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_NAME.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_NAME.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_NAME_description.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_NAME_description.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_NAME_description.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_PARAMS.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_PARAMS.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_PKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_PKEY.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get1_PKEY.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get_type.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_get_type.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_CERT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_CERT.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_CERT.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_CRL.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_CRL.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_NAME.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_NAME.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_PARAMS.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_PARAMS.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_PKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_PKEY.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_new_PKEY.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_set0_NAME_description.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_set0_NAME_description.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_set0_NAME_description.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_type_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_type_string.3 new file mode 120000 index 00000000..fc8d86a4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_INFO_type_string.3 @@ -0,0 +1 @@ +OSSL_STORE_INFO.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER.3 index 41f7d6e2..0c6e7c1c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OSSL_STORE_LOADER 3" -.TH OSSL_STORE_LOADER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OSSL_STORE_LOADER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_CTX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_CTX.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_CTX.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_free.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_free.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_get0_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_get0_engine.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_get0_engine.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_get0_scheme.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_get0_scheme.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_get0_scheme.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_new.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_new.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_close.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_close.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_close.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_ctrl.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_ctrl.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_eof.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_eof.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_eof.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_error.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_error.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_expect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_expect.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_expect.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_find.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_find.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_find.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_load.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_load.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_load.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_open.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_open.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_LOADER_set_open.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH.3 index 6fe50199..02f7f1a1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OSSL_STORE_SEARCH 3" -.TH OSSL_STORE_SEARCH 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OSSL_STORE_SEARCH 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_alias.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_alias.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_alias.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_issuer_serial.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_issuer_serial.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_issuer_serial.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_key_fingerprint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_key_fingerprint.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_key_fingerprint.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_name.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_by_name.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_free.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_free.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_bytes.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_bytes.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_digest.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_digest.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_name.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_name.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_serial.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_serial.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_serial.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_string.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get0_string.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get_type.3 new file mode 120000 index 00000000..e69540f5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_SEARCH_get_type.3 @@ -0,0 +1 @@ +OSSL_STORE_SEARCH.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_close.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_close.3 new file mode 120000 index 00000000..2461f8be --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_close.3 @@ -0,0 +1 @@ +OSSL_STORE_open.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_close_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_close_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_close_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_ctrl.3 new file mode 120000 index 00000000..2461f8be --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_ctrl.3 @@ -0,0 +1 @@ +OSSL_STORE_open.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_ctrl_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_ctrl_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_ctrl_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_eof.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_eof.3 new file mode 120000 index 00000000..2461f8be --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_eof.3 @@ -0,0 +1 @@ +OSSL_STORE_open.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_eof_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_eof_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_eof_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_error.3 new file mode 120000 index 00000000..2461f8be --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_error.3 @@ -0,0 +1 @@ +OSSL_STORE_open.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_error_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_error_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_error_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_expect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_expect.3 index 730d152e..d16bcd2c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_expect.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_expect.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OSSL_STORE_EXPECT 3" -.TH OSSL_STORE_EXPECT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OSSL_STORE_EXPECT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_expect_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_expect_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_expect_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_find.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_find.3 new file mode 120000 index 00000000..8c78ca5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_find.3 @@ -0,0 +1 @@ +OSSL_STORE_expect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_find_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_find_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_find_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_load.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_load.3 new file mode 120000 index 00000000..2461f8be --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_load.3 @@ -0,0 +1 @@ +OSSL_STORE_open.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_load_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_load_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_load_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_open.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_open.3 index 121ba5dc..7476fca0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_open.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_open.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OSSL_STORE_OPEN 3" -.TH OSSL_STORE_OPEN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OSSL_STORE_OPEN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -179,21 +179,22 @@ information for \fBOSSL_STORE_open()\fR, \fBOSSL_STORE_load()\fR, \fBOSSL_STORE_ \&\fBOSSL_STORE_close()\fR to work together. .SS "Functions" .IX Subsection "Functions" -\&\fBOSSL_STORE_open()\fR takes a uri or path \fBuri\fR, password \s-1UI\s0 method -\&\fBui_method\fR with associated data \fBui_data\fR, and post processing -callback \fBpost_process\fR with associated data \fBpost_process_data\fR, +\&\fBOSSL_STORE_open()\fR takes a uri or path \fIuri\fR, password \s-1UI\s0 method +\&\fIui_method\fR with associated data \fIui_data\fR, and post processing +callback \fIpost_process\fR with associated data \fIpost_process_data\fR, opens a channel to the data located at that \s-1URI\s0 and returns a \&\fB\s-1OSSL_STORE_CTX\s0\fR with all necessary internal information. -The given \fBui_method\fR and \fBui_data_data\fR will be reused by all -functions that use \fB\s-1OSSL_STORE_CTX\s0\fR when interaction is needed. -The given \fBpost_process\fR and \fBpost_process_data\fR will be reused by +The given \fIui_method\fR and \fIui_data\fR will be reused by all +functions that use \fB\s-1OSSL_STORE_CTX\s0\fR when interaction is needed, +for instance to provide a password. +The given \fIpost_process\fR and \fIpost_process_data\fR will be reused by \&\fBOSSL_STORE_load()\fR to manipulate or drop the value to be returned. -The \fBpost_process\fR function drops values by returning \fB\s-1NULL\s0\fR, which +The \fIpost_process\fR function drops values by returning \s-1NULL,\s0 which will cause \fBOSSL_STORE_load()\fR to start its process over with loading -the next object, until \fBpost_process\fR returns something other than -\&\fB\s-1NULL\s0\fR, or the end of data is reached as indicated by \fBOSSL_STORE_eof()\fR. +the next object, until \fIpost_process\fR returns something other than +\&\s-1NULL,\s0 or the end of data is reached as indicated by \fBOSSL_STORE_eof()\fR. .PP -\&\fBOSSL_STORE_ctrl()\fR takes a \fB\s-1OSSL_STORE_CTX\s0\fR, and command number \fBcmd\fR and +\&\fBOSSL_STORE_ctrl()\fR takes a \fB\s-1OSSL_STORE_CTX\s0\fR, and command number \fIcmd\fR and more arguments not specified here. The available loader specific command numbers and arguments they each take depends on the loader that's used and is documented together with @@ -222,6 +223,7 @@ Note that it may still be meaningful to try and load more objects, unless \&\fBOSSL_STORE_close()\fR takes a \fB\s-1OSSL_STORE_CTX\s0\fR, closes the channel that was opened by \fBOSSL_STORE_open()\fR and frees all other information that was stored in the \&\fB\s-1OSSL_STORE_CTX\s0\fR, as well as the \fB\s-1OSSL_STORE_CTX\s0\fR itself. +If \fIctx\fR is \s-1NULL\s0 it does nothing. .SH "SUPPORTED SCHEMES" .IX Header "SUPPORTED SCHEMES" The basic supported scheme is \fBfile:\fR. @@ -248,12 +250,12 @@ See \fBpassphrase\-encoding\fR\|(7) for further information. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBOSSL_STORE_open()\fR returns a pointer to a \fB\s-1OSSL_STORE_CTX\s0\fR on success, or -\&\fB\s-1NULL\s0\fR on failure. +\&\s-1NULL\s0 on failure. .PP \&\fBOSSL_STORE_load()\fR returns a pointer to a \fB\s-1OSSL_STORE_INFO\s0\fR on success, or -\&\fB\s-1NULL\s0\fR on error or when end of data is reached. +\&\s-1NULL\s0 on error or when end of data is reached. Use \fBOSSL_STORE_error()\fR and \fBOSSL_STORE_eof()\fR to determine the meaning of a -returned \fB\s-1NULL\s0\fR. +returned \s-1NULL.\s0 .PP \&\fBOSSL_STORE_eof()\fR returns 1 if the end of data has been reached, otherwise 0. @@ -271,9 +273,12 @@ otherwise 0. \&\s-1\fBOSSL_STORE_CTX\s0()\fR, \fBOSSL_STORE_post_process_info_fn()\fR, \fBOSSL_STORE_open()\fR, \&\fBOSSL_STORE_ctrl()\fR, \fBOSSL_STORE_load()\fR, \fBOSSL_STORE_eof()\fR and \fBOSSL_STORE_close()\fR were added in OpenSSL 1.1.1. +.PP +Handling of \s-1NULL\s0 \fIctx\fR argument for \fBOSSL_STORE_close()\fR +was introduced in OpenSSL 1.1.1h. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_open_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_open_fn.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_open_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_post_process_info_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_post_process_info_fn.3 new file mode 120000 index 00000000..2461f8be --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_post_process_info_fn.3 @@ -0,0 +1 @@ +OSSL_STORE_open.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_register_loader.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_register_loader.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_register_loader.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_supports_search.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_supports_search.3 new file mode 120000 index 00000000..8c78ca5a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_supports_search.3 @@ -0,0 +1 @@ +OSSL_STORE_expect.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_unregister_loader.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_unregister_loader.3 new file mode 120000 index 00000000..c14cbdd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OSSL_STORE_unregister_loader.3 @@ -0,0 +1 @@ +OSSL_STORE_LOADER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OTHERNAME_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OTHERNAME_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OTHERNAME_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OTHERNAME_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OTHERNAME_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OTHERNAME_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_algorithms.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_algorithms.3 index e8c7a65b..f38be052 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_algorithms.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_algorithms.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OPENSSL_ADD_ALL_ALGORITHMS 3" -.TH OPENSSL_ADD_ALL_ALGORITHMS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OPENSSL_ADD_ALL_ALGORITHMS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_ciphers.3 new file mode 120000 index 00000000..2571f547 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_ciphers.3 @@ -0,0 +1 @@ +OpenSSL_add_all_algorithms.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_digests.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_digests.3 new file mode 120000 index 00000000..2571f547 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_all_digests.3 @@ -0,0 +1 @@ +OpenSSL_add_all_algorithms.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_ssl_algorithms.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_ssl_algorithms.3 new file mode 120000 index 00000000..578a89de --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_add_ssl_algorithms.3 @@ -0,0 +1 @@ +SSL_library_init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_version.3 new file mode 120000 index 00000000..ab1700a9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_version.3 @@ -0,0 +1 @@ +OPENSSL_VERSION_NUMBER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_version_num.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_version_num.3 new file mode 120000 index 00000000..ab1700a9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/OpenSSL_version_num.3 @@ -0,0 +1 @@ +OPENSSL_VERSION_NUMBER.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBE2PARAM_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBE2PARAM_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBE2PARAM_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBE2PARAM_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBE2PARAM_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBE2PARAM_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBEPARAM_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBEPARAM_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBEPARAM_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBEPARAM_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBEPARAM_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBEPARAM_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBKDF2PARAM_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBKDF2PARAM_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBKDF2PARAM_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBKDF2PARAM_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBKDF2PARAM_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PBKDF2PARAM_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_EAY_COMPATIBLE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_EAY_COMPATIBLE.3 new file mode 120000 index 00000000..133c56e1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_EAY_COMPATIBLE.3 @@ -0,0 +1 @@ +PEM_read_bio_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_ONLY_B64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_ONLY_B64.3 new file mode 120000 index 00000000..133c56e1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_ONLY_B64.3 @@ -0,0 +1 @@ +PEM_read_bio_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_SECURE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_SECURE.3 new file mode 120000 index 00000000..133c56e1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_FLAG_SECURE.3 @@ -0,0 +1 @@ +PEM_read_bio_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_bytes_read_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_bytes_read_bio.3 index 593c2c80..087410ef 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_bytes_read_bio.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_bytes_read_bio.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PEM_BYTES_READ_BIO 3" -.TH PEM_BYTES_READ_BIO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PEM_BYTES_READ_BIO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_bytes_read_bio_secmem.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_bytes_read_bio_secmem.3 new file mode 120000 index 00000000..5fd854a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_bytes_read_bio_secmem.3 @@ -0,0 +1 @@ +PEM_bytes_read_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_do_header.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_do_header.3 new file mode 120000 index 00000000..f7a8026e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_do_header.3 @@ -0,0 +1 @@ +PEM_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_get_EVP_CIPHER_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_get_EVP_CIPHER_INFO.3 new file mode 120000 index 00000000..f7a8026e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_get_EVP_CIPHER_INFO.3 @@ -0,0 +1 @@ +PEM_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read.3 index 864f6f9a..3fa4e56c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PEM_READ 3" -.TH PEM_READ 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PEM_READ 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_CMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_CMS.3 index 1bfc8c2e..5a10989d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_CMS.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_CMS.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PEM_READ_CMS 3" -.TH PEM_READ_CMS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PEM_READ_CMS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DHparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DHparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DHparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSAparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSAparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_DSAparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_ECPKParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_ECPKParameters.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_ECPKParameters.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_ECPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_ECPrivateKey.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_ECPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_EC_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_EC_PUBKEY.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_EC_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_NETSCAPE_CERT_SEQUENCE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_NETSCAPE_CERT_SEQUENCE.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_NETSCAPE_CERT_SEQUENCE.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS7.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS7.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS8.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS8.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS8_PRIV_KEY_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS8_PRIV_KEY_INFO.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PKCS8_PRIV_KEY_INFO.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_PrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSAPublicKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSAPublicKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_RSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_SSL_SESSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_SSL_SESSION.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_SSL_SESSION.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_AUX.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_AUX.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_CRL.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_CRL.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_REQ.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_X509_REQ.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio.3 new file mode 120000 index 00000000..f7a8026e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio.3 @@ -0,0 +1 @@ +PEM_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_CMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_CMS.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_CMS.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DHparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DHparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DHparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSAparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSAparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_DSAparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_ECPKParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_ECPKParameters.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_ECPKParameters.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_EC_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_EC_PUBKEY.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_EC_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_NETSCAPE_CERT_SEQUENCE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_NETSCAPE_CERT_SEQUENCE.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_NETSCAPE_CERT_SEQUENCE.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS7.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS7.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS8.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS8.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS8_PRIV_KEY_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS8_PRIV_KEY_INFO.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PKCS8_PRIV_KEY_INFO.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_Parameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_Parameters.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_Parameters.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PrivateKey.3 index 8917f4be..a4e32fb2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PrivateKey.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_PrivateKey.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PEM_READ_BIO_PRIVATEKEY 3" -.TH PEM_READ_BIO_PRIVATEKEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PEM_READ_BIO_PRIVATEKEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -320,7 +320,7 @@ The \fBRSAPublicKey\fR functions process an \s-1RSA\s0 public key using an structure. .PP The \fB\s-1RSA_PUBKEY\s0\fR functions also process an \s-1RSA\s0 public key using -an \s-1RSA\s0 structure. However the public key is encoded using a +an \s-1RSA\s0 structure. However, the public key is encoded using a SubjectPublicKeyInfo structure and an error occurs if the public key is not \s-1RSA.\s0 .PP @@ -505,7 +505,7 @@ The pseudo code to derive the key would look similar to: .SH "BUGS" .IX Header "BUGS" The \s-1PEM\s0 read routines in some versions of OpenSSL will not correctly reuse -an existing structure. Therefore the following: +an existing structure. Therefore, the following: .PP .Vb 1 \& PEM_read_bio_X509(bp, &x, 0, NULL); @@ -614,7 +614,7 @@ in OpenSSL 1.1.0; applications should use the \s-1PKCS7\s0 standard instead as they will be formally deprecated in a future releases. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSAPublicKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSAPublicKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_RSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_SSL_SESSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_SSL_SESSION.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_SSL_SESSION.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_AUX.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_AUX.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_CRL.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_CRL.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_REQ.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_X509_REQ.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_ex.3 index 759bf7d7..2f96da4d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_ex.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_read_bio_ex.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PEM_READ_BIO_EX 3" -.TH PEM_READ_BIO_EX 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PEM_READ_BIO_EX 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write.3 new file mode 120000 index 00000000..f7a8026e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write.3 @@ -0,0 +1 @@ +PEM_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_CMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_CMS.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_CMS.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DHparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DHparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DHparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DHxparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DHxparams.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DHxparams.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSAparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSAparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_DSAparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_ECPKParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_ECPKParameters.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_ECPKParameters.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_ECPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_ECPrivateKey.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_ECPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_EC_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_EC_PUBKEY.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_EC_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_NETSCAPE_CERT_SEQUENCE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_NETSCAPE_CERT_SEQUENCE.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_NETSCAPE_CERT_SEQUENCE.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS7.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS7.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8PrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8PrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8PrivateKey_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8PrivateKey_nid.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8PrivateKey_nid.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8_PRIV_KEY_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8_PRIV_KEY_INFO.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PKCS8_PRIV_KEY_INFO.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_PrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSAPublicKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSAPublicKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_RSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_SSL_SESSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_SSL_SESSION.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_SSL_SESSION.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_AUX.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_AUX.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_CRL.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_CRL.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_REQ.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_REQ.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_REQ_NEW.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_REQ_NEW.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_X509_REQ_NEW.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio.3 new file mode 120000 index 00000000..f7a8026e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio.3 @@ -0,0 +1 @@ +PEM_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_CMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_CMS.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_CMS.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_CMS_stream.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_CMS_stream.3 index 43f9bb24..8557c434 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_CMS_stream.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_CMS_stream.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PEM_WRITE_BIO_CMS_STREAM 3" -.TH PEM_WRITE_BIO_CMS_STREAM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PEM_WRITE_BIO_CMS_STREAM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DHparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DHparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DHparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DHxparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DHxparams.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DHxparams.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSAparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSAparams.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_DSAparams.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_ECPKParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_ECPKParameters.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_ECPKParameters.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_ECPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_ECPrivateKey.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_ECPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_EC_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_EC_PUBKEY.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_EC_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_NETSCAPE_CERT_SEQUENCE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_NETSCAPE_CERT_SEQUENCE.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_NETSCAPE_CERT_SEQUENCE.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS7.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS7.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS7_stream.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS7_stream.3 index d09ac382..4bf5f0ad 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS7_stream.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS7_stream.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PEM_WRITE_BIO_PKCS7_STREAM 3" -.TH PEM_WRITE_BIO_PKCS7_STREAM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PEM_WRITE_BIO_PKCS7_STREAM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8PrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8PrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8PrivateKey_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8PrivateKey_nid.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8PrivateKey_nid.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8_PRIV_KEY_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8_PRIV_KEY_INFO.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PKCS8_PRIV_KEY_INFO.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_Parameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_Parameters.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_Parameters.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PrivateKey_traditional.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PrivateKey_traditional.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_PrivateKey_traditional.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSAPrivateKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSAPrivateKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSAPublicKey.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSAPublicKey.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSA_PUBKEY.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_RSA_PUBKEY.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_SSL_SESSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_SSL_SESSION.3 new file mode 120000 index 00000000..7adde691 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_SSL_SESSION.3 @@ -0,0 +1 @@ +PEM_read_CMS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_AUX.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_AUX.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_CRL.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_CRL.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_REQ.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_REQ.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_REQ_NEW.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_REQ_NEW.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PEM_write_bio_X509_REQ_NEW.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_BAGS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_BAGS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_BAGS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_BAGS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_BAGS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_BAGS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_MAC_DATA_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_MAC_DATA_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_MAC_DATA_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_MAC_DATA_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_MAC_DATA_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_MAC_DATA_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_SAFEBAG_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_SAFEBAG_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_SAFEBAG_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_SAFEBAG_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_SAFEBAG_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_SAFEBAG_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_create.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_create.3 index 0c1d700b..3f78aba7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_create.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_create.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS12_CREATE 3" -.TH PKCS12_CREATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS12_CREATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_newpass.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_newpass.3 index 2206b422..3b036114 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_newpass.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_newpass.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS12_NEWPASS 3" -.TH PKCS12_NEWPASS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS12_NEWPASS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_parse.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_parse.3 index 2d8e8ae8..7fc14bcb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_parse.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS12_parse.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS12_PARSE 3" -.TH PKCS12_PARSE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS12_PARSE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS5_PBKDF2_HMAC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS5_PBKDF2_HMAC.3 index 5c80f624..acff50ae 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS5_PBKDF2_HMAC.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS5_PBKDF2_HMAC.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS5_PBKDF2_HMAC 3" -.TH PKCS5_PBKDF2_HMAC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS5_PBKDF2_HMAC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS5_PBKDF2_HMAC_SHA1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS5_PBKDF2_HMAC_SHA1.3 new file mode 120000 index 00000000..40e1673a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS5_PBKDF2_HMAC_SHA1.3 @@ -0,0 +1 @@ +PKCS5_PBKDF2_HMAC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_DIGEST_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_DIGEST_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_DIGEST_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_DIGEST_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_DIGEST_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_DIGEST_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENCRYPT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENCRYPT_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENCRYPT_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENCRYPT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENCRYPT_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENCRYPT_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENC_CONTENT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENC_CONTENT_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENC_CONTENT_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENC_CONTENT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENC_CONTENT_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENC_CONTENT_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENVELOPE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENVELOPE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENVELOPE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENVELOPE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENVELOPE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ENVELOPE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_digest.3 new file mode 120000 index 00000000..f86b06de --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_digest.3 @@ -0,0 +1 @@ +X509_digest.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_ISSUER_AND_SERIAL_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_RECIP_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_RECIP_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_RECIP_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_RECIP_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_RECIP_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_RECIP_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNED_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNED_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNED_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNED_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNED_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNED_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNER_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNER_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNER_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNER_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNER_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGNER_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGN_ENVELOPE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGN_ENVELOPE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGN_ENVELOPE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGN_ENVELOPE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGN_ENVELOPE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_SIGN_ENVELOPE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_add_certificate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_add_certificate.3 new file mode 120000 index 00000000..7488587a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_add_certificate.3 @@ -0,0 +1 @@ +PKCS7_sign_add_signer.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_add_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_add_crl.3 new file mode 120000 index 00000000..7488587a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_add_crl.3 @@ -0,0 +1 @@ +PKCS7_sign_add_signer.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_decrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_decrypt.3 index 365a0a62..8b97e17a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_decrypt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_decrypt.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS7_DECRYPT 3" -.TH PKCS7_DECRYPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS7_DECRYPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_encrypt.3 index dadf4b2c..171340ca 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_encrypt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_encrypt.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS7_ENCRYPT 3" -.TH PKCS7_ENCRYPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS7_ENCRYPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_get0_signers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_get0_signers.3 new file mode 120000 index 00000000..f07129b3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_get0_signers.3 @@ -0,0 +1 @@ +PKCS7_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_print_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_print_ctx.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_print_ctx.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign.3 index a94d19b3..c3f7f4ac 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS7_SIGN 3" -.TH PKCS7_SIGN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS7_SIGN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -150,28 +150,26 @@ PKCS7_sign \- create a PKCS#7 signedData structure .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -\&\fBPKCS7_sign()\fR creates and returns a PKCS#7 signedData structure. \fBsigncert\fR is -the certificate to sign with, \fBpkey\fR is the corresponding private key. -\&\fBcerts\fR is an optional additional set of certificates to include in the PKCS#7 -structure (for example any intermediate CAs in the chain). +\&\fBPKCS7_sign()\fR creates and returns a PKCS#7 signedData structure. +\&\fIsigncert\fR is the certificate to sign with, \fIpkey\fR is the corresponding +private key. \fIcerts\fR is an optional set of extra certificates to include +in the PKCS#7 structure (for example any intermediate CAs in the chain). .PP -The data to be signed is read from \s-1BIO\s0 \fBdata\fR. +The data to be signed is read from \s-1BIO\s0 \fIdata\fR. .PP -\&\fBflags\fR is an optional set of flags. -.SH "NOTES" -.IX Header "NOTES" -Any of the following flags (ored together) can be passed in the \fBflags\fR -parameter. +\&\fIflags\fR is an optional set of flags. +.PP +Any of the following flags (ored together) can be passed in the \fIflags\fR .PP Many S/MIME clients expect the signed content to include valid \s-1MIME\s0 headers. If -the \fB\s-1PKCS7_TEXT\s0\fR flag is set \s-1MIME\s0 headers for type \fBtext/plain\fR are prepended +the \fB\s-1PKCS7_TEXT\s0\fR flag is set \s-1MIME\s0 headers for type \f(CW\*(C`text/plain\*(C'\fR are prepended to the data. .PP -If \fB\s-1PKCS7_NOCERTS\s0\fR is set the signer's certificate will not be included in the -\&\s-1PKCS7\s0 structure, the signer's certificate must still be supplied in the -\&\fBsigncert\fR parameter though. This can reduce the size of the signature if the -signers certificate can be obtained by other means: for example a previously -signed message. +If \fB\s-1PKCS7_NOCERTS\s0\fR is set the signer's certificate and the extra \fIcerts\fR +will not be included in the \s-1PKCS7\s0 structure. +The signer's certificate must still be supplied in the \fIsigncert\fR parameter +though. This can reduce the size of the signatures if the signer's certificates +can be obtained by other means: for example a previously signed message. .PP The data being signed is included in the \s-1PKCS7\s0 structure, unless \&\fB\s-1PKCS7_DETACHED\s0\fR is set in which case it is omitted. This is used for \s-1PKCS7\s0 @@ -195,7 +193,7 @@ these algorithms is disabled then it will not be included. .PP If the flags \fB\s-1PKCS7_STREAM\s0\fR is set then the returned \fB\s-1PKCS7\s0\fR structure is just initialized ready to perform the signing operation. The signing is however -\&\fBnot\fR performed and the data to be signed is not read from the \fBdata\fR +\&\fBnot\fR performed and the data to be signed is not read from the \fIdata\fR parameter. Signing is deferred until after the data has been written. In this way data can be signed in a single pass. .PP @@ -215,17 +213,17 @@ can be performed by obtaining the streaming \s-1ASN1\s0 \fB\s-1BIO\s0\fR directl If a signer is specified it will use the default digest for the signing algorithm. This is \fB\s-1SHA1\s0\fR for both \s-1RSA\s0 and \s-1DSA\s0 keys. .PP -The \fBcerts\fR, \fBsigncert\fR and \fBpkey\fR parameters can all be -\&\fB\s-1NULL\s0\fR if the \fB\s-1PKCS7_PARTIAL\s0\fR flag is set. One or more signers can be added +The \fIcerts\fR, \fIsigncert\fR and \fIpkey\fR parameters can all be +\&\s-1NULL\s0 if the \fB\s-1PKCS7_PARTIAL\s0\fR flag is set. One or more signers can be added using the function \fBPKCS7_sign_add_signer()\fR. \fBPKCS7_final()\fR must also be called to finalize the structure if streaming is not enabled. Alternative signing digests can also be specified using this method. .PP -If \fBsigncert\fR and \fBpkey\fR are \s-1NULL\s0 then a certificates only +If \fIsigncert\fR and \fIpkey\fR are \s-1NULL\s0 then a certificates only PKCS#7 structure is output. .PP -In versions of OpenSSL before 1.0.0 the \fBsigncert\fR and \fBpkey\fR parameters must -\&\fB\s-1NOT\s0\fR be \s-1NULL.\s0 +In versions of OpenSSL before 1.0.0 the \fIsigncert\fR and \fIpkey\fR parameters must +not be \s-1NULL.\s0 .SH "BUGS" .IX Header "BUGS" Some advanced attributes such as counter signatures are not supported. @@ -238,13 +236,13 @@ occurred. The error can be obtained from \fBERR_get_error\fR\|(3). \&\fBERR_get_error\fR\|(3), \fBPKCS7_verify\fR\|(3) .SH "HISTORY" .IX Header "HISTORY" -The \fB\s-1PKCS7_PARTIAL\s0\fR flag, and the ability for \fBcerts\fR, \fBsigncert\fR, -and \fBpkey\fR parameters to be \fB\s-1NULL\s0\fR were added in OpenSSL 1.0.0. +The \fB\s-1PKCS7_PARTIAL\s0\fR flag, and the ability for \fIcerts\fR, \fIsigncert\fR, +and \fIpkey\fR parameters to be \s-1NULL\s0 were added in OpenSSL 1.0.0. .PP The \fB\s-1PKCS7_STREAM\s0\fR flag was added in OpenSSL 1.0.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2002\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2002\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign_add_signer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign_add_signer.3 index ce45fd52..9a5ff685 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign_add_signer.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_sign_add_signer.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "PKCS7_SIGN_ADD_SIGNER 3" -.TH PKCS7_SIGN_ADD_SIGNER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS7_SIGN_ADD_SIGNER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -PKCS7_sign_add_signer \- add a signer PKCS7 signed data structure +PKCS7_sign_add_signer, PKCS7_add_certificate, PKCS7_add_crl \- add information to PKCS7 structure .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -147,21 +147,22 @@ PKCS7_sign_add_signer \- add a signer PKCS7 signed data structure \& \& PKCS7_SIGNER_INFO *PKCS7_sign_add_signer(PKCS7 *p7, X509 *signcert, \& EVP_PKEY *pkey, const EVP_MD *md, int flags); +\& int PKCS7_add_certificate(PKCS7 *p7, X509 *cert); +\& int PKCS7_add_crl(PKCS7 *p7, X509_CRL *crl); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -\&\fBPKCS7_sign_add_signer()\fR adds a signer with certificate \fBsigncert\fR and private -key \fBpkey\fR using message digest \fBmd\fR to a \s-1PKCS7\s0 signed data structure -\&\fBp7\fR. +\&\fBPKCS7_sign_add_signer()\fR adds a signer with certificate \fIsigncert\fR and private +key \fIpkey\fR using message digest \fImd\fR to a \s-1PKCS7\s0 signed data structure \fIp7\fR. .PP -The \s-1PKCS7\s0 structure should be obtained from an initial call to \fBPKCS7_sign()\fR -with the flag \fB\s-1PKCS7_PARTIAL\s0\fR set or in the case or re-signing a valid \s-1PKCS7\s0 +The \fB\s-1PKCS7\s0\fR structure should be obtained from an initial call to \fBPKCS7_sign()\fR +with the flag \fB\s-1PKCS7_PARTIAL\s0\fR set or in the case or re-signing a valid PKCS#7 signed data structure. .PP -If the \fBmd\fR parameter is \fB\s-1NULL\s0\fR then the default digest for the public +If the \fImd\fR parameter is \s-1NULL\s0 then the default digest for the public key algorithm will be used. .PP -Unless the \fB\s-1PKCS7_REUSE_DIGEST\s0\fR flag is set the returned \s-1PKCS7\s0 structure +Unless the \fB\s-1PKCS7_REUSE_DIGEST\s0\fR flag is set the returned \fB\s-1PKCS7\s0\fR structure is not complete and must be finalized either by streaming (if applicable) or a call to \fBPKCS7_final()\fR. .SH "NOTES" @@ -171,13 +172,13 @@ signed data structure where the simpler \fBPKCS7_sign()\fR function defaults are not appropriate. For example if multiple signers or non default digest algorithms are needed. .PP -Any of the following flags (ored together) can be passed in the \fBflags\fR +Any of the following flags (ored together) can be passed in the \fIflags\fR parameter. .PP If \fB\s-1PKCS7_REUSE_DIGEST\s0\fR is set then an attempt is made to copy the content -digest value from the \s-1PKCS7\s0 structure: to add a signer to an existing structure. +digest value from the \fB\s-1PKCS7\s0\fR structure: to add a signer to an existing structure. An error occurs if a matching digest value cannot be found to copy. The -returned \s-1PKCS7\s0 structure will be valid and finalized when this flag is set. +returned \fB\s-1PKCS7\s0\fR structure will be valid and finalized when this flag is set. .PP If \fB\s-1PKCS7_PARTIAL\s0\fR is set in addition to \fB\s-1PKCS7_REUSE_DIGEST\s0\fR then the \&\fB\s-1PKCS7_SIGNER_INO\s0\fR structure will not be finalized so additional attributes @@ -185,8 +186,8 @@ can be added. In this case an explicit call to \fBPKCS7_SIGNER_INFO_sign()\fR is needed to finalize it. .PP If \fB\s-1PKCS7_NOCERTS\s0\fR is set the signer's certificate will not be included in the -\&\s-1PKCS7\s0 structure, the signer's certificate must still be supplied in the -\&\fBsigncert\fR parameter though. This can reduce the size of the signature if the +\&\fB\s-1PKCS7\s0\fR structure, the signer's certificate must still be supplied in the +\&\fIsigncert\fR parameter though. This can reduce the size of the signature if the signers certificate can be obtained by other means: for example a previously signed message. .PP @@ -200,23 +201,36 @@ If present the SMIMECapabilities attribute indicates support for the following algorithms: triple \s-1DES, 128\s0 bit \s-1RC2, 64\s0 bit \s-1RC2, DES\s0 and 40 bit \s-1RC2.\s0 If any of these algorithms is disabled then it will not be included. .PP -\&\fBPKCS7_sign_add_signers()\fR returns an internal pointer to the \s-1PKCS7_SIGNER_INFO\s0 -structure just added, this can be used to set additional attributes +\&\fBPKCS7_sign_add_signers()\fR returns an internal pointer to the \fB\s-1PKCS7_SIGNER_INFO\s0\fR +structure just added, which can be used to set additional attributes before it is finalized. +.PP +\&\fBPKCS7_add_certificate()\fR adds to the \fB\s-1PKCS7\s0\fR structure \fIp7\fR the certificate +\&\fIcert\fR, which may be an end-entity (signer) certificate +or a \s-1CA\s0 certificate useful for chain building. +This is done internally by \fBPKCS7_sign_ex\fR\|(3) and similar signing functions. +It may have to be used before calling \fBPKCS7_verify\fR\|(3) +in order to provide any missing certificate(s) needed for verification. +.PP +\&\fBPKCS7_add_crl()\fR adds the \s-1CRL\s0 \fIcrl\fR to the \fB\s-1PKCS7\s0\fR structure \fIp7\fR. +This may be called to provide certificate status information +to be included when signing or to use when verifying the \fB\s-1PKCS7\s0\fR structure. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBPKCS7_sign_add_signers()\fR returns an internal pointer to the \s-1PKCS7_SIGNER_INFO\s0 +\&\fBPKCS7_sign_add_signers()\fR returns an internal pointer to the \fB\s-1PKCS7_SIGNER_INFO\s0\fR structure just added or \s-1NULL\s0 if an error occurs. +.PP +\&\fBPKCS7_add_certificate()\fR and \fBPKCS7_add_crl()\fR return 1 on success, 0 on error. .SH "SEE ALSO" .IX Header "SEE ALSO" -\&\fBERR_get_error\fR\|(3), \fBPKCS7_sign\fR\|(3), -\&\fBPKCS7_final\fR\|(3), +\&\fBERR_get_error\fR\|(3), \fBPKCS7_sign_ex\fR\|(3), +\&\fBPKCS7_final\fR\|(3), \fBPKCS7_verify\fR\|(3) .SH "HISTORY" .IX Header "HISTORY" The \fBPPKCS7_sign_add_signer()\fR function was added in OpenSSL 1.0.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2007\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2007\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_verify.3 index dc01ebc6..ae73bf87 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_verify.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS7_verify.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PKCS7_VERIFY 3" -.TH PKCS7_VERIFY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PKCS7_VERIFY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -152,105 +152,117 @@ PKCS7_verify, PKCS7_get0_signers \- verify a PKCS#7 signedData structure .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -\&\fBPKCS7_verify()\fR verifies a PKCS#7 signedData structure. \fBp7\fR is the \s-1PKCS7\s0 -structure to verify. \fBcerts\fR is a set of certificates in which to search for -the signer's certificate. \fBstore\fR is a trusted certificate store (used for -chain verification). \fBindata\fR is the signed data if the content is not -present in \fBp7\fR (that is it is detached). The content is written to \fBout\fR -if it is not \s-1NULL.\s0 +\&\fBPKCS7_verify()\fR is very similar to \fBCMS_verify\fR\|(3). +It verifies a PKCS#7 signedData structure given in \fIp7\fR. +The optional \fIcerts\fR parameter refers to a set of certificates +in which to search for signer's certificates. +\&\fIp7\fR may contain extra untrusted \s-1CA\s0 certificates that may be used for +chain building as well as CRLs that may be used for certificate validation. +\&\fIstore\fR may be \s-1NULL\s0 or point to +the trusted certificate store to use for chain verification. +\&\fIindata\fR refers to the signed data if the content is detached from \fIp7\fR. +Otherwise \fIindata\fR should be \s-1NULL,\s0 and then the signed data must be in \fIp7\fR. +The content is written to the \s-1BIO\s0 \fIout\fR unless it is \s-1NULL.\s0 +\&\fIflags\fR is an optional set of flags, which can be used to modify the operation. .PP -\&\fBflags\fR is an optional set of flags, which can be used to modify the verify -operation. -.PP -\&\fBPKCS7_get0_signers()\fR retrieves the signer's certificates from \fBp7\fR, it does -\&\fBnot\fR check their validity or whether any signatures are valid. The \fBcerts\fR -and \fBflags\fR parameters have the same meanings as in \fBPKCS7_verify()\fR. +\&\fBPKCS7_get0_signers()\fR retrieves the signer's certificates from \fIp7\fR, it does +\&\fBnot\fR check their validity or whether any signatures are valid. The \fIcerts\fR +and \fIflags\fR parameters have the same meanings as in \fBPKCS7_verify()\fR. .SH "VERIFY PROCESS" .IX Header "VERIFY PROCESS" Normally the verify process proceeds as follows. .PP -Initially some sanity checks are performed on \fBp7\fR. The type of \fBp7\fR must -be signedData. There must be at least one signature on the data and if -the content is detached \fBindata\fR cannot be \fB\s-1NULL\s0\fR. If the content is -not detached and \fBindata\fR is not \fB\s-1NULL\s0\fR, then the structure has both +Initially some sanity checks are performed on \fIp7\fR. The type of \fIp7\fR must +be SignedData. There must be at least one signature on the data and if +the content is detached \fIindata\fR cannot be \s-1NULL.\s0 If the content is +not detached and \fIindata\fR is not \s-1NULL\s0 then the structure has both embedded and external content. To treat this as an error, use the flag \&\fB\s-1PKCS7_NO_DUAL_CONTENT\s0\fR. The default behavior allows this, for compatibility with older versions of OpenSSL. .PP An attempt is made to locate all the signer's certificates, first looking in -the \fBcerts\fR parameter (if it is not \fB\s-1NULL\s0\fR) and then looking in any certificates -contained in the \fBp7\fR structure itself. If any signer's certificates cannot be -located the operation fails. +the \fIcerts\fR parameter (if it is not \s-1NULL\s0). Then they are looked up in any +certificates contained in the \fIp7\fR structure unless \fB\s-1PKCS7_NOINTERN\s0\fR is set. +If any signer's certificates cannot be located the operation fails. .PP Each signer's certificate is chain verified using the \fBsmimesign\fR purpose and -the supplied trusted certificate store. Any internal certificates in the message -are used as untrusted CAs. If any chain verify fails an error code is returned. +using the trusted certificate store \fIstore\fR if supplied. +Any internal certificates in the message, which may have been added using +\&\fBPKCS7_add_certificate\fR\|(3), are used as untrusted CAs unless \fB\s-1PKCS7_NOCHAIN\s0\fR +is set. +If \s-1CRL\s0 checking is enabled in \fIstore\fR and \fB\s-1PKCS7_NOCRL\s0\fR is not set, +any internal CRLs, which may have been added using \fBPKCS7_add_crl\fR\|(3), +are used in addition to attempting to look them up in \fIstore\fR. +If \fIstore\fR is not \s-1NULL\s0 and any chain verify fails an error code is returned. .PP -Finally the signed content is read (and written to \fBout\fR is it is not \s-1NULL\s0) and -the signature's checked. +Finally the signed content is read (and written to \fIout\fR unless it is \s-1NULL\s0) +and the signature is checked. .PP -If all signature's verify correctly then the function is successful. +If all signatures verify correctly then the function is successful. .PP -Any of the following flags (ored together) can be passed in the \fBflags\fR parameter -to change the default verify behaviour. Only the flag \fB\s-1PKCS7_NOINTERN\s0\fR is -meaningful to \fBPKCS7_get0_signers()\fR. +Any of the following flags (ored together) can be passed in the \fIflags\fR +parameter to change the default verify behaviour. +Only the flag \fB\s-1PKCS7_NOINTERN\s0\fR is meaningful to \fBPKCS7_get0_signers()\fR. .PP If \fB\s-1PKCS7_NOINTERN\s0\fR is set the certificates in the message itself are not -searched when locating the signer's certificate. This means that all the signers -certificates must be in the \fBcerts\fR parameter. +searched when locating the signer's certificates. +This means that all the signer's certificates must be in the \fIcerts\fR parameter. .PP -If the \fB\s-1PKCS7_TEXT\s0\fR flag is set \s-1MIME\s0 headers for type \fBtext/plain\fR are deleted -from the content. If the content is not of type \fBtext/plain\fR then an error is +If \fB\s-1PKCS7_NOCRL\s0\fR is set and \s-1CRL\s0 checking is enabled in \fIstore\fR then any +CRLs in the message itself are ignored. +.PP +If the \fB\s-1PKCS7_TEXT\s0\fR flag is set \s-1MIME\s0 headers for type \f(CW\*(C`text/plain\*(C'\fR are deleted +from the content. If the content is not of type \f(CW\*(C`text/plain\*(C'\fR then an error is returned. .PP If \fB\s-1PKCS7_NOVERIFY\s0\fR is set the signer's certificates are not chain verified. .PP If \fB\s-1PKCS7_NOCHAIN\s0\fR is set then the certificates contained in the message are not used as untrusted CAs. This means that the whole verify chain (apart from -the signer's certificate) must be contained in the trusted store. +the signer's certificates) must be contained in the trusted store. .PP If \fB\s-1PKCS7_NOSIGS\s0\fR is set then the signatures on the data are not checked. .SH "NOTES" .IX Header "NOTES" One application of \fB\s-1PKCS7_NOINTERN\s0\fR is to only accept messages signed by a small number of certificates. The acceptable certificates would be passed -in the \fBcerts\fR parameter. In this case if the signer is not one of the -certificates supplied in \fBcerts\fR then the verify will fail because the +in the \fIcerts\fR parameter. In this case if the signer's certificate is not one +of the certificates supplied in \fIcerts\fR then the verify will fail because the signer cannot be found. .PP Care should be taken when modifying the default verify behaviour, for example setting \fBPKCS7_NOVERIFY|PKCS7_NOSIGS\fR will totally disable all verification and any signed message will be considered valid. This combination is however -useful if one merely wishes to write the content to \fBout\fR and its validity +useful if one merely wishes to write the content to \fIout\fR and its validity is not considered important. .PP -Chain verification should arguably be performed using the signing time rather -than the current time. However since the signing time is supplied by the +Chain verification should arguably be performed using the signing time rather +than the current time. However, since the signing time is supplied by the signer it cannot be trusted without additional evidence (such as a trusted timestamp). .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBPKCS7_verify()\fR returns one for a successful verification and zero -if an error occurs. +\&\fBPKCS7_verify()\fR returns 1 for a successful verification and 0 if an error occurs. .PP -\&\fBPKCS7_get0_signers()\fR returns all signers or \fB\s-1NULL\s0\fR if an error occurred. +\&\fBPKCS7_get0_signers()\fR returns all signers or \s-1NULL\s0 if an error occurred. .PP -The error can be obtained from \fBERR_get_error\fR\|(3) +The error can be obtained from \fBERR_get_error\fR\|(3). .SH "BUGS" .IX Header "BUGS" -The trusted certificate store is not searched for the signers certificate, -this is primarily due to the inadequacies of the current \fBX509_STORE\fR +The trusted certificate store is not searched for the signer's certificates. +This is primarily due to the inadequacies of the current \fBX509_STORE\fR functionality. .PP -The lack of single pass processing and need to hold all data in memory as -mentioned in \fBPKCS7_sign()\fR also applies to \fBPKCS7_verify()\fR. +The lack of single pass processing means that the signed content must all +be held in memory if it is not detached. .SH "SEE ALSO" .IX Header "SEE ALSO" +\&\fBCMS_verify\fR\|(3), \fBPKCS7_add_certificate\fR\|(3), \fBPKCS7_add_crl\fR\|(3), \&\fBERR_get_error\fR\|(3), \fBPKCS7_sign\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2002\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2002\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS8_PRIV_KEY_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS8_PRIV_KEY_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS8_PRIV_KEY_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS8_PRIV_KEY_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS8_PRIV_KEY_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKCS8_PRIV_KEY_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKEY_USAGE_PERIOD_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKEY_USAGE_PERIOD_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKEY_USAGE_PERIOD_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKEY_USAGE_PERIOD_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKEY_USAGE_PERIOD_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PKEY_USAGE_PERIOD_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYINFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYINFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYINFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYINFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYINFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYINFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYQUALINFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYQUALINFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYQUALINFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYQUALINFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYQUALINFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICYQUALINFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_CONSTRAINTS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_CONSTRAINTS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_CONSTRAINTS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_CONSTRAINTS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_CONSTRAINTS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_CONSTRAINTS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_MAPPING_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_MAPPING_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_MAPPING_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_MAPPING_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_MAPPING_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/POLICY_MAPPING_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFOS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_addProfessionInfo.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_addProfessionInfo.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_addProfessionInfo.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_namingAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_namingAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_namingAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_professionItems.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_professionItems.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_professionItems.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_professionOIDs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_professionOIDs.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_professionOIDs.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_registrationNumber.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_registrationNumber.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_get0_registrationNumber.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_addProfessionInfo.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_addProfessionInfo.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_addProfessionInfo.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_namingAuthority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_namingAuthority.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_namingAuthority.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_professionItems.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_professionItems.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_professionItems.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_professionOIDs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_professionOIDs.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_professionOIDs.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_registrationNumber.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_registrationNumber.3 new file mode 120000 index 00000000..86f1944e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROFESSION_INFO_set0_registrationNumber.3 @@ -0,0 +1 @@ +ADMISSIONS.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_CERT_INFO_EXTENSION_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_CERT_INFO_EXTENSION_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_CERT_INFO_EXTENSION_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_CERT_INFO_EXTENSION_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_CERT_INFO_EXTENSION_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_CERT_INFO_EXTENSION_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_POLICY_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_POLICY_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_POLICY_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_POLICY_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_POLICY_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/PROXY_POLICY_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_bytes.3 new file mode 120000 index 00000000..83be5e38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_bytes.3 @@ -0,0 +1 @@ +RAND_DRBG_generate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_cleanup_entropy_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_cleanup_entropy_fn.3 new file mode 120000 index 00000000..07d1082d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_cleanup_entropy_fn.3 @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_cleanup_nonce_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_cleanup_nonce_fn.3 new file mode 120000 index 00000000..07d1082d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_cleanup_nonce_fn.3 @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_free.3 new file mode 120000 index 00000000..cdfd717a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_free.3 @@ -0,0 +1 @@ +RAND_DRBG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_generate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_generate.3 index 504d206b..2c406877 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_generate.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_generate.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_DRBG_GENERATE 3" -.TH RAND_DRBG_GENERATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_DRBG_GENERATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_master.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_master.3 index 516e4ec1..8e0b9b97 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_master.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_master.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_DRBG_GET0_MASTER 3" -.TH RAND_DRBG_GET0_MASTER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_DRBG_GET0_MASTER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_private.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_private.3 new file mode 120000 index 00000000..c65d58ad --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_private.3 @@ -0,0 +1 @@ +RAND_DRBG_get0_master.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_public.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_public.3 new file mode 120000 index 00000000..c65d58ad --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get0_public.3 @@ -0,0 +1 @@ +RAND_DRBG_get0_master.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_entropy_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_entropy_fn.3 new file mode 120000 index 00000000..07d1082d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_entropy_fn.3 @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_ex_data.3 new file mode 120000 index 00000000..bee54496 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_ex_data.3 @@ -0,0 +1 @@ +RAND_DRBG_set_ex_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_ex_new_index.3 new file mode 120000 index 00000000..bee54496 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_ex_new_index.3 @@ -0,0 +1 @@ +RAND_DRBG_set_ex_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_nonce_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_nonce_fn.3 new file mode 120000 index 00000000..07d1082d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_get_nonce_fn.3 @@ -0,0 +1 @@ +RAND_DRBG_set_callbacks.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_instantiate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_instantiate.3 new file mode 120000 index 00000000..cdfd717a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_instantiate.3 @@ -0,0 +1 @@ +RAND_DRBG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_new.3 index 7f06df32..59010fa6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_DRBG_NEW 3" -.TH RAND_DRBG_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_DRBG_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -185,7 +185,7 @@ its type and to instantiate it. .PP The optional \fBflags\fR argument specifies a set of bit flags which can be joined using the | operator. Currently, the only flag is -\&\s-1RAND_DRBG_FLAG_CTR_NO_DF,\s0 which disables the use of a the derivation function +\&\s-1RAND_DRBG_FLAG_CTR_NO_DF,\s0 which disables the use of the derivation function ctr_df. For an explanation, see [\s-1NIST SP 800\-90A\s0 Rev. 1]. .PP If a \fBparent\fR instance is specified then this will be used instead of @@ -239,7 +239,7 @@ cryptographic routines that obtain random data directly or indirectly. The \s-1RAND_DRBG\s0 functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2017\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_reseed.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_reseed.3 index 1c2fab7f..02d20a68 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_reseed.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_reseed.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_DRBG_RESEED 3" -.TH RAND_DRBG_RESEED 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_DRBG_RESEED 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_secure_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_secure_new.3 new file mode 120000 index 00000000..cdfd717a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_secure_new.3 @@ -0,0 +1 @@ +RAND_DRBG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set.3 new file mode 120000 index 00000000..cdfd717a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set.3 @@ -0,0 +1 @@ +RAND_DRBG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_callbacks.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_callbacks.3 index ade4a681..d4827467 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_callbacks.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_callbacks.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_DRBG_SET_CALLBACKS 3" -.TH RAND_DRBG_SET_CALLBACKS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_DRBG_SET_CALLBACKS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -207,7 +207,7 @@ does not satisfy the conditions requested by [\s-1NIST SP 800\-90C\s0], then it must also indicate an error by returning a buffer length of 0. See \s-1NOTES\s0 section for more details. .PP -The \fBcleanup_entropy\fR() callback is called from the \fBdrbg\fR to to clear and +The \fBcleanup_entropy\fR() callback is called from the \fBdrbg\fR to clear and free the buffer allocated previously by \fBget_entropy()\fR. The values \fBout\fR and \fBoutlen\fR are the random buffer's address and length, as returned by the \fBget_entropy()\fR callback. @@ -260,7 +260,7 @@ section 8.6.7. The \s-1RAND_DRBG\s0 functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2017\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_defaults.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_defaults.3 new file mode 120000 index 00000000..cdfd717a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_defaults.3 @@ -0,0 +1 @@ +RAND_DRBG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_ex_data.3 index 5349bda3..61e377f0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_ex_data.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_ex_data.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_DRBG_SET_EX_DATA 3" -.TH RAND_DRBG_SET_EX_DATA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_DRBG_SET_EX_DATA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_defaults.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_defaults.3 new file mode 120000 index 00000000..91194693 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_defaults.3 @@ -0,0 +1 @@ +RAND_DRBG_reseed.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_interval.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_interval.3 new file mode 120000 index 00000000..91194693 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_interval.3 @@ -0,0 +1 @@ +RAND_DRBG_reseed.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_time_interval.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_time_interval.3 new file mode 120000 index 00000000..91194693 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_set_reseed_time_interval.3 @@ -0,0 +1 @@ +RAND_DRBG_reseed.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_uninstantiate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_uninstantiate.3 new file mode 120000 index 00000000..cdfd717a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_DRBG_uninstantiate.3 @@ -0,0 +1 @@ +RAND_DRBG_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_OpenSSL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_OpenSSL.3 new file mode 120000 index 00000000..ad1a1040 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_OpenSSL.3 @@ -0,0 +1 @@ +RAND_set_rand_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_add.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_add.3 index 9aa0d697..1551c19a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_add.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_add.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_ADD 3" -.TH RAND_ADD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_ADD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -199,7 +199,7 @@ usage by the random seed sources. Some seed sources maintain open file descriptors by default, which allows such sources to operate in a \&\fBchroot\fR\|(2) jail without the associated device nodes being available. When the \fBkeep\fR argument is zero, this call disables the retention of file -descriptors. Conversely, a non-zero argument enables the retention of +descriptors. Conversely, a nonzero argument enables the retention of file descriptors. This function is usually called during initialization and it takes effect immediately. .PP @@ -227,7 +227,7 @@ The other functions do not return values. not be used. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_bytes.3 index 78210930..752f4728 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_bytes.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_bytes.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_BYTES 3" -.TH RAND_BYTES 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_BYTES 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_cleanup.3 index d0a8370f..0a323daa 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_cleanup.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_cleanup.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_CLEANUP 3" -.TH RAND_CLEANUP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_CLEANUP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_egd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_egd.3 index 61b4ca48..5bbd1656 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_egd.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_egd.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_EGD 3" -.TH RAND_EGD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_EGD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_egd_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_egd_bytes.3 new file mode 120000 index 00000000..782181e8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_egd_bytes.3 @@ -0,0 +1 @@ +RAND_egd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_event.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_event.3 new file mode 120000 index 00000000..97a80021 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_event.3 @@ -0,0 +1 @@ +RAND_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_file_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_file_name.3 new file mode 120000 index 00000000..8a4b31d2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_file_name.3 @@ -0,0 +1 @@ +RAND_load_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_get_rand_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_get_rand_method.3 new file mode 120000 index 00000000..ad1a1040 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_get_rand_method.3 @@ -0,0 +1 @@ +RAND_set_rand_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_keep_random_devices_open.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_keep_random_devices_open.3 new file mode 120000 index 00000000..97a80021 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_keep_random_devices_open.3 @@ -0,0 +1 @@ +RAND_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_load_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_load_file.3 index 14fc5450..a021aabd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_load_file.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_load_file.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_LOAD_FILE 3" -.TH RAND_LOAD_FILE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_LOAD_FILE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -154,7 +154,7 @@ RAND_load_file, RAND_write_file, RAND_file_name \- PRNG seed file .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fBRAND_load_file()\fR reads a number of bytes from file \fBfilename\fR and -adds them to the \s-1PRNG.\s0 If \fBmax_bytes\fR is non-negative, +adds them to the \s-1PRNG.\s0 If \fBmax_bytes\fR is nonnegative, up to \fBmax_bytes\fR are read; if \fBmax_bytes\fR is \-1, the complete file is read. Do not load the same file multiple times unless its contents have @@ -174,7 +174,7 @@ file. \fBbuf\fR points to a buffer of size \fBnum\fR in which to store the filename. .PP On all systems, if the environment variable \fB\s-1RANDFILE\s0\fR is set, its -value will be used as the seed file name. +value will be used as the seed filename. Otherwise, the file is called \f(CW\*(C`.rnd\*(C'\fR, found in platform dependent locations: .IP "On Windows (in order of preference)" 4 .IX Item "On Windows (in order of preference)" @@ -193,7 +193,7 @@ Otherwise, the file is called \f(CW\*(C`.rnd\*(C'\fR, found in platform dependen .Ve .PP If \f(CW$HOME\fR (on non-Windows and non-VMS system) is not set either, or -\&\fBnum\fR is too small for the path name, an error occurs. +\&\fBnum\fR is too small for the pathname, an error occurs. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBRAND_load_file()\fR returns the number of bytes read or \-1 on error. @@ -210,7 +210,7 @@ error. \&\s-1\fBRAND\s0\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_poll.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_poll.3 new file mode 120000 index 00000000..97a80021 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_poll.3 @@ -0,0 +1 @@ +RAND_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_priv_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_priv_bytes.3 new file mode 120000 index 00000000..bfb11137 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_priv_bytes.3 @@ -0,0 +1 @@ +RAND_bytes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_pseudo_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_pseudo_bytes.3 new file mode 120000 index 00000000..bfb11137 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_pseudo_bytes.3 @@ -0,0 +1 @@ +RAND_bytes.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_query_egd_bytes.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_query_egd_bytes.3 new file mode 120000 index 00000000..782181e8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_query_egd_bytes.3 @@ -0,0 +1 @@ +RAND_egd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_screen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_screen.3 new file mode 120000 index 00000000..97a80021 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_screen.3 @@ -0,0 +1 @@ +RAND_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_seed.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_seed.3 new file mode 120000 index 00000000..97a80021 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_seed.3 @@ -0,0 +1 @@ +RAND_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_set_rand_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_set_rand_method.3 index a3aed58d..07d72018 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_set_rand_method.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_set_rand_method.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_SET_RAND_METHOD 3" -.TH RAND_SET_RAND_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_SET_RAND_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_status.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_status.3 new file mode 120000 index 00000000..97a80021 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_status.3 @@ -0,0 +1 @@ +RAND_add.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_write_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_write_file.3 new file mode 120000 index 00000000..8a4b31d2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RAND_write_file.3 @@ -0,0 +1 @@ +RAND_load_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RC4.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RC4.3 new file mode 120000 index 00000000..e0040ea3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RC4.3 @@ -0,0 +1 @@ +RC4_set_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RC4_set_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RC4_set_key.3 index 8a4c262c..9824b334 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RC4_set_key.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RC4_set_key.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RC4_SET_KEY 3" -.TH RC4_SET_KEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RC4_SET_KEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160.3 new file mode 120000 index 00000000..ca61c4a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160.3 @@ -0,0 +1 @@ +RIPEMD160_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Final.3 new file mode 120000 index 00000000..ca61c4a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Final.3 @@ -0,0 +1 @@ +RIPEMD160_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Init.3 index 8805a6c1..6a0d8e70 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Init.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Init.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RIPEMD160_INIT 3" -.TH RIPEMD160_INIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RIPEMD160_INIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Update.3 new file mode 120000 index 00000000..ca61c4a8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RIPEMD160_Update.3 @@ -0,0 +1 @@ +RIPEMD160_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSAPrivateKey_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSAPrivateKey_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSAPrivateKey_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSAPublicKey_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSAPublicKey_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSAPublicKey_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_OAEP_PARAMS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_OAEP_PARAMS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_OAEP_PARAMS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_OAEP_PARAMS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_OAEP_PARAMS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_OAEP_PARAMS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PKCS1_OpenSSL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PKCS1_OpenSSL.3 new file mode 120000 index 00000000..df1a041e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PKCS1_OpenSSL.3 @@ -0,0 +1 @@ +RSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PSS_PARAMS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PSS_PARAMS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PSS_PARAMS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PSS_PARAMS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PSS_PARAMS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_PSS_PARAMS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_bits.3 new file mode 120000 index 00000000..57f25e1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_bits.3 @@ -0,0 +1 @@ +RSA_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_blinding_off.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_blinding_off.3 new file mode 120000 index 00000000..46c36ad3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_blinding_off.3 @@ -0,0 +1 @@ +RSA_blinding_on.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_blinding_on.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_blinding_on.3 index 1f9633a1..87957070 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_blinding_on.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_blinding_on.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_BLINDING_ON 3" -.TH RSA_BLINDING_ON 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_BLINDING_ON 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -156,7 +156,7 @@ measure the time of \s-1RSA\s0 decryption or signature operations, blinding must be used to protect the \s-1RSA\s0 operation from that attack. .PP \&\fBRSA_blinding_on()\fR turns blinding on for key \fBrsa\fR and generates a -random blinding factor. \fBctx\fR is \fB\s-1NULL\s0\fR or a pre-allocated and +random blinding factor. \fBctx\fR is \fB\s-1NULL\s0\fR or a preallocated and initialized \fB\s-1BN_CTX\s0\fR. .PP \&\fBRSA_blinding_off()\fR turns blinding off and frees the memory used for @@ -168,7 +168,7 @@ the blinding factor. \&\fBRSA_blinding_off()\fR returns no value. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_check_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_check_key.3 index 9a48b418..e5d1f7c1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_check_key.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_check_key.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_CHECK_KEY 3" -.TH RSA_CHECK_KEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_CHECK_KEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_check_key_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_check_key_ex.3 new file mode 120000 index 00000000..f478ce92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_check_key_ex.3 @@ -0,0 +1 @@ +RSA_check_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_clear_flags.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_clear_flags.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_flags.3 new file mode 120000 index 00000000..df1a041e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_flags.3 @@ -0,0 +1 @@ +RSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_free.3 new file mode 120000 index 00000000..da3e31f3 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_free.3 @@ -0,0 +1 @@ +RSA_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_key.3 index 49d633c3..761725c8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_key.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_key.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_GENERATE_KEY 3" -.TH RSA_GENERATE_KEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_GENERATE_KEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_key_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_key_ex.3 new file mode 120000 index 00000000..b1c58d54 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_key_ex.3 @@ -0,0 +1 @@ +RSA_generate_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_multi_prime_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_multi_prime_key.3 new file mode 120000 index 00000000..b1c58d54 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_generate_multi_prime_key.3 @@ -0,0 +1 @@ +RSA_generate_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_crt_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_crt_params.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_crt_params.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_d.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_d.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_d.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_dmp1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_dmp1.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_dmp1.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_dmq1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_dmq1.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_dmq1.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_e.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_e.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_e.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_engine.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_engine.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_engine.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_factors.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_factors.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_factors.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_iqmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_iqmp.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_iqmp.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_key.3 index b4a7c49c..adb37e2e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_key.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_key.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_GET0_KEY 3" -.TH RSA_GET0_KEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_GET0_KEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_multi_prime_crt_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_multi_prime_crt_params.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_multi_prime_crt_params.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_multi_prime_factors.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_multi_prime_factors.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_multi_prime_factors.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_n.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_n.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_n.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_p.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_p.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_p.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_pss_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_pss_params.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_pss_params.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_q.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_q.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get0_q.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_default_method.3 new file mode 120000 index 00000000..df1a041e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_default_method.3 @@ -0,0 +1 @@ +RSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_method.3 new file mode 120000 index 00000000..df1a041e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_method.3 @@ -0,0 +1 @@ +RSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_multi_prime_extra_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_multi_prime_extra_count.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_multi_prime_extra_count.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_version.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_get_version.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_dup.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_dup.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_free.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_free.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get0_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get0_app_data.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get0_app_data.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get0_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get0_name.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get0_name.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_bn_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_bn_mod_exp.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_bn_mod_exp.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_finish.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_finish.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_finish.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_flags.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_flags.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_init.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_init.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_keygen.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_keygen.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_mod_exp.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_mod_exp.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_multi_prime_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_multi_prime_keygen.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_multi_prime_keygen.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_priv_dec.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_priv_dec.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_priv_dec.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_priv_enc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_priv_enc.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_priv_enc.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_pub_dec.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_pub_dec.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_pub_dec.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_pub_enc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_pub_enc.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_pub_enc.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_sign.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_sign.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_verify.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_get_verify.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_new.3 index d851f675..abb053dc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_METH_NEW 3" -.TH RSA_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set0_app_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set0_app_data.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set0_app_data.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set1_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set1_name.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set1_name.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_bn_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_bn_mod_exp.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_bn_mod_exp.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_finish.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_finish.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_finish.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_flags.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_flags.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_init.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_init.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_keygen.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_keygen.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_mod_exp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_mod_exp.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_mod_exp.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_multi_prime_keygen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_multi_prime_keygen.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_multi_prime_keygen.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_priv_dec.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_priv_dec.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_priv_dec.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_priv_enc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_priv_enc.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_priv_enc.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_pub_dec.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_pub_dec.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_pub_dec.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_pub_enc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_pub_enc.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_pub_enc.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_sign.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_sign.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_verify.3 new file mode 120000 index 00000000..e7c0598f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_meth_set_verify.3 @@ -0,0 +1 @@ +RSA_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_new.3 index f39ddfe7..1674ab94 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_NEW 3" -.TH RSA_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_new_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_new_method.3 new file mode 120000 index 00000000..df1a041e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_new_method.3 @@ -0,0 +1 @@ +RSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_OAEP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_OAEP.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_OAEP.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_OAEP_mgf1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_OAEP_mgf1.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_OAEP_mgf1.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_type_1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_type_1.3 index c1c10b61..f8a0fb29 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_type_1.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_type_1.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_PADDING_ADD_PKCS1_TYPE_1 3" -.TH RSA_PADDING_ADD_PKCS1_TYPE_1 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_PADDING_ADD_PKCS1_TYPE_1 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_type_2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_type_2.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_PKCS1_type_2.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_SSLv23.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_SSLv23.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_SSLv23.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_none.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_none.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_add_none.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_OAEP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_OAEP.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_OAEP.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_OAEP_mgf1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_OAEP_mgf1.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_OAEP_mgf1.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_type_1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_type_1.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_type_1.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_type_2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_type_2.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_PKCS1_type_2.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_SSLv23.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_SSLv23.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_SSLv23.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_none.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_none.3 new file mode 120000 index 00000000..f55abf92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_padding_check_none.3 @@ -0,0 +1 @@ +RSA_padding_add_PKCS1_type_1.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_print.3 index 895ebe65..f6de881a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_print.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_print.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_PRINT 3" -.TH RSA_PRINT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_PRINT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_print_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_print_fp.3 new file mode 120000 index 00000000..1b54d4f4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_print_fp.3 @@ -0,0 +1 @@ +RSA_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_private_decrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_private_decrypt.3 new file mode 120000 index 00000000..c7b22fe5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_private_decrypt.3 @@ -0,0 +1 @@ +RSA_public_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_private_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_private_encrypt.3 index 2b1121c0..00757bd2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_private_encrypt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_private_encrypt.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "RSA_PRIVATE_ENCRYPT 3" -.TH RSA_PRIVATE_ENCRYPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_PRIVATE_ENCRYPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -RSA_private_encrypt, RSA_public_decrypt \- low level signature operations +RSA_private_encrypt, RSA_public_decrypt \- low\-level signature operations .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -153,7 +153,7 @@ RSA_private_encrypt, RSA_public_decrypt \- low level signature operations .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -These functions handle \s-1RSA\s0 signatures at a low level. +These functions handle \s-1RSA\s0 signatures at a low-level. .PP \&\fBRSA_private_encrypt()\fR signs the \fBflen\fR bytes at \fBfrom\fR (usually a message digest with an algorithm identifier) using the private key @@ -192,7 +192,7 @@ obtained by \fBERR_get_error\fR\|(3). \&\fBRSA_sign\fR\|(3), \fBRSA_verify\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_public_decrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_public_decrypt.3 new file mode 120000 index 00000000..8e3bafbd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_public_decrypt.3 @@ -0,0 +1 @@ +RSA_private_encrypt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_public_encrypt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_public_encrypt.3 index 23adf064..bdb39e99 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_public_encrypt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_public_encrypt.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_PUBLIC_ENCRYPT 3" -.TH RSA_PUBLIC_ENCRYPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_PUBLIC_ENCRYPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_security_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_security_bits.3 new file mode 120000 index 00000000..57f25e1f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_security_bits.3 @@ -0,0 +1 @@ +RSA_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_crt_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_crt_params.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_crt_params.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_factors.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_factors.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_factors.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_key.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_key.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_multi_prime_params.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_multi_prime_params.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set0_multi_prime_params.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_default_method.3 new file mode 120000 index 00000000..df1a041e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_default_method.3 @@ -0,0 +1 @@ +RSA_set_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_flags.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_flags.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_method.3 index f38fd8d9..367c9540 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_method.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_set_method.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_SET_METHOD 3" -.TH RSA_SET_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_SET_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -186,7 +186,7 @@ recommended. \&\fBrsa\fR. This will replace the \s-1RSA_METHOD\s0 used by the \s-1RSA\s0 key and if the previous method was supplied by an \s-1ENGINE,\s0 the handle to that \s-1ENGINE\s0 will be released during the change. It is possible to have \s-1RSA\s0 keys that only -work with certain \s-1RSA_METHOD\s0 implementations (eg. from an \s-1ENGINE\s0 module +work with certain \s-1RSA_METHOD\s0 implementations (e.g. from an \s-1ENGINE\s0 module that supports embedded hardware-protected keys), and in such cases attempting to change the \s-1RSA_METHOD\s0 for the key can have unexpected results. @@ -307,7 +307,7 @@ The \fBRSA_null_method()\fR, which was a partial attempt to avoid patent issues, was replaced to always return \s-1NULL\s0 in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign.3 index 5132f493..1a91f5af 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_SIGN 3" -.TH RSA_SIGN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_SIGN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign_ASN1_OCTET_STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign_ASN1_OCTET_STRING.3 index 1637d9bf..82f51b37 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign_ASN1_OCTET_STRING.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_sign_ASN1_OCTET_STRING.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_SIGN_ASN1_OCTET_STRING 3" -.TH RSA_SIGN_ASN1_OCTET_STRING 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_SIGN_ASN1_OCTET_STRING 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_size.3 index 681b3a15..ff250600 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_size.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_size.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA_SIZE 3" -.TH RSA_SIZE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA_SIZE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_test_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_test_flags.3 new file mode 120000 index 00000000..9847b2e9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_test_flags.3 @@ -0,0 +1 @@ +RSA_get0_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_verify.3 new file mode 120000 index 00000000..c2cea956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_verify.3 @@ -0,0 +1 @@ +RSA_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_verify_ASN1_OCTET_STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_verify_ASN1_OCTET_STRING.3 new file mode 120000 index 00000000..7d95cb63 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/RSA_verify_ASN1_OCTET_STRING.3 @@ -0,0 +1 @@ +RSA_sign_ASN1_OCTET_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCRYPT_PARAMS_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCRYPT_PARAMS_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCRYPT_PARAMS_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCRYPT_PARAMS_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCRYPT_PARAMS_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCRYPT_PARAMS_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_free.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_free.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_print.3 new file mode 120000 index 00000000..656efbd1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_print.3 @@ -0,0 +1 @@ +SCT_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_validate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_validate.3 new file mode 120000 index 00000000..5e7e4f90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_LIST_validate.3 @@ -0,0 +1 @@ +SCT_validate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_free.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_free.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_extensions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_extensions.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_extensions.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_log_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_log_id.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_log_id.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_signature.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get0_signature.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_log_entry_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_log_entry_type.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_log_entry_type.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_signature_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_signature_nid.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_signature_nid.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_source.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_source.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_source.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_timestamp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_timestamp.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_timestamp.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_validation_status.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_validation_status.3 new file mode 120000 index 00000000..5e7e4f90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_validation_status.3 @@ -0,0 +1 @@ +SCT_validate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_version.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_get_version.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_new.3 index afbfcf04..4a796d73 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SCT_NEW 3" -.TH SCT_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SCT_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_new_from_base64.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_new_from_base64.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_new_from_base64.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_print.3 index 5bae3be3..c0b1c13f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_print.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_print.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SCT_PRINT 3" -.TH SCT_PRINT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SCT_PRINT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_extensions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_extensions.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_extensions.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_log_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_log_id.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_log_id.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_signature.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set0_signature.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_extensions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_extensions.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_extensions.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_log_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_log_id.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_log_id.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_signature.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set1_signature.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_log_entry_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_log_entry_type.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_log_entry_type.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_signature_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_signature_nid.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_signature_nid.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_source.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_source.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_source.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_timestamp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_timestamp.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_timestamp.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_version.3 new file mode 120000 index 00000000..a3f84eb6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_set_version.3 @@ -0,0 +1 @@ +SCT_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_validate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_validate.3 index 444eee6b..a344254c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_validate.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_validate.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SCT_VALIDATE 3" -.TH SCT_VALIDATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SCT_VALIDATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_validation_status_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_validation_status_string.3 new file mode 120000 index 00000000..656efbd1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SCT_validation_status_string.3 @@ -0,0 +1 @@ +SCT_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Final.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Final.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Init.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Init.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Update.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA1_Update.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Final.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Final.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Init.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Init.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Update.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA224_Update.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Final.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Final.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Init.3 index 7be13128..93d97491 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Init.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Init.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SHA256_INIT 3" -.TH SHA256_INIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SHA256_INIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -208,9 +208,6 @@ The buffer \fBmd\fR must have space for the output from the \s-1SHA\s0 variant b \&\s-1SHA512_DIGEST_LENGTH\s0). Also note that, as for the \s-1\fBSHA1\s0()\fR function above, the \&\s-1\fBSHA224\s0()\fR, \s-1\fBSHA256\s0()\fR, \s-1\fBSHA384\s0()\fR and \s-1\fBSHA512\s0()\fR functions are not thread safe if \&\fBmd\fR is \s-1NULL.\s0 -.PP -The predecessor of \s-1SHA\-1, SHA,\s0 is also implemented, but it should be -used only when backward compatibility is required. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\s-1\fBSHA1\s0()\fR, \s-1\fBSHA224\s0()\fR, \s-1\fBSHA256\s0()\fR, \s-1\fBSHA384\s0()\fR and \s-1\fBSHA512\s0()\fR return a pointer to the hash @@ -228,7 +225,7 @@ Standard), \&\fBEVP_DigestInit\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Update.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA256_Update.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Final.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Final.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Init.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Init.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Update.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA384_Update.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Final.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Final.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Final.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Init.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Init.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Update.3 new file mode 120000 index 00000000..2a79f55a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SHA512_Update.3 @@ -0,0 +1 @@ +SHA256_Init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_CMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_CMS.3 index da2c3b2e..7fb4ad19 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_CMS.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_CMS.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SMIME_READ_CMS 3" -.TH SMIME_READ_CMS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SMIME_READ_CMS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_PKCS7.3 index bc94d0a4..5f08d40c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_PKCS7.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_read_PKCS7.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SMIME_READ_PKCS7 3" -.TH SMIME_READ_PKCS7 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SMIME_READ_PKCS7 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_CMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_CMS.3 index 47ff5ac1..5eb320df 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_CMS.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_CMS.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SMIME_WRITE_CMS 3" -.TH SMIME_WRITE_CMS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SMIME_WRITE_CMS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_PKCS7.3 index fece0d90..bb080282 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_PKCS7.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SMIME_write_PKCS7.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SMIME_WRITE_PKCS7 3" -.TH SMIME_WRITE_PKCS7 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SMIME_WRITE_PKCS7 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_description.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_description.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_description.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_find.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_find.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_find.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_auth_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_auth_nid.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_auth_nid.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_bits.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_bits.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_cipher_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_cipher_nid.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_cipher_nid.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_digest_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_digest_nid.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_digest_nid.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_handshake_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_handshake_digest.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_handshake_digest.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_id.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_id.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_kx_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_kx_nid.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_kx_nid.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_name.3 index e97ed590..b0d963d7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_name.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_name.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CIPHER_GET_NAME 3" -.TH SSL_CIPHER_GET_NAME 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CIPHER_GET_NAME 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_protocol_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_protocol_id.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_protocol_id.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_version.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_get_version.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_is_aead.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_is_aead.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_is_aead.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_standard_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_standard_name.3 new file mode 120000 index 00000000..f2d4fe7c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CIPHER_standard_name.3 @@ -0,0 +1 @@ +SSL_CIPHER_get_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_add_compression_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_add_compression_method.3 index c7eb49f9..808c801b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_add_compression_method.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_add_compression_method.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_COMP_ADD_COMPRESSION_METHOD 3" -.TH SSL_COMP_ADD_COMPRESSION_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_COMP_ADD_COMPRESSION_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_free_compression_methods.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_free_compression_methods.3 new file mode 120000 index 00000000..5de29352 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_free_compression_methods.3 @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get0_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get0_name.3 new file mode 120000 index 00000000..5de29352 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get0_name.3 @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get_compression_methods.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get_compression_methods.3 new file mode 120000 index 00000000..5de29352 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get_compression_methods.3 @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get_id.3 new file mode 120000 index 00000000..5de29352 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_COMP_get_id.3 @@ -0,0 +1 @@ +SSL_COMP_add_compression_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_clear_flags.3 new file mode 120000 index 00000000..c08bb217 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_clear_flags.3 @@ -0,0 +1 @@ +SSL_CONF_CTX_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_free.3 new file mode 120000 index 00000000..baebc2db --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_free.3 @@ -0,0 +1 @@ +SSL_CONF_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_new.3 index 28a9ddf5..799e9ccd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CONF_CTX_NEW 3" -.TH SSL_CONF_CTX_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CONF_CTX_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set1_prefix.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set1_prefix.3 index 350e5c0c..a9bca5e1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set1_prefix.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set1_prefix.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CONF_CTX_SET1_PREFIX 3" -.TH SSL_CONF_CTX_SET1_PREFIX 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CONF_CTX_SET1_PREFIX 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_flags.3 index 16d1b24a..34f87842 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_flags.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_flags.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CONF_CTX_SET_FLAGS 3" -.TH SSL_CONF_CTX_SET_FLAGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CONF_CTX_SET_FLAGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_ssl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_ssl.3 new file mode 120000 index 00000000..5116749b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_ssl.3 @@ -0,0 +1 @@ +SSL_CONF_CTX_set_ssl_ctx.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_ssl_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_ssl_ctx.3 index 5b8be317..8aafd97a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_ssl_ctx.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_CTX_set_ssl_ctx.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CONF_CTX_SET_SSL_CTX 3" -.TH SSL_CONF_CTX_SET_SSL_CTX 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CONF_CTX_SET_SSL_CTX 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd.3 index c19beba3..0b0e1f3c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CONF_CMD 3" -.TH SSL_CONF_CMD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CONF_CMD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -209,7 +209,7 @@ will also be used for the \fBkey_share\fR sent by a client in a TLSv1.3 .Sp The \fBvalue\fR argument is a colon separated list of groups. The group can be either the \fB\s-1NIST\s0\fR name (e.g. \fBP\-256\fR), some other commonly used name where -applicable (e.g. \fBX25519\fR) or an OpenSSL \s-1OID\s0 name (e.g \fBprime256v1\fR). Group +applicable (e.g. \fBX25519\fR) or an OpenSSL \s-1OID\s0 name (e.g. \fBprime256v1\fR). Group names are case sensitive. The list should be in order of preference with the most preferred group first. .IP "\fB\-curves\fR" 4 @@ -223,7 +223,7 @@ servers The \fBvalue\fR argument is a curve name or the special value \fBauto\fR which picks an appropriate curve based on client and server preferences. The curve can be either the \fB\s-1NIST\s0\fR name (e.g. \fBP\-256\fR) or an OpenSSL \s-1OID\s0 name -(e.g \fBprime256v1\fR). Curve names are case sensitive. +(e.g. \fBprime256v1\fR). Curve names are case sensitive. .IP "\fB\-cipher\fR" 4 .IX Item "-cipher" Sets the TLSv1.2 and below ciphersuite list to \fBvalue\fR. This list will be @@ -266,13 +266,16 @@ Disables all attempts at renegotiation in TLSv1.2 and earlier, same as setting .IP "\fB\-min_protocol\fR, \fB\-max_protocol\fR" 4 .IX Item "-min_protocol, -max_protocol" Sets the minimum and maximum supported protocol. -Currently supported protocol values are \fBSSLv3\fR, \fBTLSv1\fR, -\&\fBTLSv1.1\fR, \fBTLSv1.2\fR, \fBTLSv1.3\fR for \s-1TLS\s0 and \fBDTLSv1\fR, \fBDTLSv1.2\fR for \s-1DTLS,\s0 -and \fBNone\fR for no limit. -If either bound is not specified then only the other bound applies, -if specified. -To restrict the supported protocol versions use these commands rather -than the deprecated alternative commands below. +Currently supported protocol values are \fBSSLv3\fR, \fBTLSv1\fR, \fBTLSv1.1\fR, +\&\fBTLSv1.2\fR, \fBTLSv1.3\fR for \s-1TLS\s0; \fBDTLSv1\fR, \fBDTLSv1.2\fR for \s-1DTLS,\s0 and \fBNone\fR +for no limit. +If either the lower or upper bound is not specified then only the other bound +applies, if specified. +If your application supports both \s-1TLS\s0 and \s-1DTLS\s0 you can specify any of these +options twice, once with a bound for \s-1TLS\s0 and again with an appropriate bound +for \s-1DTLS.\s0 +To restrict the supported protocol versions use these commands rather than the +deprecated alternative commands below. .IP "\fB\-no_ssl3\fR, \fB\-no_tls1\fR, \fB\-no_tls1_1\fR, \fB\-no_tls1_2\fR, \fB\-no_tls1_3\fR" 4 .IX Item "-no_ssl3, -no_tls1, -no_tls1_1, -no_tls1_2, -no_tls1_3" Disables protocol support for SSLv3, TLSv1.0, TLSv1.1, TLSv1.2 or TLSv1.3 by @@ -445,7 +448,7 @@ will also be used for the \fBkey_share\fR sent by a client in a TLSv1.3 .Sp The \fBvalue\fR argument is a colon separated list of groups. The group can be either the \fB\s-1NIST\s0\fR name (e.g. \fBP\-256\fR), some other commonly used name where -applicable (e.g. \fBX25519\fR) or an OpenSSL \s-1OID\s0 name (e.g \fBprime256v1\fR). Group +applicable (e.g. \fBX25519\fR) or an OpenSSL \s-1OID\s0 name (e.g. \fBprime256v1\fR). Group names are case sensitive. The list should be in order of preference with the most preferred group first. .IP "\fBCurves\fR" 4 @@ -457,14 +460,22 @@ This sets the minimum supported \s-1SSL, TLS\s0 or \s-1DTLS\s0 version. .Sp Currently supported protocol values are \fBSSLv3\fR, \fBTLSv1\fR, \fBTLSv1.1\fR, \&\fBTLSv1.2\fR, \fBTLSv1.3\fR, \fBDTLSv1\fR and \fBDTLSv1.2\fR. -The value \fBNone\fR will disable the limit. +The \s-1SSL\s0 and \s-1TLS\s0 bounds apply only to TLS-based contexts, while the \s-1DTLS\s0 bounds +apply only to DTLS-based contexts. +The command can be repeated with one instance setting a \s-1TLS\s0 bound, and the +other setting a \s-1DTLS\s0 bound. +The value \fBNone\fR applies to both types of contexts and disables the limits. .IP "\fBMaxProtocol\fR" 4 .IX Item "MaxProtocol" This sets the maximum supported \s-1SSL, TLS\s0 or \s-1DTLS\s0 version. .Sp Currently supported protocol values are \fBSSLv3\fR, \fBTLSv1\fR, \fBTLSv1.1\fR, \&\fBTLSv1.2\fR, \fBTLSv1.3\fR, \fBDTLSv1\fR and \fBDTLSv1.2\fR. -The value \fBNone\fR will disable the limit. +The \s-1SSL\s0 and \s-1TLS\s0 bounds apply only to TLS-based contexts, while the \s-1DTLS\s0 bounds +apply only to DTLS-based contexts. +The command can be repeated with one instance setting a \s-1TLS\s0 bound, and the +other setting a \s-1DTLS\s0 bound. +The value \fBNone\fR applies to both types of contexts and disables the limits. .IP "\fBProtocol\fR" 4 .IX Item "Protocol" This can be used to enable or disable certain versions of the \s-1SSL, @@ -507,7 +518,7 @@ the \fB\-flag\fR syntax is needed to disable it. \&\fB\s-1SSL_OP_NO_TICKET\s0\fR: that is \fB\-SessionTicket\fR is the same as setting \&\fB\s-1SSL_OP_NO_TICKET\s0\fR. .Sp -\&\fBCompression\fR: \s-1SSL/TLS\s0 compression support, enabled by default. Inverse +\&\fBCompression\fR: \s-1SSL/TLS\s0 compression support, disabled by default. Inverse of \fB\s-1SSL_OP_NO_COMPRESSION\s0\fR. .Sp \&\fBEmptyFragments\fR: use empty fragments as a countermeasure against a @@ -611,7 +622,7 @@ syntax errors. The value is a string without any specific structure. .IP "\fB\s-1SSL_CONF_TYPE_FILE\s0\fR" 4 .IX Item "SSL_CONF_TYPE_FILE" -The value is a file name. +The value is a filename. .IP "\fB\s-1SSL_CONF_TYPE_DIR\s0\fR" 4 .IX Item "SSL_CONF_TYPE_DIR" The value is a directory name. @@ -769,7 +780,7 @@ OpenSSL passing a command which didn't take an argument would return \&\fBAllowNoDHEKEX\fR and \fBPrioritizeChaCha\fR were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2012\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2012\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd_argv.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd_argv.3 index 0c585f73..2662e782 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd_argv.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd_argv.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CONF_CMD_ARGV 3" -.TH SSL_CONF_CMD_ARGV 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CONF_CMD_ARGV 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd_value_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd_value_type.3 new file mode 120000 index 00000000..e22b9c67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CONF_cmd_value_type.3 @@ -0,0 +1 @@ +SSL_CONF_cmd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add0_chain_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add0_chain_cert.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add0_chain_cert.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add1_chain_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add1_chain_cert.3 index 0bb0119e..60cf268c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add1_chain_cert.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add1_chain_cert.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_ADD1_CHAIN_CERT 3" -.TH SSL_CTX_ADD1_CHAIN_CERT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_ADD1_CHAIN_CERT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add1_to_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add1_to_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add1_to_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_client_CA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_client_CA.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_client_CA.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_client_custom_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_client_custom_ext.3 new file mode 120000 index 00000000..7fbfc6f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_client_custom_ext.3 @@ -0,0 +1 @@ +SSL_extension_supported.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_custom_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_custom_ext.3 new file mode 120000 index 00000000..7fbfc6f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_custom_ext.3 @@ -0,0 +1 @@ +SSL_extension_supported.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_extra_chain_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_extra_chain_cert.3 index 5a755e88..44697eb2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_extra_chain_cert.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_extra_chain_cert.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_ADD_EXTRA_CHAIN_CERT 3" -.TH SSL_CTX_ADD_EXTRA_CHAIN_CERT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_ADD_EXTRA_CHAIN_CERT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_server_custom_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_server_custom_ext.3 new file mode 120000 index 00000000..7fbfc6f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_server_custom_ext.3 @@ -0,0 +1 @@ +SSL_extension_supported.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_session.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_session.3 index fc9a9d01..72484245 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_session.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_add_session.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_ADD_SESSION 3" -.TH SSL_CTX_ADD_SESSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_ADD_SESSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_build_cert_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_build_cert_chain.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_build_cert_chain.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_callback_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_callback_ctrl.3 new file mode 120000 index 00000000..cd48d63f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_callback_ctrl.3 @@ -0,0 +1 @@ +SSL_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_check_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_check_private_key.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_check_private_key.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_chain_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_chain_certs.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_chain_certs.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_extra_chain_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_extra_chain_certs.3 new file mode 120000 index 00000000..d129a866 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_extra_chain_certs.3 @@ -0,0 +1 @@ +SSL_CTX_add_extra_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_mode.3 new file mode 120000 index 00000000..295da90e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_mode.3 @@ -0,0 +1 @@ +SSL_CTX_set_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_options.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_options.3 new file mode 120000 index 00000000..ae626a40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_clear_options.3 @@ -0,0 +1 @@ +SSL_CTX_set_options.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_config.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_config.3 index c893d218..860f1c60 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_config.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_config.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_CONFIG 3" -.TH SSL_CTX_CONFIG 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_CONFIG 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_ct_is_enabled.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_ct_is_enabled.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_ct_is_enabled.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_ctrl.3 index 46a97405..8515fd3d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_ctrl.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_ctrl.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_CTRL 3" -.TH SSL_CTX_CTRL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_CTRL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_clear_flags.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_clear_flags.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_enable.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_enable.3 index 04f6ef9d..536cb1b9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_enable.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_enable.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_DANE_ENABLE 3" -.TH SSL_CTX_DANE_ENABLE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_DANE_ENABLE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -254,7 +254,7 @@ release long-term references respectively. matched the peer certificate chain. The return value indicates the match depth or failure to match just as with \&\fBSSL_get0_dane_authority()\fR. -When the return value is non-negative, the storage pointed to by the \fBusage\fR, +When the return value is nonnegative, the storage pointed to by the \fBusage\fR, \&\fBselector\fR, \fBmtype\fR and \fBdata\fR parameters is updated to the corresponding \&\s-1TLSA\s0 record fields. The \fBdata\fR field is in binary wire form, and is therefore not NUL-terminated, @@ -268,7 +268,7 @@ Applications that need long-term access to this field need to copy the content. optional \s-1DANE\s0 verification features. \&\fBSSL_CTX_dane_clear_flags()\fR and \fBSSL_dane_clear_flags()\fR can be used to disable the same features. -The \fBflags\fR argument is a bitmask of the features to enable or disable. +The \fBflags\fR argument is a bit mask of the features to enable or disable. The \fBflags\fR set for an \fB\s-1SSL_CTX\s0\fR context are copied to each \fB\s-1SSL\s0\fR handle associated with that context at the time the handle is created. Subsequent changes in the context's \fBflags\fR have no effect on the \fBflags\fR set @@ -304,7 +304,7 @@ certificate or a public key that fails to parse. .PP The functions \fBSSL_get0_dane_authority()\fR and \fBSSL_get0_dane_tlsa()\fR return a negative value when \s-1DANE\s0 authentication failed or was not enabled, a -non-negative value indicates the chain depth at which the \s-1TLSA\s0 record matched a +nonnegative value indicates the chain depth at which the \s-1TLSA\s0 record matched a chain certificate, or the depth of the top-most certificate, when the \s-1TLSA\s0 record is a full public key that is its signer. .PP @@ -500,7 +500,7 @@ or unsupported parameters) disable peer authentication by calling These functions were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_mtype_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_mtype_set.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_mtype_set.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_set_flags.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_dane_set_flags.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_decrypt_session_ticket_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_decrypt_session_ticket_fn.3 new file mode 120000 index 00000000..07a39225 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_decrypt_session_ticket_fn.3 @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_disable_ct.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_disable_ct.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_disable_ct.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_enable_ct.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_enable_ct.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_enable_ct.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_flush_sessions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_flush_sessions.3 index 7695e0b0..a65ee091 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_flush_sessions.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_flush_sessions.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_FLUSH_SESSIONS 3" -.TH SSL_CTX_FLUSH_SESSIONS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_FLUSH_SESSIONS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_free.3 index 1691d43f..be649046 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_free.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_free.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_FREE 3" -.TH SSL_CTX_FREE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_FREE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_generate_session_ticket_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_generate_session_ticket_fn.3 new file mode 120000 index 00000000..07a39225 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_generate_session_ticket_fn.3 @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_chain_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_chain_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_chain_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_chain_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_chain_certs.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_chain_certs.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_param.3 index b73bc6da..f7910977 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_param.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_param.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_GET0_PARAM 3" -.TH SSL_CTX_GET0_PARAM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_GET0_PARAM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_security_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_security_ex_data.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_security_ex_data.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_verify_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_verify_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get0_verify_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_cert_store.3 new file mode 120000 index 00000000..87080a31 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_ciphers.3 new file mode 120000 index 00000000..a5c5b490 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_ciphers.3 @@ -0,0 +1 @@ +SSL_get_ciphers.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_client_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_client_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_client_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_client_cert_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_client_cert_cb.3 new file mode 120000 index 00000000..5ab3a249 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_client_cert_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_cert_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_passwd_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_passwd_cb.3 new file mode 120000 index 00000000..ced1a3d1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_passwd_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_passwd_cb_userdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_passwd_cb_userdata.3 new file mode 120000 index 00000000..ced1a3d1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_passwd_cb_userdata.3 @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_read_ahead.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_read_ahead.3 new file mode 120000 index 00000000..5a79fd46 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_default_read_ahead.3 @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_ex_data.3 new file mode 120000 index 00000000..0022e256 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_ex_data.3 @@ -0,0 +1 @@ +SSL_CTX_set_ex_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_info_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_info_callback.3 new file mode 120000 index 00000000..47e39f6f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_info_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_info_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_keylog_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_keylog_callback.3 new file mode 120000 index 00000000..36368c40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_keylog_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_keylog_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_cert_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_cert_list.3 new file mode 120000 index 00000000..57ed5968 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_cert_list.3 @@ -0,0 +1 @@ +SSL_CTX_set_max_cert_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_proto_version.3 new file mode 120000 index 00000000..64444bed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_max_proto_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_min_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_min_proto_version.3 new file mode 120000 index 00000000..64444bed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_min_proto_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_mode.3 new file mode 120000 index 00000000..295da90e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_mode.3 @@ -0,0 +1 @@ +SSL_CTX_set_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_num_tickets.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_num_tickets.3 new file mode 120000 index 00000000..7e122209 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_num_tickets.3 @@ -0,0 +1 @@ +SSL_CTX_set_num_tickets.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_options.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_options.3 new file mode 120000 index 00000000..ae626a40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_options.3 @@ -0,0 +1 @@ +SSL_CTX_set_options.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_quiet_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_quiet_shutdown.3 new file mode 120000 index 00000000..ea530590 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_quiet_shutdown.3 @@ -0,0 +1 @@ +SSL_CTX_set_quiet_shutdown.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_read_ahead.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_read_ahead.3 new file mode 120000 index 00000000..5a79fd46 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_read_ahead.3 @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_record_padding_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_record_padding_callback_arg.3 new file mode 120000 index 00000000..c7bb1184 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_record_padding_callback_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_recv_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_recv_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_recv_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_security_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_security_callback.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_security_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_security_level.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_security_level.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_security_level.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_session_cache_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_session_cache_mode.3 new file mode 120000 index 00000000..0fd3f07b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_session_cache_mode.3 @@ -0,0 +1 @@ +SSL_CTX_set_session_cache_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_timeout.3 new file mode 120000 index 00000000..6d33474d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_timeout.3 @@ -0,0 +1 @@ +SSL_CTX_set_timeout.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_arg.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_cb.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_type.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_tlsext_status_type.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_callback.3 new file mode 120000 index 00000000..1b7a2eae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_callback.3 @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_depth.3 new file mode 120000 index 00000000..1b7a2eae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_depth.3 @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_mode.3 index fe95a275..6001021a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_mode.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_get_verify_mode.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_GET_VERIFY_MODE 3" -.TH SSL_CTX_GET_VERIFY_MODE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_GET_VERIFY_MODE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_has_client_custom_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_has_client_custom_ext.3 index 21e30307..ae0940f0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_has_client_custom_ext.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_has_client_custom_ext.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_HAS_CLIENT_CUSTOM_EXT 3" -.TH SSL_CTX_HAS_CLIENT_CUSTOM_EXT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_HAS_CLIENT_CUSTOM_EXT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_keylog_cb_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_keylog_cb_func.3 new file mode 120000 index 00000000..36368c40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_keylog_cb_func.3 @@ -0,0 +1 @@ +SSL_CTX_set_keylog_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_load_verify_locations.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_load_verify_locations.3 index 6b1a2791..ead35bf8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_load_verify_locations.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_load_verify_locations.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_LOAD_VERIFY_LOCATIONS 3" -.TH SSL_CTX_LOAD_VERIFY_LOCATIONS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_LOAD_VERIFY_LOCATIONS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_new.3 index 2013e685..b14a3807 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_NEW 3" -.TH SSL_CTX_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_remove_session.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_remove_session.3 new file mode 120000 index 00000000..4253ae48 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_remove_session.3 @@ -0,0 +1 @@ +SSL_CTX_add_session.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_select_current_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_select_current_cert.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_select_current_cert.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept_good.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept_good.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept_good.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept_renegotiate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept_renegotiate.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_accept_renegotiate.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_cache_full.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_cache_full.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_cache_full.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_cb_hits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_cb_hits.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_cb_hits.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect_good.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect_good.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect_good.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect_renegotiate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect_renegotiate.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_connect_renegotiate.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_cache_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_cache_size.3 new file mode 120000 index 00000000..01e6e2aa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_cache_size.3 @@ -0,0 +1 @@ +SSL_CTX_sess_set_cache_size.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_get_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_get_cb.3 new file mode 120000 index 00000000..7bc2a9c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_get_cb.3 @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_new_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_new_cb.3 new file mode 120000 index 00000000..7bc2a9c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_new_cb.3 @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_remove_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_remove_cb.3 new file mode 120000 index 00000000..7bc2a9c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_get_remove_cb.3 @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_hits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_hits.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_hits.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_misses.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_misses.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_misses.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_number.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_number.3 index 62f33a69..f46f22c3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_number.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_number.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SESS_NUMBER 3" -.TH SSL_CTX_SESS_NUMBER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SESS_NUMBER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_cache_size.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_cache_size.3 index 7b591bc9..b2a33cc1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_cache_size.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_cache_size.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SESS_SET_CACHE_SIZE 3" -.TH SSL_CTX_SESS_SET_CACHE_SIZE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SESS_SET_CACHE_SIZE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_get_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_get_cb.3 index 783e57f6..5d614a61 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_get_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_get_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SESS_SET_GET_CB 3" -.TH SSL_CTX_SESS_SET_GET_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SESS_SET_GET_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_new_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_new_cb.3 new file mode 120000 index 00000000..7bc2a9c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_new_cb.3 @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_remove_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_remove_cb.3 new file mode 120000 index 00000000..7bc2a9c6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_set_remove_cb.3 @@ -0,0 +1 @@ +SSL_CTX_sess_set_get_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_timeouts.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_timeouts.3 new file mode 120000 index 00000000..21eacf67 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sess_timeouts.3 @@ -0,0 +1 @@ +SSL_CTX_sess_number.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sessions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sessions.3 index ea1ef03e..3bff3fd5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sessions.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_sessions.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SESSIONS 3" -.TH SSL_CTX_SESSIONS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SESSIONS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_CA_list.3 index d1495065..7d81a407 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_CA_list.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_CA_list.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET0_CA_LIST 3" -.TH SSL_CTX_SET0_CA_LIST 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET0_CA_LIST 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_chain.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_chain.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_chain_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_chain_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_chain_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_security_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_security_ex_data.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_security_ex_data.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_verify_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_verify_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set0_verify_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_cert_store.3 new file mode 120000 index 00000000..87080a31 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_chain.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_chain.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_chain_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_chain_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_chain_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_client_sigalgs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_client_sigalgs.3 new file mode 120000 index 00000000..883172c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_client_sigalgs.3 @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_client_sigalgs_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_client_sigalgs_list.3 new file mode 120000 index 00000000..883172c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_client_sigalgs_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_curves.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_curves.3 index dff3f482..87388d39 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_curves.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_curves.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET1_CURVES 3" -.TH SSL_CTX_SET1_CURVES 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET1_CURVES 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_curves_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_curves_list.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_curves_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_groups.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_groups.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_groups.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_groups_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_groups_list.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_groups_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_param.3 new file mode 120000 index 00000000..8da5c7eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_param.3 @@ -0,0 +1 @@ +SSL_CTX_get0_param.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_sigalgs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_sigalgs.3 index 55fd3d09..0b3b2818 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_sigalgs.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_sigalgs.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET1_SIGALGS 3" -.TH SSL_CTX_SET1_SIGALGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET1_SIGALGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_sigalgs_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_sigalgs_list.3 new file mode 120000 index 00000000..883172c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_sigalgs_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_verify_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_verify_cert_store.3 index 1c513207..a24095de 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_verify_cert_store.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set1_verify_cert_store.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET1_VERIFY_CERT_STORE 3" -.TH SSL_CTX_SET1_VERIFY_CERT_STORE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET1_VERIFY_CERT_STORE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -SSL_CTX_set0_verify_cert_store, SSL_CTX_set1_verify_cert_store, SSL_CTX_set0_chain_cert_store, SSL_CTX_set1_chain_cert_store, SSL_set0_verify_cert_store, SSL_set1_verify_cert_store, SSL_set0_chain_cert_store, SSL_set1_chain_cert_store \- set certificate verification or chain store +SSL_CTX_set0_verify_cert_store, SSL_CTX_set1_verify_cert_store, SSL_CTX_set0_chain_cert_store, SSL_CTX_set1_chain_cert_store, SSL_set0_verify_cert_store, SSL_set1_verify_cert_store, SSL_set0_chain_cert_store, SSL_set1_chain_cert_store, SSL_CTX_get0_verify_cert_store, SSL_CTX_get0_chain_cert_store, SSL_get0_verify_cert_store, SSL_get0_chain_cert_store \- set certificate verification or chain store .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -149,11 +149,15 @@ SSL_CTX_set0_verify_cert_store, SSL_CTX_set1_verify_cert_store, SSL_CTX_set0_cha \& int SSL_CTX_set1_verify_cert_store(SSL_CTX *ctx, X509_STORE *st); \& int SSL_CTX_set0_chain_cert_store(SSL_CTX *ctx, X509_STORE *st); \& int SSL_CTX_set1_chain_cert_store(SSL_CTX *ctx, X509_STORE *st); +\& int SSL_CTX_get0_verify_cert_store(SSL_CTX *ctx, X509_STORE **st); +\& int SSL_CTX_get0_chain_cert_store(SSL_CTX *ctx, X509_STORE **st); \& \& int SSL_set0_verify_cert_store(SSL *ctx, X509_STORE *st); \& int SSL_set1_verify_cert_store(SSL *ctx, X509_STORE *st); \& int SSL_set0_chain_cert_store(SSL *ctx, X509_STORE *st); \& int SSL_set1_chain_cert_store(SSL *ctx, X509_STORE *st); +\& int SSL_get0_verify_cert_store(SSL *ctx, X509_STORE **st); +\& int SSL_get0_chain_cert_store(SSL *ctx, X509_STORE **st); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" @@ -167,6 +171,11 @@ set the certificate store used for certificate chain building to \fBst\fR. \&\fBSSL_set0_chain_cert_store()\fR and \fBSSL_set1_chain_cert_store()\fR are similar except they apply to \s-1SSL\s0 structure \fBssl\fR. .PP +\&\fBSSL_CTX_get0_verify_chain_store()\fR, \fBSSL_get0_verify_chain_store()\fR, +\&\fBSSL_CTX_get0_chain_cert_store()\fR and \fBSSL_get0_chain_cert_store()\fR retrieve the +objects previously set via the above calls. A pointer to the object (or \s-1NULL\s0 if +no such object has been set) is written to \fB*st\fR. +.PP All these functions are implemented as macros. Those containing a \fB1\fR increment the reference count of the supplied store so it must be freed at some point after the operation. Those containing a \fB0\fR do @@ -218,7 +227,7 @@ All these functions return 1 for success and 0 for failure. These functions were added in OpenSSL 1.0.2. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2013\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2013\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_allow_early_data_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_allow_early_data_cb.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_allow_early_data_cb.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_alpn_protos.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_alpn_protos.3 new file mode 120000 index 00000000..710ee18b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_alpn_protos.3 @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_alpn_select_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_alpn_select_cb.3 index 895d73a3..d4c75b1d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_alpn_select_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_alpn_select_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_ALPN_SELECT_CB 3" -.TH SSL_CTX_SET_ALPN_SELECT_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_ALPN_SELECT_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -247,7 +247,7 @@ provided by the callback. .SH "NOTES" .IX Header "NOTES" The protocol-lists must be in wire-format, which is defined as a vector of -non-empty, 8\-bit length-prefixed, byte strings. The length-prefix byte is not +nonempty, 8\-bit length-prefixed, byte strings. The length-prefix byte is not included in the length. Each string is limited to 255 bytes. A byte-string length of 0 is invalid. A truncated byte-string is invalid. The length of the vector is not in the vector itself, but in a separate variable. @@ -306,7 +306,7 @@ will be included in the ServerHello. \&\fBSSL_CTX_set_tlsext_servername_arg\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_block_padding.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_block_padding.3 new file mode 120000 index 00000000..c7bb1184 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_block_padding.3 @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_cb.3 index 42583adb..7bc1c285 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CERT_CB 3" -.TH SSL_CTX_SET_CERT_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CERT_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_store.3 index 41d9f44a..cebe92fd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_store.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_store.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CERT_STORE 3" -.TH SSL_CTX_SET_CERT_STORE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CERT_STORE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_verify_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_verify_callback.3 index 77386a6a..5c0ee63b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_verify_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cert_verify_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CERT_VERIFY_CALLBACK 3" -.TH SSL_CTX_SET_CERT_VERIFY_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CERT_VERIFY_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cipher_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cipher_list.3 index bb4965c5..abd4beab 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cipher_list.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cipher_list.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CIPHER_LIST 3" -.TH SSL_CTX_SET_CIPHER_LIST 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CIPHER_LIST 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ciphersuites.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ciphersuites.3 new file mode 120000 index 00000000..24071b1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ciphersuites.3 @@ -0,0 +1 @@ +SSL_CTX_set_cipher_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_cert_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_cert_cb.3 index e565dc6d..86292793 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_cert_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_cert_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CLIENT_CERT_CB 3" -.TH SSL_CTX_SET_CLIENT_CERT_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CLIENT_CERT_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_hello_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_hello_cb.3 index 0ed9b053..06af3b10 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_hello_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_client_hello_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CLIENT_HELLO_CB 3" -.TH SSL_CTX_SET_CLIENT_HELLO_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CLIENT_HELLO_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cookie_generate_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cookie_generate_cb.3 new file mode 120000 index 00000000..631f25e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cookie_generate_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_stateless_cookie_generate_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cookie_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cookie_verify_cb.3 new file mode 120000 index 00000000..631f25e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_cookie_verify_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_stateless_cookie_generate_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ct_validation_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ct_validation_callback.3 index 0a0e84e6..bbea08b6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ct_validation_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ct_validation_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CT_VALIDATION_CALLBACK 3" -.TH SSL_CTX_SET_CT_VALIDATION_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CT_VALIDATION_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ctlog_list_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ctlog_list_file.3 index 1944734b..8e146370 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ctlog_list_file.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ctlog_list_file.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_CTLOG_LIST_FILE 3" -.TH SSL_CTX_SET_CTLOG_LIST_FILE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_CTLOG_LIST_FILE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_current_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_current_cert.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_current_cert.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_ctlog_list_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_ctlog_list_file.3 new file mode 120000 index 00000000..a4dee0e1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_ctlog_list_file.3 @@ -0,0 +1 @@ +SSL_CTX_set_ctlog_list_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_passwd_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_passwd_cb.3 index 647e80b1..b37cf167 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_passwd_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_passwd_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_DEFAULT_PASSWD_CB 3" -.TH SSL_CTX_SET_DEFAULT_PASSWD_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_DEFAULT_PASSWD_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_passwd_cb_userdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_passwd_cb_userdata.3 new file mode 120000 index 00000000..ced1a3d1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_passwd_cb_userdata.3 @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_read_buffer_len.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_read_buffer_len.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_read_buffer_len.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_dir.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_dir.3 new file mode 120000 index 00000000..3bd47a92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_dir.3 @@ -0,0 +1 @@ +SSL_CTX_load_verify_locations.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_file.3 new file mode 120000 index 00000000..3bd47a92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_file.3 @@ -0,0 +1 @@ +SSL_CTX_load_verify_locations.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_paths.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_paths.3 new file mode 120000 index 00000000..3bd47a92 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_default_verify_paths.3 @@ -0,0 +1 @@ +SSL_CTX_load_verify_locations.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ex_data.3 index cc82b5b2..8231fa68 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ex_data.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ex_data.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_EX_DATA 3" -.TH SSL_CTX_SET_EX_DATA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_EX_DATA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_generate_session_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_generate_session_id.3 index def1175e..553e5ae4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_generate_session_id.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_generate_session_id.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_GENERATE_SESSION_ID 3" -.TH SSL_CTX_SET_GENERATE_SESSION_ID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_GENERATE_SESSION_ID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -241,8 +241,8 @@ server id given, and will fill the rest with pseudo random bytes: \& /* \& * Prefix the session_id with the required prefix. NB: If our \& * prefix is too long, clip it \- but there will be worse effects -\& * anyway, eg. the server could only possibly create 1 session -\& * ID (ie. the prefix!) so all future session negotiations will +\& * anyway, e.g. the server could only possibly create 1 session +\& * ID (i.e. the prefix!) so all future session negotiations will \& * fail due to conflicts. \& */ \& memcpy(id, session_id_prefix, strlen(session_id_prefix) < *id_len ? @@ -259,7 +259,7 @@ server id given, and will fill the rest with pseudo random bytes: \&\fBssl\fR\|(7), \fBSSL_get_version\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_info_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_info_callback.3 index 7077198e..2e0153b8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_info_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_info_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_INFO_CALLBACK 3" -.TH SSL_CTX_SET_INFO_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_INFO_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -182,7 +182,7 @@ the callback function was called. If \fBret\fR is 0, an error condition occurred If an alert is handled, \s-1SSL_CB_ALERT\s0 is set and \fBret\fR specifies the alert information. .PP -\&\fBwhere\fR is a bitmask made up of the following bits: +\&\fBwhere\fR is a bit mask made up of the following bits: .IP "\s-1SSL_CB_LOOP\s0" 4 .IX Item "SSL_CB_LOOP" Callback has been called to indicate state change or some other significant @@ -192,7 +192,7 @@ per state in some situations. .IX Item "SSL_CB_EXIT" Callback has been called to indicate exit of a handshake function. This will happen after the end of a handshake, but may happen at other times too such as -on error or when \s-1IO\s0 might otherwise block and non-blocking is being used. +on error or when \s-1IO\s0 might otherwise block and nonblocking is being used. .IP "\s-1SSL_CB_READ\s0" 4 .IX Item "SSL_CB_READ" Callback has been called during read operation. @@ -277,7 +277,7 @@ about alerts being handled and error messages to the \fBbio_err\fR \s-1BIO.\s0 \&\fBSSL_alert_type_string\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_keylog_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_keylog_callback.3 index 65e3c423..df61be8a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_keylog_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_keylog_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_KEYLOG_CALLBACK 3" -.TH SSL_CTX_SET_KEYLOG_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_KEYLOG_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_cert_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_cert_list.3 index fa5251df..b6c5001a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_cert_list.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_cert_list.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_MAX_CERT_LIST 3" -.TH SSL_CTX_SET_MAX_CERT_LIST 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_MAX_CERT_LIST 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -175,7 +175,7 @@ received from a faulty or malicious peer, a maximum size for the certificate chain is set. .PP The default value for the maximum certificate chain size is 100kB (30kB -on the 16bit \s-1DOS\s0 platform). This should be sufficient for usual certificate +on the 16\-bit \s-1DOS\s0 platform). This should be sufficient for usual certificate chains (OpenSSL's default maximum chain length is 10, see \&\fBSSL_CTX_set_verify\fR\|(3), and certificates without special extensions have a typical size of 1\-2kB). @@ -205,7 +205,7 @@ set value. \&\fBSSL_CTX_set_verify\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_pipelines.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_pipelines.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_pipelines.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_proto_version.3 new file mode 120000 index 00000000..64444bed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_proto_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_send_fragment.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_send_fragment.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_max_send_fragment.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_min_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_min_proto_version.3 index 47a68acf..962881f9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_min_proto_version.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_min_proto_version.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_MIN_PROTO_VERSION 3" -.TH SSL_CTX_SET_MIN_PROTO_VERSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_MIN_PROTO_VERSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_mode.3 index 734f718e..0b6a4ce6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_mode.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_mode.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_MODE 3" -.TH SSL_CTX_SET_MODE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_MODE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -155,13 +155,13 @@ SSL_CTX_set_mode, SSL_CTX_clear_mode, SSL_set_mode, SSL_clear_mode, SSL_CTX_get_ .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -\&\fBSSL_CTX_set_mode()\fR adds the mode set via bitmask in \fBmode\fR to \fBctx\fR. +\&\fBSSL_CTX_set_mode()\fR adds the mode set via bit mask in \fBmode\fR to \fBctx\fR. Options already set before are not cleared. -\&\fBSSL_CTX_clear_mode()\fR removes the mode set via bitmask in \fBmode\fR from \fBctx\fR. +\&\fBSSL_CTX_clear_mode()\fR removes the mode set via bit mask in \fBmode\fR from \fBctx\fR. .PP -\&\fBSSL_set_mode()\fR adds the mode set via bitmask in \fBmode\fR to \fBssl\fR. +\&\fBSSL_set_mode()\fR adds the mode set via bit mask in \fBmode\fR to \fBssl\fR. Options already set before are not cleared. -\&\fBSSL_clear_mode()\fR removes the mode set via bitmask in \fBmode\fR from \fBssl\fR. +\&\fBSSL_clear_mode()\fR removes the mode set via bit mask in \fBmode\fR from \fBssl\fR. .PP \&\fBSSL_CTX_get_mode()\fR returns the mode set for \fBctx\fR. .PP @@ -182,8 +182,8 @@ the behaviour of \fBwrite()\fR. .IX Item "SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER" Make it possible to retry \fBSSL_write_ex()\fR or \fBSSL_write()\fR with changed buffer location (the buffer contents must stay the same). This is not the default to -avoid the misconception that non-blocking \fBSSL_write()\fR behaves like -non-blocking \fBwrite()\fR. +avoid the misconception that nonblocking \fBSSL_write()\fR behaves like +nonblocking \fBwrite()\fR. .IP "\s-1SSL_MODE_AUTO_RETRY\s0" 4 .IX Item "SSL_MODE_AUTO_RETRY" During normal operations, non-application data records might need to be sent or @@ -195,9 +195,9 @@ If such a non-application data record was processed, the flag \&\fB\s-1SSL_MODE_AUTO_RETRY\s0\fR causes it to try to process the next record instead of returning. .Sp -In a non-blocking environment applications must be prepared to handle +In a nonblocking environment applications must be prepared to handle incomplete read/write operations. -Setting \fB\s-1SSL_MODE_AUTO_RETRY\s0\fR for a non-blocking \fB\s-1BIO\s0\fR will process +Setting \fB\s-1SSL_MODE_AUTO_RETRY\s0\fR for a nonblocking \fB\s-1BIO\s0\fR will process non-application data records until either no more data is available or an application data record has been processed. .Sp @@ -245,10 +245,10 @@ All modes are off by default except for \s-1SSL_MODE_AUTO_RETRY\s0 which is on b default since 1.1.1. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBSSL_CTX_set_mode()\fR and \fBSSL_set_mode()\fR return the new mode bitmask +\&\fBSSL_CTX_set_mode()\fR and \fBSSL_set_mode()\fR return the new mode bit mask after adding \fBmode\fR. .PP -\&\fBSSL_CTX_get_mode()\fR and \fBSSL_get_mode()\fR return the current bitmask. +\&\fBSSL_CTX_get_mode()\fR and \fBSSL_get_mode()\fR return the current bit mask. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBssl\fR\|(7), \fBSSL_read_ex\fR\|(3), \fBSSL_read\fR\|(3), \fBSSL_write_ex\fR\|(3) or @@ -258,7 +258,7 @@ after adding \fBmode\fR. \&\s-1SSL_MODE_ASYNC\s0 was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_msg_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_msg_callback.3 index 5bc174a8..4ebfb275 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_msg_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_msg_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_MSG_CALLBACK 3" -.TH SSL_CTX_SET_MSG_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_MSG_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_msg_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_msg_callback_arg.3 new file mode 120000 index 00000000..ab5e2db6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_msg_callback_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_msg_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_next_proto_select_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_next_proto_select_cb.3 new file mode 120000 index 00000000..710ee18b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_next_proto_select_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_next_protos_advertised_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_next_protos_advertised_cb.3 new file mode 120000 index 00000000..710ee18b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_next_protos_advertised_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_num_tickets.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_num_tickets.3 index 1b7ec7f4..94c8d75c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_num_tickets.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_num_tickets.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_NUM_TICKETS 3" -.TH SSL_CTX_SET_NUM_TICKETS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_NUM_TICKETS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -158,10 +158,10 @@ the client after a full handshake. Set the desired value (which could be 0) in the \fBnum_tickets\fR argument. Typically these functions should be called before the start of the handshake. .PP -The default number of tickets is 2; the default number of tickets sent following -a resumption handshake is 1 but this cannot be changed using these functions. -The number of tickets following a resumption handshake can be reduced to 0 using -custom session ticket callbacks (see \fBSSL_CTX_set_session_ticket_cb\fR\|(3)). +The default number of tickets is 2. Following a resumption the number of tickets +issued will never be more than 1 regardless of the value set via +\&\fBSSL_set_num_tickets()\fR or \fBSSL_CTX_set_num_tickets()\fR. If \fBnum_tickets\fR is set to +0 then no tickets will be issued for either a normal connection or a resumption. .PP Tickets are also issued on receipt of a post-handshake certificate from the client following a request by the server using @@ -188,7 +188,7 @@ that have been previously set. These functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2018\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_options.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_options.3 index ed899f11..1c71d5a2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_options.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_options.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_OPTIONS 3" -.TH SSL_CTX_SET_OPTIONS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_OPTIONS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -158,16 +158,16 @@ SSL_CTX_set_options, SSL_set_options, SSL_CTX_clear_options, SSL_clear_options, .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -\&\fBSSL_CTX_set_options()\fR adds the options set via bitmask in \fBoptions\fR to \fBctx\fR. +\&\fBSSL_CTX_set_options()\fR adds the options set via bit mask in \fBoptions\fR to \fBctx\fR. Options already set before are not cleared! .PP -\&\fBSSL_set_options()\fR adds the options set via bitmask in \fBoptions\fR to \fBssl\fR. +\&\fBSSL_set_options()\fR adds the options set via bit mask in \fBoptions\fR to \fBssl\fR. Options already set before are not cleared! .PP -\&\fBSSL_CTX_clear_options()\fR clears the options set via bitmask in \fBoptions\fR +\&\fBSSL_CTX_clear_options()\fR clears the options set via bit mask in \fBoptions\fR to \fBctx\fR. .PP -\&\fBSSL_clear_options()\fR clears the options set via bitmask in \fBoptions\fR to \fBssl\fR. +\&\fBSSL_clear_options()\fR clears the options set via bit mask in \fBoptions\fR to \fBssl\fR. .PP \&\fBSSL_CTX_get_options()\fR returns the options set for \fBctx\fR. .PP @@ -179,7 +179,7 @@ Note, this is implemented via a macro. .SH "NOTES" .IX Header "NOTES" The behaviour of the \s-1SSL\s0 library can be changed by setting several options. -The options are coded as bitmasks and can be combined by a bitwise \fBor\fR +The options are coded as bit masks and can be combined by a bitwise \fBor\fR operation (|). .PP \&\fBSSL_CTX_set_options()\fR and \fBSSL_set_options()\fR affect the (external) @@ -276,7 +276,7 @@ the session. In this way the server can operate statelessly \- no session information needs to be cached locally. .Sp The TLSv1.3 protocol only supports tickets and does not directly support session -ids. However OpenSSL allows two modes of ticket operation in TLSv1.3: stateful +ids. However, OpenSSL allows two modes of ticket operation in TLSv1.3: stateful and stateless. Stateless tickets work the same way as in TLSv1.2 and below. Stateful tickets mimic the session id behaviour available in TLSv1.2 and below. The session information is cached on the server and the session id is wrapped up @@ -438,13 +438,13 @@ renegotiation between OpenSSL clients and unpatched servers \fBonly\fR, while and renegotiation between OpenSSL and unpatched clients or servers. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBSSL_CTX_set_options()\fR and \fBSSL_set_options()\fR return the new options bitmask +\&\fBSSL_CTX_set_options()\fR and \fBSSL_set_options()\fR return the new options bit mask after adding \fBoptions\fR. .PP -\&\fBSSL_CTX_clear_options()\fR and \fBSSL_clear_options()\fR return the new options bitmask +\&\fBSSL_CTX_clear_options()\fR and \fBSSL_clear_options()\fR return the new options bit mask after clearing \fBoptions\fR. .PP -\&\fBSSL_CTX_get_options()\fR and \fBSSL_get_options()\fR return the current bitmask. +\&\fBSSL_CTX_get_options()\fR and \fBSSL_get_options()\fR return the current bit mask. .PP \&\fBSSL_get_secure_renegotiation_support()\fR returns 1 is the peer supports secure renegotiation and 0 if it does not. @@ -463,7 +463,7 @@ The \fB\s-1SSL_OP_PRIORITIZE_CHACHA\s0\fR and \fB\s-1SSL_OP_NO_RENEGOTIATION\s0\ were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_post_handshake_auth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_post_handshake_auth.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_post_handshake_auth.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_client_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_client_callback.3 index a32c90d3..f74de730 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_client_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_client_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_PSK_CLIENT_CALLBACK 3" -.TH SSL_CTX_SET_PSK_CLIENT_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_PSK_CLIENT_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -246,7 +246,9 @@ and it will use that in preference. If no such callback is present then it will check to see if a callback has been set via \fBSSL_CTX_set_psk_client_callback()\fR or \&\fBSSL_set_psk_client_callback()\fR and use that. In this case the \fBhint\fR value will always be \s-1NULL\s0 and the handshake digest will default to \s-1SHA\-256\s0 for any returned -\&\s-1PSK.\s0 +\&\s-1PSK.\s0 TLSv1.3 early data exchanges are possible in \s-1PSK\s0 connections only with the +\&\fBSSL_psk_use_session_cb_func\fR callback, and are not possible with the +\&\fBSSL_psk_client_cb_func\fR callback. .SH "NOTES" .IX Header "NOTES" Note that parameter \fBhint\fR given to the callback may be \fB\s-1NULL\s0\fR. @@ -255,7 +257,7 @@ A connection established via a TLSv1.3 \s-1PSK\s0 will appear as if session resu has occurred so that \fBSSL_session_reused\fR\|(3) will return true. .PP There are no known security issues with sharing the same \s-1PSK\s0 between TLSv1.2 (or -below) and TLSv1.3. However the \s-1RFC\s0 has this note of caution: +below) and TLSv1.3. However, the \s-1RFC\s0 has this note of caution: .PP \&\*(L"While there is no known way in which the same \s-1PSK\s0 might produce related output in both versions, only limited analysis has been done. Implementations can @@ -284,7 +286,7 @@ failure. In the event of failure the connection setup fails. were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_find_session_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_find_session_callback.3 new file mode 120000 index 00000000..7eb7f071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_find_session_callback.3 @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_server_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_server_callback.3 new file mode 120000 index 00000000..7eb7f071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_server_callback.3 @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_use_session_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_use_session_callback.3 new file mode 120000 index 00000000..9a1d58bb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_psk_use_session_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_quiet_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_quiet_shutdown.3 index 4421cb79..3230cb90 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_quiet_shutdown.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_quiet_shutdown.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_QUIET_SHUTDOWN 3" -.TH SSL_CTX_SET_QUIET_SHUTDOWN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_QUIET_SHUTDOWN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_read_ahead.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_read_ahead.3 index 50c19e47..23006e54 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_read_ahead.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_read_ahead.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_READ_AHEAD 3" -.TH SSL_CTX_SET_READ_AHEAD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_READ_AHEAD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -155,7 +155,7 @@ SSL_CTX_set_read_ahead, SSL_CTX_get_read_ahead, SSL_set_read_ahead, SSL_get_read .SH "DESCRIPTION" .IX Header "DESCRIPTION" \&\fBSSL_CTX_set_read_ahead()\fR and \fBSSL_set_read_ahead()\fR set whether we should read as -many input bytes as possible (for non-blocking reads) or not. For example if +many input bytes as possible (for nonblocking reads) or not. For example if \&\fBx\fR bytes are currently required by OpenSSL, but \fBy\fR bytes are available from the underlying \s-1BIO\s0 (where \fBy\fR > \fBx\fR), then OpenSSL will read all \fBy\fR bytes into its buffer (providing that the buffer is large enough) if reading ahead is @@ -194,7 +194,7 @@ and non zero otherwise. \&\fBssl\fR\|(7), \fBSSL_pending\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_record_padding_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_record_padding_callback.3 index e8276205..9fdffa42 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_record_padding_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_record_padding_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_RECORD_PADDING_CALLBACK 3" -.TH SSL_CTX_SET_RECORD_PADDING_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_RECORD_PADDING_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_record_padding_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_record_padding_callback_arg.3 new file mode 120000 index 00000000..c7bb1184 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_record_padding_callback_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_recv_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_recv_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_recv_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_security_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_security_callback.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_security_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_security_level.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_security_level.3 index 10224d96..4be7062f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_security_level.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_security_level.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_SECURITY_LEVEL 3" -.TH SSL_CTX_SET_SECURITY_LEVEL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_SECURITY_LEVEL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -238,12 +238,6 @@ shorter than 15360 bits and \s-1ECC\s0 keys shorter than 512 bits are prohibited \&\fIDocumentation to be provided.\fR .SH "NOTES" .IX Header "NOTES" -\&\fB\s-1WARNING\s0\fR at this time setting the security level higher than 1 for -general internet use is likely to cause \fBconsiderable\fR interoperability -issues and is not recommended. This is because the \fB\s-1SHA1\s0\fR algorithm -is very widely used in certificates and will be rejected at levels -higher than 1 because it only offers 80 bits of security. -.PP The default security level can be configured when OpenSSL is compiled by setting \fB\-DOPENSSL_TLS_SECURITY_LEVEL=level\fR. If not set then 1 is used. .PP @@ -301,7 +295,7 @@ data pointer or \s-1NULL\s0 if the ex data is not set. These functions were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2014\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2014\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_cache_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_cache_mode.3 index d5a42665..cae766b9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_cache_mode.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_cache_mode.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_SESSION_CACHE_MODE 3" -.TH SSL_CTX_SET_SESSION_CACHE_MODE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_SESSION_CACHE_MODE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -223,7 +223,7 @@ session caching (callback) that is configured for the \s-1SSL_CTX.\s0 This flag prevent sessions being stored in the internal cache (though the application can add them manually using \fBSSL_CTX_add_session\fR\|(3)). Note: in any \s-1SSL/TLS\s0 servers where external caching is configured, any successful -session lookups in the external cache (ie. for session-resume requests) would +session lookups in the external cache (i.e. for session-resume requests) would normally be copied into the local cache before processing continues \- this flag prevents these additions to the internal cache as well. .IP "\s-1SSL_SESS_CACHE_NO_INTERNAL\s0" 4 @@ -250,7 +250,7 @@ The default mode is \s-1SSL_SESS_CACHE_SERVER.\s0 \&\fBSSL_CTX_flush_sessions\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_id_context.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_id_context.3 index 79e5b307..3b679e8f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_id_context.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_id_context.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_SESSION_ID_CONTEXT 3" -.TH SSL_CTX_SET_SESSION_ID_CONTEXT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_SESSION_ID_CONTEXT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -162,7 +162,7 @@ SSL_CTX_set_session_id_context, SSL_set_session_id_context \- set context within Sessions are generated within a certain context. When exporting/importing sessions with \fBi2d_SSL_SESSION\fR/\fBd2i_SSL_SESSION\fR it would be possible, to re-import a session generated from another context (e.g. another -application), which might lead to malfunctions. Therefore each application +application), which might lead to malfunctions. Therefore, each application must set its own session id context \fBsid_ctx\fR which is used to distinguish the contexts and is stored in exported sessions. The \fBsid_ctx\fR can be any kind of binary data with a given length, it is therefore possible @@ -207,7 +207,7 @@ The operation succeeded. \&\fBssl\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_ticket_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_ticket_cb.3 index bc3f1e3b..bfc84b79 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_ticket_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_session_ticket_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_SESSION_TICKET_CB 3" -.TH SSL_CTX_SET_SESSION_TICKET_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_SESSION_TICKET_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -228,7 +228,7 @@ The return value can be any of these values: .IX Item "SSL_TICKET_RETURN_ABORT" The handshake should be aborted, either because of an error or because of some policy. Note that in TLSv1.3 a client may send more than one ticket in a single -handshake. Therefore just because one ticket is unacceptable it does not mean +handshake. Therefore, just because one ticket is unacceptable it does not mean that all of them are. For this reason this option should be used with caution. .IP "\s-1SSL_TICKET_RETURN_IGNORE\s0" 4 .IX Item "SSL_TICKET_RETURN_IGNORE" @@ -289,11 +289,11 @@ The \fBdec_cb\fR callback must return a value as described in \s-1NOTES\s0 above \&\fBSSL_get_session\fR\|(3) .SH "HISTORY" .IX Header "HISTORY" -The \fBSSL_CTX_set_session_ticket_cb()\fR, \fBSSSL_SESSION_set1_ticket_appdata()\fR +The \fBSSL_CTX_set_session_ticket_cb()\fR, \fBSSL_SESSION_set1_ticket_appdata()\fR and \fBSSL_SESSION_get_ticket_appdata()\fR functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2017\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_split_send_fragment.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_split_send_fragment.3 index ba85a7db..c675388d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_split_send_fragment.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_split_send_fragment.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_SPLIT_SEND_FRAGMENT 3" -.TH SSL_CTX_SET_SPLIT_SEND_FRAGMENT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_SPLIT_SEND_FRAGMENT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -172,7 +172,7 @@ capability is known as \*(L"pipelining\*(R" within OpenSSL. .PP In order to benefit from the pipelining capability. You need to have an engine that provides ciphers that support this. The OpenSSL \*(L"dasync\*(R" engine provides -\&\s-1AES128\-SHA\s0 based ciphers that have this capability. However these are for +\&\s-1AES128\-SHA\s0 based ciphers that have this capability. However, these are for development and test purposes only. .PP \&\fBSSL_CTX_set_max_send_fragment()\fR and \fBSSL_set_max_send_fragment()\fR set the @@ -295,7 +295,7 @@ The \fBSSL_CTX_set_tlsext_max_fragment_length()\fR, \fBSSL_set_tlsext_max_fragme and \fBSSL_SESSION_get_max_fragment_length()\fR functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ssl_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ssl_version.3 index 39712589..a8430751 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ssl_version.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_ssl_version.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_SSL_VERSION 3" -.TH SSL_CTX_SET_SSL_VERSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_SSL_VERSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_stateless_cookie_generate_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_stateless_cookie_generate_cb.3 index 46a3d973..cc688b3f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_stateless_cookie_generate_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_stateless_cookie_generate_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_STATELESS_COOKIE_GENERATE_CB 3" -.TH SSL_CTX_SET_STATELESS_COOKIE_GENERATE_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_STATELESS_COOKIE_GENERATE_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_stateless_cookie_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_stateless_cookie_verify_cb.3 new file mode 120000 index 00000000..631f25e5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_stateless_cookie_verify_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_stateless_cookie_generate_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_timeout.3 index 0fc580c9..ebae36b7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_timeout.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_timeout.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_TIMEOUT 3" -.TH SSL_CTX_SET_TIMEOUT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_TIMEOUT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -177,6 +177,16 @@ The default value for session timeout is decided on a per protocol basis, see \fBSSL_get_default_timeout\fR\|(3). All currently supported protocols have the same default timeout value of 300 seconds. +.PP +This timeout value is used as the ticket lifetime hint for stateless session +tickets. It is also used as the timeout value within the ticket itself. +.PP +For TLSv1.3, \s-1RFC8446\s0 limits transmission of this value to 1 week (604800 +seconds). +.PP +For TLSv1.2, tickets generated during an initial handshake use the value +as specified. Tickets generated during a resumed handshake have a value +of 0 for the ticket lifetime hint. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBSSL_CTX_set_timeout()\fR returns the previously set timeout value. @@ -191,7 +201,7 @@ of 300 seconds. \&\fBSSL_get_default_timeout\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_max_fragment_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_max_fragment_length.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_max_fragment_length.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_servername_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_servername_arg.3 new file mode 120000 index 00000000..17429fd0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_servername_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_servername_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_servername_callback.3 index da10a437..fb1060e5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_servername_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_servername_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_TLSEXT_SERVERNAME_CALLBACK 3" -.TH SSL_CTX_SET_TLSEXT_SERVERNAME_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_TLSEXT_SERVERNAME_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -181,7 +181,7 @@ value is initialised to \s-1SSL_AD_UNRECOGNIZED_NAME.\s0 .IP "\s-1SSL_TLSEXT_ERR_ALERT_WARNING\s0" 4 .IX Item "SSL_TLSEXT_ERR_ALERT_WARNING" If this value is returned then the servername is not accepted by the server. -However the handshake will continue and send a warning alert instead. The value +However, the handshake will continue and send a warning alert instead. The value of the alert should be stored in the location pointed to by the \fBal\fR parameter as for \s-1SSL_TLSEXT_ERR_ALERT_FATAL\s0 above. Note that TLSv1.3 does not support warning alerts, so if TLSv1.3 has been negotiated then this return value is @@ -210,7 +210,7 @@ it will return that servername. Otherwise it returns \s-1NULL.\s0 .IP "On the client, during or after the handshake and a TLSv1.2 (or below) resumption occurred" 4 .IX Item "On the client, during or after the handshake and a TLSv1.2 (or below) resumption occurred" -If the session from the orignal handshake had a servername accepted by the +If the session from the original handshake had a servername accepted by the server then it will return that servername. .Sp Otherwise it returns the servername set via \fBSSL_set_tlsext_host_name()\fR or \s-1NULL\s0 @@ -266,12 +266,12 @@ corner cases. This has been fixed from OpenSSL 1.1.1e. .PP Prior to 1.1.1e, when the client requested a servername in an initial TLSv1.2 handshake, the server accepted it, and then the client successfully resumed but -set a different explict servername in the second handshake then when called by +set a different explicit servername in the second handshake then when called by the client it returned the servername from the second handshake. This has now been changed to return the servername requested in the original handshake. .PP Also prior to 1.1.1e, if the client sent a servername in the first handshake but -the server did not accept it, and then a second handshake occured where TLSv1.2 +the server did not accept it, and then a second handshake occurred where TLSv1.2 resumption was successful then when called by the server it returned the servername requested in the original handshake. This has now been changed to \&\s-1NULL.\s0 diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_arg.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_cb.3 index 8b06e4e1..ace73993 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_TLSEXT_STATUS_CB 3" -.TH SSL_CTX_SET_TLSEXT_STATUS_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_TLSEXT_STATUS_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_type.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_status_type.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_ticket_key_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_ticket_key_cb.3 index 6b0f5f3f..2ed01a3e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_ticket_key_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_ticket_key_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_TLSEXT_TICKET_KEY_CB 3" -.TH SSL_CTX_SET_TLSEXT_TICKET_KEY_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_TLSEXT_TICKET_KEY_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -249,7 +249,7 @@ the overall security is only 128 bits because breaking the ticket key will enable an attacker to obtain the session keys. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -returns 0 to indicate the callback function was set. +Returns 1 to indicate the callback function was set and 0 otherwise. .SH "EXAMPLES" .IX Header "EXAMPLES" Reference Implementation: @@ -262,6 +262,8 @@ Reference Implementation: \& unsigned char *iv, EVP_CIPHER_CTX *ctx, \& HMAC_CTX *hctx, int enc) \& { +\& your_type_t *key; /* something that you need to implement */ +\& \& if (enc) { /* create new session */ \& if (RAND_bytes(iv, EVP_MAX_IV_LENGTH) <= 0) \& return \-1; /* insufficient random */ @@ -280,21 +282,22 @@ Reference Implementation: \& } \& memcpy(key_name, key\->name, 16); \& -\& EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key\->aes_key, iv); -\& HMAC_Init_ex(&hctx, key\->hmac_key, 16, EVP_sha256(), NULL); +\& EVP_EncryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, key\->aes_key, iv); +\& HMAC_Init_ex(&hctx, key\->hmac_key, 32, EVP_sha256(), NULL); \& \& return 1; \& \& } else { /* retrieve session */ -\& key = findkey(name); +\& time_t t = time(NULL); +\& key = findkey(key_name); /* something that you need to implement */ \& -\& if (key == NULL || key\->expire < now()) +\& if (key == NULL || key\->expire < t) \& return 0; \& -\& HMAC_Init_ex(&hctx, key\->hmac_key, 16, EVP_sha256(), NULL); -\& EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key\->aes_key, iv); +\& HMAC_Init_ex(&hctx, key\->hmac_key, 32, EVP_sha256(), NULL); +\& EVP_DecryptInit_ex(&ctx, EVP_aes_256_cbc(), NULL, key\->aes_key, iv); \& -\& if (key\->expire < now() \- RENEW_TIME) { +\& if (key\->expire < t \- RENEW_TIME) { /* RENEW_TIME: implement */ \& /* \& * return 2 \- This session will get a new ticket even though the \& * current one is still valid. @@ -315,7 +318,7 @@ Reference Implementation: \&\fBSSL_CTX_set_session_id_context\fR\|(3), .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2014\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2014\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_use_srtp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_use_srtp.3 index eb4ee508..85d9815c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_use_srtp.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tlsext_use_srtp.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_TLSEXT_USE_SRTP 3" -.TH SSL_CTX_SET_TLSEXT_USE_SRTP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_TLSEXT_USE_SRTP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tmp_dh.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tmp_dh.3 new file mode 120000 index 00000000..cb6c5eaa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tmp_dh.3 @@ -0,0 +1 @@ +SSL_CTX_set_tmp_dh_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tmp_dh_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tmp_dh_callback.3 index 7ae149d8..b8b3690e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tmp_dh_callback.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_tmp_dh_callback.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_TMP_DH_CALLBACK 3" -.TH SSL_CTX_SET_TMP_DH_CALLBACK 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_TMP_DH_CALLBACK 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_verify.3 index f4445077..18b0c706 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_verify.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_verify.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_SET_VERIFY 3" -.TH SSL_CTX_SET_VERIFY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_SET_VERIFY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_verify_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_verify_depth.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_set_verify_depth.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_up_ref.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_up_ref.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey_ASN1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey_ASN1.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey_ASN1.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_PrivateKey_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey_ASN1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey_ASN1.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey_ASN1.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_RSAPrivateKey_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_cert_and_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_cert_and_key.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_cert_and_key.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate.3 index 3fbc6bd3..83c6b03b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_USE_CERTIFICATE 3" -.TH SSL_CTX_USE_CERTIFICATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_USE_CERTIFICATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_ASN1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_ASN1.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_ASN1.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_chain_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_chain_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_chain_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_certificate_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_psk_identity_hint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_psk_identity_hint.3 index 213311c9..597b6440 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_psk_identity_hint.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_psk_identity_hint.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_USE_PSK_IDENTITY_HINT 3" -.TH SSL_CTX_USE_PSK_IDENTITY_HINT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_USE_PSK_IDENTITY_HINT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -212,7 +212,9 @@ via \fBSSL_CTX_set_psk_find_session_callback()\fR or \fBSSL_set_psk_find_session and it will use that in preference. If no such callback is present then it will check to see if a callback has been set via \fBSSL_CTX_set_psk_server_callback()\fR or \&\fBSSL_set_psk_server_callback()\fR and use that. In this case the handshake digest -will default to \s-1SHA\-256\s0 for any returned \s-1PSK.\s0 +will default to \s-1SHA\-256\s0 for any returned \s-1PSK.\s0 TLSv1.3 early data exchanges are +possible in \s-1PSK\s0 connections only with the \fBSSL_psk_find_session_cb_func\fR +callback, and are not possible with the \fBSSL_psk_server_cb_func\fR callback. .SH "NOTES" .IX Header "NOTES" A connection established via a TLSv1.3 \s-1PSK\s0 will appear as if session resumption @@ -245,7 +247,7 @@ failure. In the event of failure the connection setup fails. .SH "NOTES" .IX Header "NOTES" There are no known security issues with sharing the same \s-1PSK\s0 between TLSv1.2 (or -below) and TLSv1.3. However the \s-1RFC\s0 has this note of caution: +below) and TLSv1.3. However, the \s-1RFC\s0 has this note of caution: .PP \&\*(L"While there is no known way in which the same \s-1PSK\s0 might produce related output in both versions, only limited analysis has been done. Implementations can @@ -261,7 +263,7 @@ ensure safety from cross-protocol related output by not reusing PSKs between were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2006\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2006\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo.3 index c8b3d327..da1ce168 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CTX_USE_SERVERINFO 3" -.TH SSL_CTX_USE_SERVERINFO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CTX_USE_SERVERINFO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo_ex.3 new file mode 120000 index 00000000..596981b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo_ex.3 @@ -0,0 +1 @@ +SSL_CTX_use_serverinfo.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo_file.3 new file mode 120000 index 00000000..596981b5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_CTX_use_serverinfo_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_serverinfo.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_dup.3 new file mode 120000 index 00000000..8b370aa0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_dup.3 @@ -0,0 +1 @@ +SSL_SESSION_free.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_free.3 index 517f97de..7f0e0470 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_free.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_free.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_FREE 3" -.TH SSL_SESSION_FREE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_FREE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_alpn_selected.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_alpn_selected.3 new file mode 120000 index 00000000..c50ad82a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_alpn_selected.3 @@ -0,0 +1 @@ +SSL_SESSION_get0_hostname.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_cipher.3 index e71a3690..a4275661 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_cipher.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_cipher.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET0_CIPHER 3" -.TH SSL_SESSION_GET0_CIPHER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET0_CIPHER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_hostname.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_hostname.3 index 1f5c4755..ca9c4483 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_hostname.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_hostname.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET0_HOSTNAME 3" -.TH SSL_SESSION_GET0_HOSTNAME 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET0_HOSTNAME 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_id_context.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_id_context.3 index 415113f2..1a28d89c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_id_context.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_id_context.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET0_ID_CONTEXT 3" -.TH SSL_SESSION_GET0_ID_CONTEXT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET0_ID_CONTEXT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_peer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_peer.3 index 55155fc3..ae382b6b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_peer.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_peer.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET0_PEER 3" -.TH SSL_SESSION_GET0_PEER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET0_PEER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_ticket.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_ticket.3 new file mode 120000 index 00000000..cfa099bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_ticket.3 @@ -0,0 +1 @@ +SSL_SESSION_has_ticket.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_ticket_appdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_ticket_appdata.3 new file mode 120000 index 00000000..07a39225 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get0_ticket_appdata.3 @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_compress_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_compress_id.3 index 1bcdb163..d0cfab53 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_compress_id.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_compress_id.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET_COMPRESS_ID 3" -.TH SSL_SESSION_GET_COMPRESS_ID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET_COMPRESS_ID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_ex_data.3 index 039a60b1..48192c3c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_ex_data.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_ex_data.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET_EX_DATA 3" -.TH SSL_SESSION_GET_EX_DATA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET_EX_DATA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_id.3 new file mode 120000 index 00000000..ec1ac3bd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_id.3 @@ -0,0 +1 @@ +SSL_SESSION_set1_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_master_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_master_key.3 new file mode 120000 index 00000000..d315e3c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_master_key.3 @@ -0,0 +1 @@ +SSL_get_client_random.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_max_fragment_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_max_fragment_length.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_max_fragment_length.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_protocol_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_protocol_version.3 index aa5f8996..aeef1a48 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_protocol_version.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_protocol_version.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET_PROTOCOL_VERSION 3" -.TH SSL_SESSION_GET_PROTOCOL_VERSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET_PROTOCOL_VERSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_ticket_lifetime_hint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_ticket_lifetime_hint.3 new file mode 120000 index 00000000..cfa099bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_ticket_lifetime_hint.3 @@ -0,0 +1 @@ +SSL_SESSION_has_ticket.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_time.3 index daf0671c..bdba1ef5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_time.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_time.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_GET_TIME 3" -.TH SSL_SESSION_GET_TIME 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_GET_TIME 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_timeout.3 new file mode 120000 index 00000000..713bceab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_get_timeout.3 @@ -0,0 +1 @@ +SSL_SESSION_get_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_has_ticket.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_has_ticket.3 index 67bac9d2..f84aa095 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_has_ticket.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_has_ticket.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_HAS_TICKET 3" -.TH SSL_SESSION_HAS_TICKET 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_HAS_TICKET 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_is_resumable.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_is_resumable.3 index 5fba8af1..b97bfd30 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_is_resumable.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_is_resumable.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_IS_RESUMABLE 3" -.TH SSL_SESSION_IS_RESUMABLE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_IS_RESUMABLE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_new.3 new file mode 120000 index 00000000..8b370aa0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_new.3 @@ -0,0 +1 @@ +SSL_SESSION_free.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print.3 index ca5568fb..a984df8a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_PRINT 3" -.TH SSL_SESSION_PRINT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_PRINT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print_fp.3 new file mode 120000 index 00000000..efa824ca --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print_fp.3 @@ -0,0 +1 @@ +SSL_SESSION_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print_keylog.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print_keylog.3 new file mode 120000 index 00000000..efa824ca --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_print_keylog.3 @@ -0,0 +1 @@ +SSL_SESSION_print.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_alpn_selected.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_alpn_selected.3 new file mode 120000 index 00000000..c50ad82a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_alpn_selected.3 @@ -0,0 +1 @@ +SSL_SESSION_get0_hostname.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_hostname.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_hostname.3 new file mode 120000 index 00000000..c50ad82a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_hostname.3 @@ -0,0 +1 @@ +SSL_SESSION_get0_hostname.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_id.3 index 1cc5d613..3acb0db3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_id.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_id.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_SET1_ID 3" -.TH SSL_SESSION_SET1_ID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_SET1_ID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_id_context.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_id_context.3 new file mode 120000 index 00000000..cdd35130 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_id_context.3 @@ -0,0 +1 @@ +SSL_SESSION_get0_id_context.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_master_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_master_key.3 new file mode 120000 index 00000000..d315e3c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_master_key.3 @@ -0,0 +1 @@ +SSL_get_client_random.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_ticket_appdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_ticket_appdata.3 new file mode 120000 index 00000000..07a39225 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set1_ticket_appdata.3 @@ -0,0 +1 @@ +SSL_CTX_set_session_ticket_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_cipher.3 new file mode 120000 index 00000000..786c8e0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_cipher.3 @@ -0,0 +1 @@ +SSL_SESSION_get0_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_ex_data.3 new file mode 120000 index 00000000..4fad4fee --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_ex_data.3 @@ -0,0 +1 @@ +SSL_SESSION_get_ex_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_protocol_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_protocol_version.3 new file mode 120000 index 00000000..319faa80 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_protocol_version.3 @@ -0,0 +1 @@ +SSL_SESSION_get_protocol_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_time.3 new file mode 120000 index 00000000..713bceab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_time.3 @@ -0,0 +1 @@ +SSL_SESSION_get_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_timeout.3 new file mode 120000 index 00000000..713bceab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_set_timeout.3 @@ -0,0 +1 @@ +SSL_SESSION_get_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_up_ref.3 new file mode 120000 index 00000000..8b370aa0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_SESSION_up_ref.3 @@ -0,0 +1 @@ +SSL_SESSION_free.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_accept.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_accept.3 index 1ae4a174..715cb575 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_accept.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_accept.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_ACCEPT 3" -.TH SSL_ACCEPT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_ACCEPT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -159,14 +159,14 @@ The behaviour of \fBSSL_accept()\fR depends on the underlying \s-1BIO.\s0 If the underlying \s-1BIO\s0 is \fBblocking\fR, \fBSSL_accept()\fR will only return once the handshake has been finished or an error occurred. .PP -If the underlying \s-1BIO\s0 is \fBnon-blocking\fR, \fBSSL_accept()\fR will also return +If the underlying \s-1BIO\s0 is \fBnonblocking\fR, \fBSSL_accept()\fR will also return when the underlying \s-1BIO\s0 could not satisfy the needs of \fBSSL_accept()\fR to continue the handshake, indicating the problem by the return value \-1. In this case a call to \fBSSL_get_error()\fR with the return value of \fBSSL_accept()\fR will yield \fB\s-1SSL_ERROR_WANT_READ\s0\fR or \&\fB\s-1SSL_ERROR_WANT_WRITE\s0\fR. The calling process then must repeat the call after taking appropriate action to satisfy the needs of \fBSSL_accept()\fR. -The action depends on the underlying \s-1BIO.\s0 When using a non-blocking socket, +The action depends on the underlying \s-1BIO.\s0 When using a nonblocking socket, nothing is to be done, but \fBselect()\fR can be used to check for the required condition. When using a buffering \s-1BIO,\s0 like a \s-1BIO\s0 pair, data must be written into or retrieved out of the \s-1BIO\s0 before being able to continue. @@ -186,7 +186,7 @@ established. The \s-1TLS/SSL\s0 handshake was not successful because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation -for non-blocking BIOs. Call \fBSSL_get_error()\fR with the return value \fBret\fR +for nonblocking BIOs. Call \fBSSL_get_error()\fR with the return value \fBret\fR to find out the reason. .SH "SEE ALSO" .IX Header "SEE ALSO" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add0_chain_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add0_chain_cert.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add0_chain_cert.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_chain_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_chain_cert.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_chain_cert.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_host.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_host.3 new file mode 120000 index 00000000..85e5d437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_host.3 @@ -0,0 +1 @@ +SSL_set1_host.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_to_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_to_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add1_to_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_client_CA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_client_CA.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_client_CA.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_dir_cert_subjects_to_stack.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_dir_cert_subjects_to_stack.3 new file mode 120000 index 00000000..1c113f04 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_dir_cert_subjects_to_stack.3 @@ -0,0 +1 @@ +SSL_load_client_CA_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_file_cert_subjects_to_stack.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_file_cert_subjects_to_stack.3 new file mode 120000 index 00000000..1c113f04 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_add_file_cert_subjects_to_stack.3 @@ -0,0 +1 @@ +SSL_load_client_CA_file.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_desc_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_desc_string.3 new file mode 120000 index 00000000..36f61452 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_desc_string.3 @@ -0,0 +1 @@ +SSL_alert_type_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_desc_string_long.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_desc_string_long.3 new file mode 120000 index 00000000..36f61452 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_desc_string_long.3 @@ -0,0 +1 @@ +SSL_alert_type_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_type_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_type_string.3 index b07c7814..1cf58d48 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_type_string.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_type_string.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_ALERT_TYPE_STRING 3" -.TH SSL_ALERT_TYPE_STRING 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_ALERT_TYPE_STRING 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_type_string_long.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_type_string_long.3 new file mode 120000 index 00000000..36f61452 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alert_type_string_long.3 @@ -0,0 +1 @@ +SSL_alert_type_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alloc_buffers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alloc_buffers.3 index 5d8b6383..d54b38e2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alloc_buffers.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_alloc_buffers.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_ALLOC_BUFFERS 3" -.TH SSL_ALLOC_BUFFERS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_ALLOC_BUFFERS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -159,7 +159,7 @@ control when buffers are freed and allocated. .PP After freeing the buffers, the buffers are automatically reallocated upon a new read or write. The \fBSSL_alloc_buffers()\fR does not need to be called, but -can be used to make sure the buffers are pre-allocated. This can be used to +can be used to make sure the buffers are preallocated. This can be used to avoid allocation during data processing or with \fBCRYPTO_set_mem_functions()\fR to control where and how buffers are allocated. .SH "RETURN VALUES" @@ -185,7 +185,7 @@ This value is also returned if the buffers had been allocated before calling CRYPTO_set_mem_functions .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_allow_early_data_cb_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_allow_early_data_cb_fn.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_allow_early_data_cb_fn.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_build_cert_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_build_cert_chain.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_build_cert_chain.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_bytes_to_cipher_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_bytes_to_cipher_list.3 new file mode 120000 index 00000000..a5c5b490 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_bytes_to_cipher_list.3 @@ -0,0 +1 @@ +SSL_get_ciphers.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_callback_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_callback_ctrl.3 new file mode 120000 index 00000000..cd48d63f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_callback_ctrl.3 @@ -0,0 +1 @@ +SSL_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_check_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_check_chain.3 index 2fd273a6..c7de6afc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_check_chain.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_check_chain.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CHECK_CHAIN 3" -.TH SSL_CHECK_CHAIN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CHECK_CHAIN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_check_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_check_private_key.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_check_private_key.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear.3 index 7a619ba3..e309a600 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CLEAR 3" -.TH SSL_CLEAR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CLEAR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_chain_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_chain_certs.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_chain_certs.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_mode.3 new file mode 120000 index 00000000..295da90e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_mode.3 @@ -0,0 +1 @@ +SSL_CTX_set_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_options.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_options.3 new file mode 120000 index 00000000..ae626a40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_clear_options.3 @@ -0,0 +1 @@ +SSL_CTX_set_options.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_cb_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_cb_fn.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_cb_fn.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_ciphers.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_ciphers.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_compression_methods.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_compression_methods.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_compression_methods.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_ext.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_ext.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_legacy_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_legacy_version.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_legacy_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_random.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_random.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_random.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_session_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_session_id.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get0_session_id.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get1_extensions_present.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get1_extensions_present.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_get1_extensions_present.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_isv2.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_isv2.3 new file mode 120000 index 00000000..723d3d0d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_hello_isv2.3 @@ -0,0 +1 @@ +SSL_CTX_set_client_hello_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_version.3 new file mode 120000 index 00000000..2da60dae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_client_version.3 @@ -0,0 +1 @@ +SSL_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_config.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_config.3 new file mode 120000 index 00000000..069c2a7b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_config.3 @@ -0,0 +1 @@ +SSL_CTX_config.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_connect.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_connect.3 index 43684f8b..671f9ad3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_connect.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_connect.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_CONNECT 3" -.TH SSL_CONNECT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_CONNECT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -159,14 +159,14 @@ The behaviour of \fBSSL_connect()\fR depends on the underlying \s-1BIO.\s0 If the underlying \s-1BIO\s0 is \fBblocking\fR, \fBSSL_connect()\fR will only return once the handshake has been finished or an error occurred. .PP -If the underlying \s-1BIO\s0 is \fBnon-blocking\fR, \fBSSL_connect()\fR will also return +If the underlying \s-1BIO\s0 is \fBnonblocking\fR, \fBSSL_connect()\fR will also return when the underlying \s-1BIO\s0 could not satisfy the needs of \fBSSL_connect()\fR to continue the handshake, indicating the problem by the return value \-1. In this case a call to \fBSSL_get_error()\fR with the return value of \fBSSL_connect()\fR will yield \fB\s-1SSL_ERROR_WANT_READ\s0\fR or \&\fB\s-1SSL_ERROR_WANT_WRITE\s0\fR. The calling process then must repeat the call after taking appropriate action to satisfy the needs of \fBSSL_connect()\fR. -The action depends on the underlying \s-1BIO.\s0 When using a non-blocking socket, +The action depends on the underlying \s-1BIO.\s0 When using a nonblocking socket, nothing is to be done, but \fBselect()\fR can be used to check for the required condition. When using a buffering \s-1BIO,\s0 like a \s-1BIO\s0 pair, data must be written into or retrieved out of the \s-1BIO\s0 before being able to continue. @@ -201,7 +201,7 @@ established. The \s-1TLS/SSL\s0 handshake was not successful, because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation -for non-blocking BIOs. Call \fBSSL_get_error()\fR with the return value \fBret\fR +for nonblocking BIOs. Call \fBSSL_get_error()\fR with the return value \fBret\fR to find out the reason. .SH "SEE ALSO" .IX Header "SEE ALSO" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_ct_is_enabled.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_ct_is_enabled.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_ct_is_enabled.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_ctrl.3 new file mode 120000 index 00000000..cd48d63f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_ctrl.3 @@ -0,0 +1 @@ +SSL_CTX_ctrl.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_clear_flags.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_clear_flags.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_enable.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_enable.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_enable.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_set_flags.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_set_flags.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_tlsa_add.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_tlsa_add.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dane_tlsa_add.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_disable_ct.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_disable_ct.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_disable_ct.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_do_handshake.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_do_handshake.3 index d3e222dc..092e747f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_do_handshake.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_do_handshake.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_DO_HANDSHAKE 3" -.TH SSL_DO_HANDSHAKE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_DO_HANDSHAKE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -161,13 +161,13 @@ The behaviour of \fBSSL_do_handshake()\fR depends on the underlying \s-1BIO.\s0 If the underlying \s-1BIO\s0 is \fBblocking\fR, \fBSSL_do_handshake()\fR will only return once the handshake has been finished or an error occurred. .PP -If the underlying \s-1BIO\s0 is \fBnon-blocking\fR, \fBSSL_do_handshake()\fR will also return +If the underlying \s-1BIO\s0 is \fBnonblocking\fR, \fBSSL_do_handshake()\fR will also return when the underlying \s-1BIO\s0 could not satisfy the needs of \fBSSL_do_handshake()\fR to continue the handshake. In this case a call to \fBSSL_get_error()\fR with the return value of \fBSSL_do_handshake()\fR will yield \fB\s-1SSL_ERROR_WANT_READ\s0\fR or \&\fB\s-1SSL_ERROR_WANT_WRITE\s0\fR. The calling process then must repeat the call after taking appropriate action to satisfy the needs of \fBSSL_do_handshake()\fR. -The action depends on the underlying \s-1BIO.\s0 When using a non-blocking socket, +The action depends on the underlying \s-1BIO.\s0 When using a nonblocking socket, nothing is to be done, but \fBselect()\fR can be used to check for the required condition. When using a buffering \s-1BIO,\s0 like a \s-1BIO\s0 pair, data must be written into or retrieved out of the \s-1BIO\s0 before being able to continue. @@ -187,7 +187,7 @@ established. The \s-1TLS/SSL\s0 handshake was not successful because a fatal error occurred either at the protocol level or a connection failure occurred. The shutdown was not clean. It can also occur if action is needed to continue the operation -for non-blocking BIOs. Call \fBSSL_get_error()\fR with the return value \fBret\fR +for nonblocking BIOs. Call \fBSSL_get_error()\fR with the return value \fBret\fR to find out the reason. .SH "SEE ALSO" .IX Header "SEE ALSO" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dup.3 new file mode 120000 index 00000000..eb3189a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_dup.3 @@ -0,0 +1 @@ +SSL_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_enable_ct.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_enable_ct.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_enable_ct.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_export_keying_material.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_export_keying_material.3 index 98b112da..6c4e1fcc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_export_keying_material.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_export_keying_material.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_EXPORT_KEYING_MATERIAL 3" -.TH SSL_EXPORT_KEYING_MATERIAL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_EXPORT_KEYING_MATERIAL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_export_keying_material_early.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_export_keying_material_early.3 new file mode 120000 index 00000000..34dcf2de --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_export_keying_material_early.3 @@ -0,0 +1 @@ +SSL_export_keying_material.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_extension_supported.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_extension_supported.3 index 93e5eef4..28887099 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_extension_supported.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_extension_supported.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_EXTENSION_SUPPORTED 3" -.TH SSL_EXTENSION_SUPPORTED 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_EXTENSION_SUPPORTED 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_free.3 index 55059475..2c629098 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_free.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_free.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_FREE 3" -.TH SSL_FREE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_FREE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_free_buffers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_free_buffers.3 new file mode 120000 index 00000000..177181ec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_free_buffers.3 @@ -0,0 +1 @@ +SSL_alloc_buffers.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_alpn_selected.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_alpn_selected.3 new file mode 120000 index 00000000..710ee18b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_alpn_selected.3 @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_chain_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_chain_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_chain_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_chain_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_chain_certs.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_chain_certs.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_dane_authority.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_dane_authority.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_dane_authority.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_dane_tlsa.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_dane_tlsa.3 new file mode 120000 index 00000000..867659c8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_dane_tlsa.3 @@ -0,0 +1 @@ +SSL_CTX_dane_enable.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_next_proto_negotiated.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_next_proto_negotiated.3 new file mode 120000 index 00000000..710ee18b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_next_proto_negotiated.3 @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_param.3 new file mode 120000 index 00000000..8da5c7eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_param.3 @@ -0,0 +1 @@ +SSL_CTX_get0_param.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peer_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peer_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peer_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peer_scts.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peer_scts.3 index 9c5d0645..fa366180 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peer_scts.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peer_scts.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET0_PEER_SCTS 3" -.TH SSL_GET0_PEER_SCTS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET0_PEER_SCTS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peername.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peername.3 new file mode 120000 index 00000000..85e5d437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_peername.3 @@ -0,0 +1 @@ +SSL_set1_host.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_security_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_security_ex_data.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_security_ex_data.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_session.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_session.3 new file mode 120000 index 00000000..aadcfb5d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_session.3 @@ -0,0 +1 @@ +SSL_get_session.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_verified_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_verified_chain.3 new file mode 120000 index 00000000..2a4d340d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_verified_chain.3 @@ -0,0 +1 @@ +SSL_get_peer_cert_chain.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_verify_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_verify_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get0_verify_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_curves.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_curves.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_curves.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_groups.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_groups.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_groups.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_session.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_session.3 new file mode 120000 index 00000000..aadcfb5d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_session.3 @@ -0,0 +1 @@ +SSL_get_session.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_supported_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_supported_ciphers.3 new file mode 120000 index 00000000..a5c5b490 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get1_supported_ciphers.3 @@ -0,0 +1 @@ +SSL_get_ciphers.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_SSL_CTX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_SSL_CTX.3 index 08750218..c21da3ee 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_SSL_CTX.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_SSL_CTX.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_SSL_CTX 3" -.TH SSL_GET_SSL_CTX 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_SSL_CTX 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_all_async_fds.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_all_async_fds.3 index c544fcb5..bcba2787 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_all_async_fds.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_all_async_fds.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_ALL_ASYNC_FDS 3" -.TH SSL_GET_ALL_ASYNC_FDS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_ALL_ASYNC_FDS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -164,7 +164,7 @@ appearing as \*(L"read ready\*(R" on the file descriptor (no actual data should from the file descriptor). This function should only be called if the \s-1SSL\s0 object is currently waiting for asynchronous work to complete (i.e. \&\s-1SSL_ERROR_WANT_ASYNC\s0 has been received \- see \fBSSL_get_error\fR\|(3)). Typically the -list will only contain one file descriptor. However if multiple asynchronous +list will only contain one file descriptor. However, if multiple asynchronous capable engines are in use then more than one is possible. The number of file descriptors returned is stored in \fB*numfds\fR and the file descriptors themselves are in \fB*fds\fR. The \fBfds\fR parameter may be \s-1NULL\s0 in which case no file @@ -193,7 +193,7 @@ for an async operation to complete and 0 otherwise. On Windows platforms the openssl/async.h header is dependent on some of the types customarily made available by including windows.h. The application developer is likely to require control over when the latter -is included, commonly as one of the first included headers. Therefore +is included, commonly as one of the first included headers. Therefore, it is defined as an application developer's responsibility to include windows.h prior to async.h. .SH "SEE ALSO" @@ -205,7 +205,7 @@ The \fBSSL_waiting_for_async()\fR, \fBSSL_get_all_async_fds()\fR and \fBSSL_get_changed_async_fds()\fR functions were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_changed_async_fds.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_changed_async_fds.3 new file mode 120000 index 00000000..40f98ff8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_changed_async_fds.3 @@ -0,0 +1 @@ +SSL_get_all_async_fds.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher.3 new file mode 120000 index 00000000..b0cb8812 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher.3 @@ -0,0 +1 @@ +SSL_get_current_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_bits.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_bits.3 new file mode 120000 index 00000000..b0cb8812 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_bits.3 @@ -0,0 +1 @@ +SSL_get_current_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_list.3 new file mode 120000 index 00000000..a5c5b490 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_list.3 @@ -0,0 +1 @@ +SSL_get_ciphers.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_name.3 new file mode 120000 index 00000000..b0cb8812 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_name.3 @@ -0,0 +1 @@ +SSL_get_current_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_version.3 new file mode 120000 index 00000000..b0cb8812 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_cipher_version.3 @@ -0,0 +1 @@ +SSL_get_current_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ciphers.3 index 3f38eeab..a156476d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ciphers.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ciphers.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_CIPHERS 3" -.TH SSL_GET_CIPHERS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_CIPHERS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_ciphers.3 new file mode 120000 index 00000000..a5c5b490 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_ciphers.3 @@ -0,0 +1 @@ +SSL_get_ciphers.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_random.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_random.3 index 8194dbcf..84b2e753 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_random.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_client_random.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_CLIENT_RANDOM 3" -.TH SSL_GET_CLIENT_RANDOM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_CLIENT_RANDOM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_current_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_current_cipher.3 index 9ab87fb5..7c2f77c7 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_current_cipher.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_current_cipher.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_CURRENT_CIPHER 3" -.TH SSL_GET_CURRENT_CIPHER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_CURRENT_CIPHER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -145,8 +145,8 @@ SSL_get_current_cipher, SSL_get_cipher_name, SSL_get_cipher, SSL_get_cipher_bits .Vb 1 \& #include \& -\& SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl); -\& SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl); +\& const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl); +\& const SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl); \& \& const char *SSL_get_cipher_name(const SSL *s); \& const char *SSL_get_cipher(const SSL *s); @@ -192,7 +192,7 @@ SSL_get_cipher_name are implemented as macros. \&\fBssl\fR\|(7), \fBSSL_CIPHER_get_name\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_passwd_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_passwd_cb.3 new file mode 120000 index 00000000..ced1a3d1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_passwd_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_passwd_cb_userdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_passwd_cb_userdata.3 new file mode 120000 index 00000000..ced1a3d1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_passwd_cb_userdata.3 @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_timeout.3 index 496bfaf7..3c2903b9 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_timeout.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_default_timeout.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_DEFAULT_TIMEOUT 3" -.TH SSL_GET_DEFAULT_TIMEOUT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_DEFAULT_TIMEOUT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_early_data_status.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_early_data_status.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_early_data_status.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_error.3 index 2f9fcdef..e9fb2960 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_error.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_error.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_ERROR 3" -.TH SSL_GET_ERROR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_ERROR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -180,7 +180,7 @@ indicate that the underlying transport has been closed. The operation did not complete and can be retried later. .Sp \&\fB\s-1SSL_ERROR_WANT_READ\s0\fR is returned when the last operation was a read -operation from a non-blocking \fB\s-1BIO\s0\fR. +operation from a nonblocking \fB\s-1BIO\s0\fR. It means that not enough data was available at this time to complete the operation. If at a later time the underlying \fB\s-1BIO\s0\fR has data available for reading the same @@ -192,8 +192,8 @@ for a blocking \fB\s-1BIO\s0\fR. See \fBSSL_read\fR\|(3) for more information. .Sp \&\fB\s-1SSL_ERROR_WANT_WRITE\s0\fR is returned when the last operation was a write -to a non-blocking \fB\s-1BIO\s0\fR and it was unable to sent all data to the \fB\s-1BIO\s0\fR. -When the \fB\s-1BIO\s0\fR is writeable again, the same function can be called again. +to a nonblocking \fB\s-1BIO\s0\fR and it was unable to sent all data to the \fB\s-1BIO\s0\fR. +When the \fB\s-1BIO\s0\fR is writable again, the same function can be called again. .Sp Note that the retry may again lead to an \fB\s-1SSL_ERROR_WANT_READ\s0\fR or \&\fB\s-1SSL_ERROR_WANT_WRITE\s0\fR condition. @@ -203,7 +203,7 @@ protocol level. .Sp It is safe to call \fBSSL_read()\fR or \fBSSL_read_ex()\fR when more data is available even when the call that set this error was an \fBSSL_write()\fR or \fBSSL_write_ex()\fR. -However if the call was an \fBSSL_write()\fR or \fBSSL_write_ex()\fR, it should be called +However, if the call was an \fBSSL_write()\fR or \fBSSL_write_ex()\fR, it should be called again to continue sending the application data. .Sp For socket \fB\s-1BIO\s0\fRs (e.g. when \fBSSL_set_fd()\fR was used), \fBselect()\fR or diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ex_data.3 new file mode 120000 index 00000000..0022e256 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ex_data.3 @@ -0,0 +1 @@ +SSL_CTX_set_ex_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ex_data_X509_STORE_CTX_idx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ex_data_X509_STORE_CTX_idx.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ex_data_X509_STORE_CTX_idx.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_extms_support.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_extms_support.3 index 2d6d0486..7646bef2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_extms_support.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_extms_support.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_EXTMS_SUPPORT 3" -.TH SSL_GET_EXTMS_SUPPORT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_EXTMS_SUPPORT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_fd.3 index 5aa53f72..1655a82c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_fd.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_fd.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_FD 3" -.TH SSL_GET_FD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_FD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_info_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_info_callback.3 new file mode 120000 index 00000000..47e39f6f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_info_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_info_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_key_update_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_key_update_type.3 new file mode 120000 index 00000000..4e76b749 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_key_update_type.3 @@ -0,0 +1 @@ +SSL_key_update.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_cert_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_cert_list.3 new file mode 120000 index 00000000..57ed5968 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_cert_list.3 @@ -0,0 +1 @@ +SSL_CTX_set_max_cert_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_proto_version.3 new file mode 120000 index 00000000..64444bed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_max_proto_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_min_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_min_proto_version.3 new file mode 120000 index 00000000..64444bed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_min_proto_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_mode.3 new file mode 120000 index 00000000..295da90e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_mode.3 @@ -0,0 +1 @@ +SSL_CTX_set_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_num_tickets.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_num_tickets.3 new file mode 120000 index 00000000..7e122209 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_num_tickets.3 @@ -0,0 +1 @@ +SSL_CTX_set_num_tickets.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_options.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_options.3 new file mode 120000 index 00000000..ae626a40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_options.3 @@ -0,0 +1 @@ +SSL_CTX_set_options.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_cert_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_cert_chain.3 index bfd5cf72..e29c6fdf 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_cert_chain.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_cert_chain.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_PEER_CERT_CHAIN 3" -.TH SSL_GET_PEER_CERT_CHAIN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_PEER_CERT_CHAIN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_certificate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_certificate.3 index 0c8b8df9..ace35610 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_certificate.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_certificate.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_PEER_CERTIFICATE 3" -.TH SSL_GET_PEER_CERTIFICATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_PEER_CERTIFICATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_signature_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_signature_nid.3 index 22c86351..215a7c41 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_signature_nid.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_signature_nid.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_PEER_SIGNATURE_NID 3" -.TH SSL_GET_PEER_SIGNATURE_NID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_PEER_SIGNATURE_NID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_signature_type_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_signature_type_nid.3 new file mode 120000 index 00000000..3a2ebfec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_signature_type_nid.3 @@ -0,0 +1 @@ +SSL_get_peer_signature_nid.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_tmp_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_tmp_key.3 index 810d2c59..fa441988 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_tmp_key.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_peer_tmp_key.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_PEER_TMP_KEY 3" -.TH SSL_GET_PEER_TMP_KEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_PEER_TMP_KEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_pending_cipher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_pending_cipher.3 new file mode 120000 index 00000000..b0cb8812 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_pending_cipher.3 @@ -0,0 +1 @@ +SSL_get_current_cipher.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_psk_identity.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_psk_identity.3 index 89b08785..1387a15a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_psk_identity.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_psk_identity.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_PSK_IDENTITY 3" -.TH SSL_GET_PSK_IDENTITY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_PSK_IDENTITY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_psk_identity_hint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_psk_identity_hint.3 new file mode 120000 index 00000000..f32a8888 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_psk_identity_hint.3 @@ -0,0 +1 @@ +SSL_get_psk_identity.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_quiet_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_quiet_shutdown.3 new file mode 120000 index 00000000..ea530590 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_quiet_shutdown.3 @@ -0,0 +1 @@ +SSL_CTX_set_quiet_shutdown.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_rbio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_rbio.3 index 3bf26207..97ec0a46 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_rbio.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_rbio.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_RBIO 3" -.TH SSL_GET_RBIO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_RBIO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_read_ahead.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_read_ahead.3 new file mode 120000 index 00000000..5a79fd46 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_read_ahead.3 @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_record_padding_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_record_padding_callback_arg.3 new file mode 120000 index 00000000..c7bb1184 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_record_padding_callback_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_recv_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_recv_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_recv_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_rfd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_rfd.3 new file mode 120000 index 00000000..9fbe312b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_rfd.3 @@ -0,0 +1 @@ +SSL_get_fd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_secure_renegotiation_support.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_secure_renegotiation_support.3 new file mode 120000 index 00000000..ae626a40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_secure_renegotiation_support.3 @@ -0,0 +1 @@ +SSL_CTX_set_options.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_security_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_security_callback.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_security_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_security_level.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_security_level.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_security_level.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_selected_srtp_profile.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_selected_srtp_profile.3 new file mode 120000 index 00000000..43504552 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_selected_srtp_profile.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_use_srtp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_server_random.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_server_random.3 new file mode 120000 index 00000000..d315e3c9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_server_random.3 @@ -0,0 +1 @@ +SSL_get_client_random.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_server_tmp_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_server_tmp_key.3 new file mode 120000 index 00000000..bad7a24d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_server_tmp_key.3 @@ -0,0 +1 @@ +SSL_get_peer_tmp_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_servername.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_servername.3 new file mode 120000 index 00000000..17429fd0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_servername.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_servername_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_servername_type.3 new file mode 120000 index 00000000..17429fd0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_servername_type.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_session.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_session.3 index 96249e2e..ef22aeda 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_session.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_session.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_SESSION 3" -.TH SSL_GET_SESSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_SESSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -173,8 +173,11 @@ in TLSv1.3 before the session has been established will still return an \&\s-1SSL_SESSION\s0 object can be used for resumption or not. .PP Additionally, in TLSv1.3, a server can send multiple messages that establish a -session for a single connection. In that case the above functions will only -return information on the last session that was received. +session for a single connection. In that case, on the client side, the above +functions will only return information on the last session that was received. On +the server side they will only return information on the last session that was +sent, or if no session tickets were sent then the session for the current +connection. .PP The preferred way for applications to obtain a resumable \s-1SSL_SESSION\s0 object is to use a new session callback as described in \fBSSL_CTX_sess_set_new_cb\fR\|(3). @@ -227,7 +230,7 @@ The return value points to the data of an \s-1SSL\s0 session. \&\fBSSL_SESSION_free\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_ciphers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_ciphers.3 new file mode 120000 index 00000000..a5c5b490 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_ciphers.3 @@ -0,0 +1 @@ +SSL_get_ciphers.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_curve.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_curve.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_curve.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_group.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_group.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_group.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_sigalgs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_sigalgs.3 index 056e8543..4ff28dde 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_sigalgs.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shared_sigalgs.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_SHARED_SIGALGS 3" -.TH SSL_GET_SHARED_SIGALGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_SHARED_SIGALGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shutdown.3 new file mode 120000 index 00000000..f6728e12 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_shutdown.3 @@ -0,0 +1 @@ +SSL_set_shutdown.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_sigalgs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_sigalgs.3 new file mode 120000 index 00000000..05785139 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_sigalgs.3 @@ -0,0 +1 @@ +SSL_get_shared_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_signature_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_signature_nid.3 new file mode 120000 index 00000000..3a2ebfec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_signature_nid.3 @@ -0,0 +1 @@ +SSL_get_peer_signature_nid.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_signature_type_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_signature_type_nid.3 new file mode 120000 index 00000000..3a2ebfec --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_signature_type_nid.3 @@ -0,0 +1 @@ +SSL_get_peer_signature_nid.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_srtp_profiles.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_srtp_profiles.3 new file mode 120000 index 00000000..43504552 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_srtp_profiles.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_use_srtp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ssl_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ssl_method.3 new file mode 120000 index 00000000..1ab4e232 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_ssl_method.3 @@ -0,0 +1 @@ +SSL_CTX_set_ssl_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_state.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_state.3 new file mode 120000 index 00000000..2cfbaf78 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_state.3 @@ -0,0 +1 @@ +SSL_in_init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_time.3 new file mode 120000 index 00000000..713bceab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_time.3 @@ -0,0 +1 @@ +SSL_SESSION_get_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_timeout.3 new file mode 120000 index 00000000..713bceab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_timeout.3 @@ -0,0 +1 @@ +SSL_SESSION_get_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tlsext_status_ocsp_resp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tlsext_status_ocsp_resp.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tlsext_status_ocsp_resp.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tlsext_status_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tlsext_status_type.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tlsext_status_type.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tmp_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tmp_key.3 new file mode 120000 index 00000000..bad7a24d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_tmp_key.3 @@ -0,0 +1 @@ +SSL_get_peer_tmp_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_callback.3 new file mode 120000 index 00000000..1b7a2eae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_callback.3 @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_depth.3 new file mode 120000 index 00000000..1b7a2eae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_depth.3 @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_mode.3 new file mode 120000 index 00000000..1b7a2eae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_mode.3 @@ -0,0 +1 @@ +SSL_CTX_get_verify_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_result.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_result.3 index cff20d38..37adc96e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_result.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_verify_result.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_VERIFY_RESULT 3" -.TH SSL_GET_VERIFY_RESULT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_VERIFY_RESULT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_version.3 index e0268c26..89b25265 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_version.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_version.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_GET_VERSION 3" -.TH SSL_GET_VERSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_GET_VERSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_wbio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_wbio.3 new file mode 120000 index 00000000..2d499d38 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_wbio.3 @@ -0,0 +1 @@ +SSL_get_rbio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_wfd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_wfd.3 new file mode 120000 index 00000000..9fbe312b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_get_wfd.3 @@ -0,0 +1 @@ +SSL_get_fd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_has_matching_session_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_has_matching_session_id.3 new file mode 120000 index 00000000..795607d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_has_matching_session_id.3 @@ -0,0 +1 @@ +SSL_CTX_set_generate_session_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_has_pending.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_has_pending.3 new file mode 120000 index 00000000..4935e3c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_has_pending.3 @@ -0,0 +1 @@ +SSL_pending.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_accept_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_accept_init.3 new file mode 120000 index 00000000..2cfbaf78 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_accept_init.3 @@ -0,0 +1 @@ +SSL_in_init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_before.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_before.3 new file mode 120000 index 00000000..2cfbaf78 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_before.3 @@ -0,0 +1 @@ +SSL_in_init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_connect_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_connect_init.3 new file mode 120000 index 00000000..2cfbaf78 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_connect_init.3 @@ -0,0 +1 @@ +SSL_in_init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_init.3 index 8c7b909a..bf3cd5ce 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_init.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_in_init.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_IN_INIT 3" -.TH SSL_IN_INIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_IN_INIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_dtls.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_dtls.3 new file mode 120000 index 00000000..2da60dae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_dtls.3 @@ -0,0 +1 @@ +SSL_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_init_finished.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_init_finished.3 new file mode 120000 index 00000000..2cfbaf78 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_init_finished.3 @@ -0,0 +1 @@ +SSL_in_init.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_server.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_server.3 new file mode 120000 index 00000000..36885375 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_is_server.3 @@ -0,0 +1 @@ +SSL_set_connect_state.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_key_update.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_key_update.3 index 1f02530a..2d9d3528 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_key_update.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_key_update.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_KEY_UPDATE 3" -.TH SSL_KEY_UPDATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_KEY_UPDATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_library_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_library_init.3 index ecdc410b..aaca75bd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_library_init.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_library_init.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_LIBRARY_INIT 3" -.TH SSL_LIBRARY_INIT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_LIBRARY_INIT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_load_client_CA_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_load_client_CA_file.3 index ab03e310..6fc3d609 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_load_client_CA_file.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_load_client_CA_file.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_LOAD_CLIENT_CA_FILE 3" -.TH SSL_LOAD_CLIENT_CA_FILE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_LOAD_CLIENT_CA_FILE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_load_error_strings.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_load_error_strings.3 new file mode 120000 index 00000000..1bb33ce4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_load_error_strings.3 @@ -0,0 +1 @@ +ERR_load_crypto_strings.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_new.3 index 54cb214f..853eb250 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_NEW 3" -.TH SSL_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -163,10 +163,67 @@ structure are freed. \&\fBSSL_up_ref()\fR increments the reference count for an existing \fB\s-1SSL\s0\fR structure. .PP -\&\fBSSL_dup()\fR duplicates an existing \fB\s-1SSL\s0\fR structure into a new allocated one. All -settings are inherited from the original \fB\s-1SSL\s0\fR structure. Dynamic data (i.e. -existing connection details) are not copied, the new \fB\s-1SSL\s0\fR is set into an -initial accept (server) or connect (client) state. +The function \fBSSL_dup()\fR creates and returns a new \fB\s-1SSL\s0\fR structure from the same +\&\fB\s-1SSL_CTX\s0\fR that was used to create \fIs\fR. It additionally duplicates a subset of +the settings in \fIs\fR into the new \fB\s-1SSL\s0\fR object. +.PP +For \fBSSL_dup()\fR to work, the connection \s-1MUST\s0 be in its initial state and +\&\s-1MUST NOT\s0 have yet started the \s-1SSL\s0 handshake. For connections that are not in +their initial state \fBSSL_dup()\fR just increments an internal +reference count and returns the \fIsame\fR handle. It may be possible to +use \fBSSL_clear\fR\|(3) to recycle an \s-1SSL\s0 handle that is not in its initial +state for re-use, but this is best avoided. Instead, save and restore +the session, if desired, and construct a fresh handle for each connection. +.PP +The subset of settings in \fIs\fR that are duplicated are: +.IP "any session data if configured (including the session_id_context)" 4 +.IX Item "any session data if configured (including the session_id_context)" +.PD 0 +.IP "any tmp_dh settings set via \fBSSL_set_tmp_dh\fR\|(3), \fBSSL_set_tmp_dh_callback\fR\|(3), or \fBSSL_set_dh_auto\fR\|(3)" 4 +.IX Item "any tmp_dh settings set via SSL_set_tmp_dh, SSL_set_tmp_dh_callback, or SSL_set_dh_auto" +.IP "any configured certificates, private keys or certificate chains" 4 +.IX Item "any configured certificates, private keys or certificate chains" +.IP "any configured signature algorithms, or client signature algorithms" 4 +.IX Item "any configured signature algorithms, or client signature algorithms" +.IP "any \s-1DANE\s0 settings" 4 +.IX Item "any DANE settings" +.IP "any Options set via \fBSSL_set_options\fR\|(3)" 4 +.IX Item "any Options set via SSL_set_options" +.IP "any Mode set via \fBSSL_set_mode\fR\|(3)" 4 +.IX Item "any Mode set via SSL_set_mode" +.IP "any minimum or maximum protocol settings set via \fBSSL_set_min_proto_version\fR\|(3) or \fBSSL_set_max_proto_version\fR\|(3) (Note: Only from OpenSSL 1.1.1h and above)" 4 +.IX Item "any minimum or maximum protocol settings set via SSL_set_min_proto_version or SSL_set_max_proto_version (Note: Only from OpenSSL 1.1.1h and above)" +.IP "any Verify mode, callback or depth set via \fBSSL_set_verify\fR\|(3) or \fBSSL_set_verify_depth\fR\|(3) or any configured X509 verification parameters" 4 +.IX Item "any Verify mode, callback or depth set via SSL_set_verify or SSL_set_verify_depth or any configured X509 verification parameters" +.IP "any msg callback or info callback set via \fBSSL_set_msg_callback\fR\|(3) or \fBSSL_set_info_callback\fR\|(3)" 4 +.IX Item "any msg callback or info callback set via SSL_set_msg_callback or SSL_set_info_callback" +.IP "any default password callback set via \fBSSL_set_default_passwd_cb\fR\|(3)" 4 +.IX Item "any default password callback set via SSL_set_default_passwd_cb" +.IP "any session id generation callback set via \fBSSL_set_generate_session_id\fR\|(3)" 4 +.IX Item "any session id generation callback set via SSL_set_generate_session_id" +.IP "any configured Cipher List" 4 +.IX Item "any configured Cipher List" +.IP "initial accept (server) or connect (client) state" 4 +.IX Item "initial accept (server) or connect (client) state" +.IP "the max cert list value set via \fBSSL_set_max_cert_list\fR\|(3)" 4 +.IX Item "the max cert list value set via SSL_set_max_cert_list" +.IP "the read_ahead value set via \fBSSL_set_read_ahead\fR\|(3)" 4 +.IX Item "the read_ahead value set via SSL_set_read_ahead" +.IP "application specific data set via \fBSSL_set_ex_data\fR\|(3)" 4 +.IX Item "application specific data set via SSL_set_ex_data" +.IP "any \s-1CA\s0 list or client \s-1CA\s0 list set via \fBSSL_set0_CA_list\fR\|(3), \fBSSL_set0_client_CA_list()\fR or similar functions" 4 +.IX Item "any CA list or client CA list set via SSL_set0_CA_list, SSL_set0_client_CA_list() or similar functions" +.IP "any security level settings or callbacks" 4 +.IX Item "any security level settings or callbacks" +.IP "any configured serverinfo data" 4 +.IX Item "any configured serverinfo data" +.IP "any configured \s-1PSK\s0 identity hint" 4 +.IX Item "any configured PSK identity hint" +.IP "any configured custom extensions" 4 +.IX Item "any configured custom extensions" +.IP "any client certificate types configured via SSL_set1_client_certificate_types" 4 +.IX Item "any client certificate types configured via SSL_set1_client_certificate_types" +.PD .SH "RETURN VALUES" .IX Header "RETURN VALUES" The following return values can occur: @@ -187,7 +244,7 @@ The return value points to an allocated \s-1SSL\s0 structure. \&\fBssl\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_peek.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_peek.3 new file mode 120000 index 00000000..1a4fa8b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_peek.3 @@ -0,0 +1 @@ +SSL_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_peek_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_peek_ex.3 new file mode 120000 index 00000000..1a4fa8b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_peek_ex.3 @@ -0,0 +1 @@ +SSL_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_pending.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_pending.3 index d8fa1675..fe1b6351 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_pending.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_pending.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_PENDING 3" -.TH SSL_PENDING 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_PENDING 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -163,7 +163,7 @@ record) may have been read containing more \s-1TLS/SSL\s0 records. This also app \&\s-1DTLS\s0 and pipelining (see \fBSSL_CTX_set_split_send_fragment\fR\|(3)). These additional bytes will be buffered by OpenSSL but will remain unprocessed until they are needed. As these bytes are still in an unprocessed state \fBSSL_pending()\fR -will ignore them. Therefore it is possible for no more bytes to be readable from +will ignore them. Therefore, it is possible for no more bytes to be readable from the underlying \s-1BIO\s0 (because OpenSSL has already read them) and for \fBSSL_pending()\fR to return 0, even though readable application data bytes are available (because the data is in unprocessed buffered records). @@ -191,7 +191,7 @@ returns 1 if there is buffered record data in the \s-1SSL\s0 object and 0 otherw The \fBSSL_has_pending()\fR function was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_client_cb_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_client_cb_func.3 new file mode 120000 index 00000000..9a1d58bb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_client_cb_func.3 @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_find_session_cb_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_find_session_cb_func.3 new file mode 120000 index 00000000..7eb7f071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_find_session_cb_func.3 @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_server_cb_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_server_cb_func.3 new file mode 120000 index 00000000..7eb7f071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_server_cb_func.3 @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_use_session_cb_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_use_session_cb_func.3 new file mode 120000 index 00000000..9a1d58bb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_psk_use_session_cb_func.3 @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read.3 index 099374ac..d7ae0593 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_READ 3" -.TH SSL_READ 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_READ 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -180,7 +180,7 @@ invocation of a read function. The read functions work based on the \s-1SSL/TLS\s0 records. The data are received in records (with a maximum record size of 16kB). Only when a record has been completely received, can it be processed (decryption and check of integrity). -Therefore data that was not retrieved at the last read call can still be +Therefore, data that was not retrieved at the last read call can still be buffered inside the \s-1SSL\s0 layer and will be retrieved on the next read call. If \fBnum\fR is higher than the number of bytes buffered then the read functions will return with the bytes buffered. If no more bytes are in the @@ -207,7 +207,7 @@ not set. Note that if \fB\s-1SSL_MODE_AUTO_RETRY\s0\fR is set and only non-application data is available the call will hang. .PP -If the underlying \s-1BIO\s0 is \fBnon-blocking\fR, a read function will also return when +If the underlying \s-1BIO\s0 is \fBnonblocking\fR, a read function will also return when the underlying \s-1BIO\s0 could not satisfy the needs of the function to continue the operation. In this case a call to \fBSSL_get_error\fR\|(3) with the @@ -218,7 +218,7 @@ a read function can also cause write operations. The calling process then must repeat the call after taking appropriate action to satisfy the needs of the read function. The action depends on the underlying \s-1BIO.\s0 -When using a non-blocking socket, nothing is to be done, but \fBselect()\fR can be +When using a nonblocking socket, nothing is to be done, but \fBselect()\fR can be used to check for the required condition. When using a buffering \s-1BIO,\s0 like a \s-1BIO\s0 pair, data must be written into or retrieved out of the \s-1BIO\s0 before being able to continue. @@ -267,7 +267,7 @@ You should instead call \fBSSL_get_error()\fR to find out if it's retryable. The \fBSSL_read_ex()\fR and \fBSSL_peek_ex()\fR functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read_early_data.3 index 9dd64a0e..1f21b04c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read_early_data.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read_early_data.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_READ_EARLY_DATA 3" -.TH SSL_READ_EARLY_DATA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_READ_EARLY_DATA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -179,10 +179,11 @@ SSL_set_max_early_data, SSL_CTX_set_max_early_data, SSL_get_max_early_data, SSL_ These functions are used to send and receive early data where TLSv1.3 has been negotiated. Early data can be sent by the client immediately after its initial ClientHello without having to wait for the server to complete the handshake. -Early data can only be sent if a session has previously been established with -the server, and the server is known to support it. Additionally these functions -can be used to send data from the server to the client when the client has not -yet completed the authentication stage of the handshake. +Early data can be sent if a session has previously been established with the +server or when establishing a new session using an out-of-band \s-1PSK,\s0 and only +when the server is known to support it. Additionally these functions can be used +to send data from the server to the client when the client has not yet completed +the authentication stage of the handshake. .PP Early data has weaker security properties than other data sent over an \s-1SSL/TLS\s0 connection. In particular the data does not have forward secrecy. There are also @@ -316,7 +317,7 @@ early data settings for the \s-1SSL_CTX\s0 and \s-1SSL\s0 objects respectively. server application will either use both of \fBSSL_read_early_data()\fR and \&\fBSSL_CTX_set_max_early_data()\fR (or \fBSSL_set_max_early_data()\fR), or neither of them, since there is no practical benefit from using only one of them. If the maximum -early data setting for a server is non-zero then replay protection is +early data setting for a server is nonzero then replay protection is automatically enabled (see \*(L"\s-1REPLAY PROTECTION\*(R"\s0 below). .PP If the server rejects the early data sent by a client then it will skip over @@ -334,7 +335,7 @@ max_early_data for the session and the recv_max_early_data setting for the server. If a client sends more data than this then the connection will abort. .PP The configured value for max_early_data on a server may change over time as -required. However clients may have tickets containing the previously configured +required. However, clients may have tickets containing the previously configured max_early_data value. The recv_max_early_data should always be equal to or higher than any recently configured max_early_data value in order to avoid aborted connections. The recv_max_early_data should never be set to less than @@ -397,7 +398,7 @@ retry with a lower maximum protocol version. When early data is in use the \s-1TLS\s0 protocol provides no security guarantees that the same early data was not replayed across multiple connections. As a mitigation for this issue OpenSSL automatically enables replay protection if the -server is configured with a non-zero max early data value. With replay +server is configured with a nonzero max early data value. With replay protection enabled sessions are forced to be single use only. If a client attempts to reuse a session ticket more than once, then the second and subsequent attempts will fall back to a full handshake (and any early data that @@ -428,7 +429,7 @@ cache. Applications should be designed with this in mind in order to minimise the possibility of replay attacks. .PP The OpenSSL replay protection does not apply to external Pre Shared Keys (PSKs) -(e.g. see \fBSSL_CTX_set_psk_find_session_callback\fR\|(3)). Therefore extreme caution +(e.g. see \fBSSL_CTX_set_psk_find_session_callback\fR\|(3)). Therefore, extreme caution should be applied when combining external PSKs with early data. .PP Some applications may mitigate the replay risks in other ways. For those @@ -472,7 +473,7 @@ the server, or \s-1SSL_EARLY_DATA_NOT_SENT\s0 if no early data was sent. All of the functions described above were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2017\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read_ex.3 new file mode 120000 index 00000000..1a4fa8b9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_read_ex.3 @@ -0,0 +1 @@ +SSL_read.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate.3 new file mode 120000 index 00000000..4e76b749 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate.3 @@ -0,0 +1 @@ +SSL_key_update.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate_abbreviated.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate_abbreviated.3 new file mode 120000 index 00000000..4e76b749 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate_abbreviated.3 @@ -0,0 +1 @@ +SSL_key_update.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate_pending.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate_pending.3 new file mode 120000 index 00000000..4e76b749 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_renegotiate_pending.3 @@ -0,0 +1 @@ +SSL_key_update.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_rstate_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_rstate_string.3 index 52aeafca..259a95d1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_rstate_string.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_rstate_string.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_RSTATE_STRING 3" -.TH SSL_RSTATE_STRING 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_RSTATE_STRING 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_rstate_string_long.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_rstate_string_long.3 new file mode 120000 index 00000000..cd5d65d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_rstate_string_long.3 @@ -0,0 +1 @@ +SSL_rstate_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_select_current_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_select_current_cert.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_select_current_cert.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_select_next_proto.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_select_next_proto.3 new file mode 120000 index 00000000..710ee18b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_select_next_proto.3 @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_session_reused.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_session_reused.3 index 1a97bac0..935c0813 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_session_reused.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_session_reused.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SESSION_REUSED 3" -.TH SSL_SESSION_REUSED 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SESSION_REUSED 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_chain.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_chain.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_chain_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_chain_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_chain_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_rbio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_rbio.3 new file mode 120000 index 00000000..e7ae68b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_rbio.3 @@ -0,0 +1 @@ +SSL_set_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_security_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_security_ex_data.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_security_ex_data.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_verify_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_verify_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_verify_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_wbio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_wbio.3 new file mode 120000 index 00000000..e7ae68b8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set0_wbio.3 @@ -0,0 +1 @@ +SSL_set_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_chain.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_chain.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_chain_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_chain_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_chain_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_client_sigalgs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_client_sigalgs.3 new file mode 120000 index 00000000..883172c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_client_sigalgs.3 @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_client_sigalgs_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_client_sigalgs_list.3 new file mode 120000 index 00000000..883172c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_client_sigalgs_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_curves.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_curves.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_curves.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_curves_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_curves_list.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_curves_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_groups.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_groups.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_groups.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_groups_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_groups_list.3 new file mode 120000 index 00000000..08849916 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_groups_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_curves.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_host.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_host.3 index 8363fcce..af79c2e1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_host.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_host.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SET1_HOST 3" -.TH SSL_SET1_HOST 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SET1_HOST 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -155,9 +155,9 @@ SSL_set1_host, SSL_add1_host, SSL_set_hostflags, SSL_get0_peername \- SSL server These functions configure server hostname checks in the \s-1SSL\s0 client. .PP \&\fBSSL_set1_host()\fR sets the expected \s-1DNS\s0 hostname to \fBname\fR clearing -any previously specified host name or names. If \fBname\fR is \s-1NULL,\s0 +any previously specified hostname or names. If \fBname\fR is \s-1NULL,\s0 or the empty string the list of hostnames is cleared, and name -checks are not performed on the peer certificate. When a non-empty +checks are not performed on the peer certificate. When a nonempty \&\fBname\fR is specified, certificate verification automatically checks the peer hostname via \fBX509_check_host\fR\|(3) with \fBflags\fR as specified via \fBSSL_set_hostflags()\fR. Clients that enable \s-1DANE TLSA\s0 authentication @@ -241,7 +241,7 @@ the lifetime of the \s-1SSL\s0 connection. These functions were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_param.3 new file mode 120000 index 00000000..8da5c7eb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_param.3 @@ -0,0 +1 @@ +SSL_CTX_get0_param.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_sigalgs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_sigalgs.3 new file mode 120000 index 00000000..883172c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_sigalgs.3 @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_sigalgs_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_sigalgs_list.3 new file mode 120000 index 00000000..883172c5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_sigalgs_list.3 @@ -0,0 +1 @@ +SSL_CTX_set1_sigalgs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_verify_cert_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_verify_cert_store.3 new file mode 120000 index 00000000..b64361d7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set1_verify_cert_store.3 @@ -0,0 +1 @@ +SSL_CTX_set1_verify_cert_store.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_accept_state.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_accept_state.3 new file mode 120000 index 00000000..36885375 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_accept_state.3 @@ -0,0 +1 @@ +SSL_set_connect_state.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_allow_early_data_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_allow_early_data_cb.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_allow_early_data_cb.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_alpn_protos.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_alpn_protos.3 new file mode 120000 index 00000000..710ee18b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_alpn_protos.3 @@ -0,0 +1 @@ +SSL_CTX_set_alpn_select_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_bio.3 index 427ccdbd..a8e4bba3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_bio.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_bio.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SET_BIO 3" -.TH SSL_SET_BIO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SET_BIO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -153,7 +153,7 @@ SSL_set_bio, SSL_set0_rbio, SSL_set0_wbio \- connect the SSL object with a BIO .IX Header "DESCRIPTION" \&\fBSSL_set0_rbio()\fR connects the \s-1BIO\s0 \fBrbio\fR for the read operations of the \fBssl\fR object. The \s-1SSL\s0 engine inherits the behaviour of \fBrbio\fR. If the \s-1BIO\s0 is -non-blocking then the \fBssl\fR object will also have non-blocking behaviour. This +nonblocking then the \fBssl\fR object will also have nonblocking behaviour. This function transfers ownership of \fBrbio\fR to \fBssl\fR. It will be automatically freed using \fBBIO_free_all\fR\|(3) when the \fBssl\fR is freed. On calling this function, any existing \fBrbio\fR that was previously set will also be freed via a @@ -163,7 +163,7 @@ the same value as previously). \&\fBSSL_set0_wbio()\fR works in the same as \fBSSL_set0_rbio()\fR except that it connects the \s-1BIO\s0 \fBwbio\fR for the write operations of the \fBssl\fR object. Note that if the rbio and wbio are the same then \fBSSL_set0_rbio()\fR and \fBSSL_set0_wbio()\fR each take -ownership of one reference. Therefore it may be necessary to increment the +ownership of one reference. Therefore, it may be necessary to increment the number of references available using \fBBIO_up_ref\fR\|(3) before calling the set0 functions. .PP @@ -219,7 +219,7 @@ use \fBSSL_set0_rbio()\fR and \fBSSL_set0_wbio()\fR instead. \&\fBSSL_set0_rbio()\fR and \fBSSL_set0_wbio()\fR were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_block_padding.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_block_padding.3 new file mode 120000 index 00000000..c7bb1184 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_block_padding.3 @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_cert_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_cert_cb.3 new file mode 120000 index 00000000..cd6c7b14 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_cert_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_cert_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_cipher_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_cipher_list.3 new file mode 120000 index 00000000..24071b1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_cipher_list.3 @@ -0,0 +1 @@ +SSL_CTX_set_cipher_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ciphersuites.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ciphersuites.3 new file mode 120000 index 00000000..24071b1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ciphersuites.3 @@ -0,0 +1 @@ +SSL_CTX_set_cipher_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_client_CA_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_client_CA_list.3 new file mode 120000 index 00000000..bfb7e21f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_client_CA_list.3 @@ -0,0 +1 @@ +SSL_CTX_set0_CA_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_connect_state.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_connect_state.3 index 66a93a83..240bacdc 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_connect_state.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_connect_state.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SET_CONNECT_STATE 3" -.TH SSL_SET_CONNECT_STATE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SET_CONNECT_STATE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ct_validation_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ct_validation_callback.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ct_validation_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_current_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_current_cert.3 new file mode 120000 index 00000000..0ef0f3c0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_current_cert.3 @@ -0,0 +1 @@ +SSL_CTX_add1_chain_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_passwd_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_passwd_cb.3 new file mode 120000 index 00000000..ced1a3d1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_passwd_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_passwd_cb_userdata.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_passwd_cb_userdata.3 new file mode 120000 index 00000000..ced1a3d1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_passwd_cb_userdata.3 @@ -0,0 +1 @@ +SSL_CTX_set_default_passwd_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_read_buffer_len.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_read_buffer_len.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_default_read_buffer_len.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ex_data.3 new file mode 120000 index 00000000..0022e256 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ex_data.3 @@ -0,0 +1 @@ +SSL_CTX_set_ex_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_fd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_fd.3 index de7fd78b..55c9f55a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_fd.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_fd.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SET_FD 3" -.TH SSL_SET_FD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SET_FD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -157,8 +157,8 @@ socket file descriptor of a network connection. .PP When performing the operation, a \fBsocket \s-1BIO\s0\fR is automatically created to interface between the \fBssl\fR and \fBfd\fR. The \s-1BIO\s0 and hence the \s-1SSL\s0 engine -inherit the behaviour of \fBfd\fR. If \fBfd\fR is non-blocking, the \fBssl\fR will -also have non-blocking behaviour. +inherit the behaviour of \fBfd\fR. If \fBfd\fR is nonblocking, the \fBssl\fR will +also have nonblocking behaviour. .PP If there was already a \s-1BIO\s0 connected to \fBssl\fR, \fBBIO_free()\fR will be called (for both the reading and writing side, if different). @@ -173,6 +173,15 @@ The operation failed. Check the error stack to find out why. .IP "1" 4 .IX Item "1" The operation succeeded. +.SH "NOTES" +.IX Header "NOTES" +On Windows, a socket handle is a 64\-bit data type (\s-1UINT_PTR\s0), which leads to a +compiler warning (conversion from '\s-1SOCKET\s0' to 'int', possible loss of data) when +passing the socket handle to SSL_set_*\fBfd()\fR. For the time being, this warning can +safely be ignored, because although the Microsoft documentation claims that the +upper limit is \s-1INVALID_SOCKET\-1\s0 (2^64 \- 2), in practice the current \fBsocket()\fR +implementation returns an index into the kernel handle table, the size of which +is limited to 2^24. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBSSL_get_fd\fR\|(3), \fBSSL_set_bio\fR\|(3), @@ -180,7 +189,7 @@ The operation succeeded. \&\fBSSL_shutdown\fR\|(3), \fBssl\fR\|(7) , \fBbio\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_generate_session_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_generate_session_id.3 new file mode 120000 index 00000000..795607d6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_generate_session_id.3 @@ -0,0 +1 @@ +SSL_CTX_set_generate_session_id.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_hostflags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_hostflags.3 new file mode 120000 index 00000000..85e5d437 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_hostflags.3 @@ -0,0 +1 @@ +SSL_set1_host.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_info_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_info_callback.3 new file mode 120000 index 00000000..47e39f6f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_info_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_info_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_cert_list.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_cert_list.3 new file mode 120000 index 00000000..57ed5968 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_cert_list.3 @@ -0,0 +1 @@ +SSL_CTX_set_max_cert_list.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_pipelines.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_pipelines.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_pipelines.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_proto_version.3 new file mode 120000 index 00000000..64444bed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_proto_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_send_fragment.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_send_fragment.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_max_send_fragment.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_min_proto_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_min_proto_version.3 new file mode 120000 index 00000000..64444bed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_min_proto_version.3 @@ -0,0 +1 @@ +SSL_CTX_set_min_proto_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_mode.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_mode.3 new file mode 120000 index 00000000..295da90e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_mode.3 @@ -0,0 +1 @@ +SSL_CTX_set_mode.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_msg_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_msg_callback.3 new file mode 120000 index 00000000..ab5e2db6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_msg_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_msg_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_msg_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_msg_callback_arg.3 new file mode 120000 index 00000000..ab5e2db6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_msg_callback_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_msg_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_num_tickets.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_num_tickets.3 new file mode 120000 index 00000000..7e122209 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_num_tickets.3 @@ -0,0 +1 @@ +SSL_CTX_set_num_tickets.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_options.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_options.3 new file mode 120000 index 00000000..ae626a40 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_options.3 @@ -0,0 +1 @@ +SSL_CTX_set_options.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_post_handshake_auth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_post_handshake_auth.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_post_handshake_auth.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_client_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_client_callback.3 new file mode 120000 index 00000000..9a1d58bb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_client_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_find_session_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_find_session_callback.3 new file mode 120000 index 00000000..7eb7f071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_find_session_callback.3 @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_server_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_server_callback.3 new file mode 120000 index 00000000..7eb7f071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_server_callback.3 @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_use_session_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_use_session_callback.3 new file mode 120000 index 00000000..9a1d58bb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_psk_use_session_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_psk_client_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_quiet_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_quiet_shutdown.3 new file mode 120000 index 00000000..ea530590 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_quiet_shutdown.3 @@ -0,0 +1 @@ +SSL_CTX_set_quiet_shutdown.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_read_ahead.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_read_ahead.3 new file mode 120000 index 00000000..5a79fd46 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_read_ahead.3 @@ -0,0 +1 @@ +SSL_CTX_set_read_ahead.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_record_padding_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_record_padding_callback.3 new file mode 120000 index 00000000..c7bb1184 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_record_padding_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_record_padding_callback_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_record_padding_callback_arg.3 new file mode 120000 index 00000000..c7bb1184 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_record_padding_callback_arg.3 @@ -0,0 +1 @@ +SSL_CTX_set_record_padding_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_recv_max_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_recv_max_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_recv_max_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_rfd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_rfd.3 new file mode 120000 index 00000000..c359dcae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_rfd.3 @@ -0,0 +1 @@ +SSL_set_fd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_security_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_security_callback.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_security_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_security_level.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_security_level.3 new file mode 120000 index 00000000..81271f00 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_security_level.3 @@ -0,0 +1 @@ +SSL_CTX_set_security_level.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_session.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_session.3 index 0eaa2f30..0d43b29f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_session.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_session.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SET_SESSION 3" -.TH SSL_SET_SESSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SET_SESSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_session_id_context.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_session_id_context.3 new file mode 120000 index 00000000..314f2e32 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_session_id_context.3 @@ -0,0 +1 @@ +SSL_CTX_set_session_id_context.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_shutdown.3 index 46ad0f20..cf71d057 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_shutdown.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_shutdown.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SET_SHUTDOWN 3" -.TH SSL_SET_SHUTDOWN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SET_SHUTDOWN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -156,7 +156,7 @@ SSL_set_shutdown, SSL_get_shutdown \- manipulate shutdown state of an SSL connec \&\fBSSL_get_shutdown()\fR returns the shutdown mode of \fBssl\fR. .SH "NOTES" .IX Header "NOTES" -The shutdown state of an ssl connection is a bitmask of: +The shutdown state of an ssl connection is a bit mask of: .IP "0" 4 No shutdown setting, yet. .IP "\s-1SSL_SENT_SHUTDOWN\s0" 4 @@ -196,7 +196,7 @@ for setting \s-1SSL_SENT_SHUTDOWN\s0 the application must however still call \&\fBSSL_clear\fR\|(3), \fBSSL_free\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_split_send_fragment.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_split_send_fragment.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_split_send_fragment.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ssl_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ssl_method.3 new file mode 120000 index 00000000..1ab4e232 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_ssl_method.3 @@ -0,0 +1 @@ +SSL_CTX_set_ssl_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_time.3 new file mode 120000 index 00000000..713bceab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_time.3 @@ -0,0 +1 @@ +SSL_SESSION_get_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_timeout.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_timeout.3 new file mode 120000 index 00000000..713bceab --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_timeout.3 @@ -0,0 +1 @@ +SSL_SESSION_get_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_host_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_host_name.3 new file mode 120000 index 00000000..17429fd0 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_host_name.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_servername_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_max_fragment_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_max_fragment_length.3 new file mode 120000 index 00000000..b7d62a1a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_max_fragment_length.3 @@ -0,0 +1 @@ +SSL_CTX_set_split_send_fragment.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_status_ocsp_resp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_status_ocsp_resp.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_status_ocsp_resp.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_status_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_status_type.3 new file mode 120000 index 00000000..a7877fdc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_status_type.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_status_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_use_srtp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_use_srtp.3 new file mode 120000 index 00000000..43504552 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tlsext_use_srtp.3 @@ -0,0 +1 @@ +SSL_CTX_set_tlsext_use_srtp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tmp_dh.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tmp_dh.3 new file mode 120000 index 00000000..cb6c5eaa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tmp_dh.3 @@ -0,0 +1 @@ +SSL_CTX_set_tmp_dh_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tmp_dh_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tmp_dh_callback.3 new file mode 120000 index 00000000..cb6c5eaa --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_tmp_dh_callback.3 @@ -0,0 +1 @@ +SSL_CTX_set_tmp_dh_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify_depth.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify_depth.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify_result.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify_result.3 index 516c7df2..84a64816 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify_result.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_verify_result.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SET_VERIFY_RESULT 3" -.TH SSL_SET_VERIFY_RESULT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SET_VERIFY_RESULT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_wfd.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_wfd.3 new file mode 120000 index 00000000..c359dcae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_set_wfd.3 @@ -0,0 +1 @@ +SSL_set_fd.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_shutdown.3 index c2f127eb..c356d544 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_shutdown.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_shutdown.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_SHUTDOWN 3" -.TH SSL_SHUTDOWN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_SHUTDOWN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -228,13 +228,13 @@ The behaviour of \fBSSL_shutdown()\fR additionally depends on the underlying \s- If the underlying \s-1BIO\s0 is \fBblocking\fR, \fBSSL_shutdown()\fR will only return once the handshake step has been finished or an error occurred. .PP -If the underlying \s-1BIO\s0 is \fBnon-blocking\fR, \fBSSL_shutdown()\fR will also return +If the underlying \s-1BIO\s0 is \fBnonblocking\fR, \fBSSL_shutdown()\fR will also return when the underlying \s-1BIO\s0 could not satisfy the needs of \fBSSL_shutdown()\fR to continue the handshake. In this case a call to \fBSSL_get_error()\fR with the return value of \fBSSL_shutdown()\fR will yield \fB\s-1SSL_ERROR_WANT_READ\s0\fR or \&\fB\s-1SSL_ERROR_WANT_WRITE\s0\fR. The calling process then must repeat the call after taking appropriate action to satisfy the needs of \fBSSL_shutdown()\fR. -The action depends on the underlying \s-1BIO.\s0 When using a non-blocking socket, +The action depends on the underlying \s-1BIO.\s0 When using a nonblocking socket, nothing is to be done, but \fBselect()\fR can be used to check for the required condition. When using a buffering \s-1BIO,\s0 like a \s-1BIO\s0 pair, data must be written into or retrieved out of the \s-1BIO\s0 before being able to continue. @@ -249,6 +249,16 @@ state but not actually send the close_notify alert messages, see \fBSSL_CTX_set_quiet_shutdown\fR\|(3). When \*(L"quiet shutdown\*(R" is enabled, \fBSSL_shutdown()\fR will always succeed and return 1. +Note that this is not standard compliant behaviour. +It should only be done when the peer has a way to make sure all +data has been received and doesn't wait for the close_notify alert +message, otherwise an unexpected \s-1EOF\s0 will be reported. +.PP +There are implementations that do not send the required close_notify alert. +If there is a need to communicate with such an implementation, and it's clear +that all data has been received, do not wait for the peer's close_notify alert. +Waiting for the close_notify alert when the peer just closes the connection will +result in an error being generated. .SH "RETURN VALUES" .IX Header "RETURN VALUES" The following return values can occur: @@ -256,8 +266,10 @@ The following return values can occur: The shutdown is not yet finished: the close_notify was sent but the peer did not send it back yet. Call \fBSSL_read()\fR to do a bidirectional shutdown. -The output of \fBSSL_get_error\fR\|(3) may be misleading, as an -erroneous \s-1SSL_ERROR_SYSCALL\s0 may be flagged even though no error occurred. +.Sp +Unlike most other function, returning 0 does not indicate an error. +\&\fBSSL_get_error\fR\|(3) should not get called, it may misleadingly +indicate an error even though no error occurred. .IP "1" 4 .IX Item "1" The shutdown was successfully completed. The close_notify alert was sent @@ -266,7 +278,7 @@ and the peer's close_notify alert was received. .IX Item "<0" The shutdown was not successful. Call \fBSSL_get_error\fR\|(3) with the return value \fBret\fR to find out the reason. -It can occur if an action is needed to continue the operation for non-blocking +It can occur if an action is needed to continue the operation for nonblocking BIOs. .Sp It can also occur when not all data was read using \fBSSL_read()\fR. @@ -279,7 +291,7 @@ It can also occur when not all data was read using \fBSSL_read()\fR. \&\fBssl\fR\|(7), \fBbio\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_state_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_state_string.3 index a1e19c1b..cf027e33 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_state_string.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_state_string.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_STATE_STRING 3" -.TH SSL_STATE_STRING 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_STATE_STRING 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -162,11 +162,11 @@ maintained. Querying the state information is not very informative before or when a connection has been established. It however can be of significant interest during the handshake. .PP -When using non-blocking sockets, the function call performing the handshake +When using nonblocking sockets, the function call performing the handshake may return with \s-1SSL_ERROR_WANT_READ\s0 or \s-1SSL_ERROR_WANT_WRITE\s0 condition, so that SSL_state_string[_long]() may be called. .PP -For both blocking or non-blocking sockets, the details state information +For both blocking or nonblocking sockets, the details state information can be used within the info_callback function set with the \&\fBSSL_set_info_callback()\fR call. .SH "RETURN VALUES" @@ -177,7 +177,7 @@ Detailed description of possible states to be included later. \&\fBssl\fR\|(7), \fBSSL_CTX_set_info_callback\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_state_string_long.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_state_string_long.3 new file mode 120000 index 00000000..be292b56 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_state_string_long.3 @@ -0,0 +1 @@ +SSL_state_string.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_stateless.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_stateless.3 new file mode 120000 index 00000000..108642fc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_stateless.3 @@ -0,0 +1 @@ +DTLSv1_listen.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_up_ref.3 new file mode 120000 index 00000000..eb3189a2 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_up_ref.3 @@ -0,0 +1 @@ +SSL_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey_ASN1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey_ASN1.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey_ASN1.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_PrivateKey_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey_ASN1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey_ASN1.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey_ASN1.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_RSAPrivateKey_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_cert_and_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_cert_and_key.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_cert_and_key.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_ASN1.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_ASN1.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_ASN1.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_chain_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_chain_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_chain_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_file.3 new file mode 120000 index 00000000..5ec6592e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_certificate_file.3 @@ -0,0 +1 @@ +SSL_CTX_use_certificate.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_psk_identity_hint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_psk_identity_hint.3 new file mode 120000 index 00000000..7eb7f071 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_use_psk_identity_hint.3 @@ -0,0 +1 @@ +SSL_CTX_use_psk_identity_hint.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_verify_cb.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_verify_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_verify_client_post_handshake.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_verify_client_post_handshake.3 new file mode 120000 index 00000000..bf64a6ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_verify_client_post_handshake.3 @@ -0,0 +1 @@ +SSL_CTX_set_verify.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_version.3 new file mode 120000 index 00000000..2da60dae --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_version.3 @@ -0,0 +1 @@ +SSL_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_waiting_for_async.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_waiting_for_async.3 new file mode 120000 index 00000000..40f98ff8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_waiting_for_async.3 @@ -0,0 +1 @@ +SSL_get_all_async_fds.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want.3 index 5a8d917f..2c25a5ff 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_WANT 3" -.TH SSL_WANT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_WANT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -167,7 +167,7 @@ return values are similar to that of \fBSSL_get_error\fR\|(3). Unlike \fBSSL_get_error\fR\|(3), which also evaluates the error queue, the results are obtained by examining an internal state flag only. The information must therefore only be used for normal operation under -non-blocking I/O. Error conditions are not handled and must be treated +nonblocking I/O. Error conditions are not handled and must be treated using \fBSSL_get_error\fR\|(3). .PP The result returned by \fBSSL_want()\fR should always be consistent with @@ -225,7 +225,7 @@ The \fBSSL_want_client_hello_cb()\fR function and the \s-1SSL_CLIENT_HELLO_CB\s0 were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_async.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_async.3 new file mode 120000 index 00000000..94d7d6ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_async.3 @@ -0,0 +1 @@ +SSL_want.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_async_job.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_async_job.3 new file mode 120000 index 00000000..94d7d6ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_async_job.3 @@ -0,0 +1 @@ +SSL_want.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_client_hello_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_client_hello_cb.3 new file mode 120000 index 00000000..94d7d6ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_client_hello_cb.3 @@ -0,0 +1 @@ +SSL_want.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_nothing.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_nothing.3 new file mode 120000 index 00000000..94d7d6ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_nothing.3 @@ -0,0 +1 @@ +SSL_want.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_read.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_read.3 new file mode 120000 index 00000000..94d7d6ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_read.3 @@ -0,0 +1 @@ +SSL_want.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_write.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_write.3 new file mode 120000 index 00000000..94d7d6ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_write.3 @@ -0,0 +1 @@ +SSL_want.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_x509_lookup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_x509_lookup.3 new file mode 120000 index 00000000..94d7d6ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_want_x509_lookup.3 @@ -0,0 +1 @@ +SSL_want.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write.3 index a2b8b73e..7f7d6c84 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL_WRITE 3" -.TH SSL_WRITE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL_WRITE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -172,7 +172,7 @@ before the first call to a write function. If the underlying \s-1BIO\s0 is \fBblocking\fR, the write functions will only return, once the write operation has been finished or an error occurred. .PP -If the underlying \s-1BIO\s0 is \fBnon-blocking\fR the write functions will also return +If the underlying \s-1BIO\s0 is \fBnonblocking\fR the write functions will also return when the underlying \s-1BIO\s0 could not satisfy the needs of the function to continue the operation. In this case a call to \fBSSL_get_error\fR\|(3) with the return value of the write function will yield \fB\s-1SSL_ERROR_WANT_READ\s0\fR @@ -180,7 +180,7 @@ or \fB\s-1SSL_ERROR_WANT_WRITE\s0\fR. As at any time a re-negotiation is possibl call to a write function can also cause read operations! The calling process then must repeat the call after taking appropriate action to satisfy the needs of the write function. The action depends on the underlying \s-1BIO.\s0 When using a -non-blocking socket, nothing is to be done, but \fBselect()\fR can be used to check +nonblocking socket, nothing is to be done, but \fBselect()\fR can be used to check for the required condition. When using a buffering \s-1BIO,\s0 like a \s-1BIO\s0 pair, data must be written into or retrieved out of the \s-1BIO\s0 before being able to continue. .PP @@ -243,7 +243,7 @@ You should instead call \fBSSL_get_error()\fR to find out if it's retryable. The \fBSSL_write_ex()\fR function was added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write_early_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write_early_data.3 new file mode 120000 index 00000000..f582a21a --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write_early_data.3 @@ -0,0 +1 @@ +SSL_read_early_data.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write_ex.3 new file mode 120000 index 00000000..15b6b8fb --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSL_write_ex.3 @@ -0,0 +1 @@ +SSL_write.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv23_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SSLv3_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNETID_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNETID_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNETID_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNETID_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNETID_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNETID_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNET_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNET_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNET_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNET_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNET_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/SXNET_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_FEATURE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_FEATURE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_FEATURE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_FEATURE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_FEATURE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_FEATURE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLS_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_1_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_2_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_client_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_client_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_client_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_server_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_server_method.3 new file mode 120000 index 00000000..e78df756 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TLSv1_server_method.3 @@ -0,0 +1 @@ +SSL_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_ACCURACY_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_MSG_IMPRINT_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_REQ_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_RESP_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_STATUS_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/TS_TST_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_METHOD.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_METHOD.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_METHOD.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_OpenSSL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_OpenSSL.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_OpenSSL.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_STRING.3 index e6d0ab48..671aae9d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_STRING.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_STRING.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UI_STRING 3" -.TH UI_STRING 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH UI_STRING 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_read_pw.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_read_pw.3 index 5a35dcff..9919c363 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_read_pw.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_read_pw.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UI_UTIL_READ_PW 3" -.TH UI_UTIL_READ_PW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH UI_UTIL_READ_PW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -157,7 +157,7 @@ UI_UTIL_read_pw_string, UI_UTIL_read_pw, UI_UTIL_wrap_read_pem_callback \- user prompt, and stores it in \fBbuf\fR. The maximum allowed size is given with \fBlength\fR, including the terminating \s-1NUL\s0 byte. -If \fBverify\fR is non-zero, the password will be verified as well. +If \fBverify\fR is nonzero, the password will be verified as well. .PP \&\fBUI_UTIL_read_pw()\fR does the same as \fBUI_UTIL_read_pw_string()\fR, the difference is that you can give it an external buffer \fBbuff\fR for the @@ -194,7 +194,7 @@ if an error occurred. \&\fBUI_get_default_method\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_read_pw_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_read_pw_string.3 new file mode 120000 index 00000000..ee8210e1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_read_pw_string.3 @@ -0,0 +1 @@ +UI_UTIL_read_pw.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_wrap_read_pem_callback.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_wrap_read_pem_callback.3 new file mode 120000 index 00000000..ee8210e1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_UTIL_wrap_read_pem_callback.3 @@ -0,0 +1 @@ +UI_UTIL_read_pw.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_error_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_error_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_error_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_info_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_info_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_info_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_input_boolean.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_input_boolean.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_input_boolean.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_input_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_input_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_input_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_user_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_user_data.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_user_data.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_verify_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_verify_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_add_verify_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_construct_prompt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_construct_prompt.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_construct_prompt.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_create_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_create_method.3 index b5a6a043..ec026fa3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_create_method.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_create_method.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UI_CREATE_METHOD 3" -.TH UI_CREATE_METHOD 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH UI_CREATE_METHOD 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -179,7 +179,7 @@ UI_METHOD, UI_create_method, UI_destroy_method, UI_method_set_opener, UI_method_ .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -A method contains a few functions that implement the low level of the +A method contains a few functions that implement the low-level of the User Interface. These functions are: .IP "an opener" 4 @@ -311,7 +311,7 @@ The \fBUI_method_set_data_duplicator()\fR, \fBUI_method_get_data_duplicator()\fR and \fBUI_method_get_data_destructor()\fR functions were added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_ctrl.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_ctrl.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_destroy_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_destroy_method.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_destroy_method.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_error_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_error_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_error_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_info_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_info_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_info_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_input_boolean.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_input_boolean.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_input_boolean.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_input_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_input_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_input_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_user_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_user_data.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_user_data.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_verify_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_verify_string.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_dup_verify_string.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_free.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_free.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_action_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_action_string.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_action_string.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_output_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_output_string.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_output_string.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_result.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_result.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_result.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_result_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_result_string.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_result_string.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_test_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_test_string.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_test_string.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_user_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_user_data.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get0_user_data.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_default_method.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_default_method.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_input_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_input_flags.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_input_flags.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_method.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_method.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_length.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_length.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_maxsize.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_maxsize.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_maxsize.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_minsize.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_minsize.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_minsize.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_string_length.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_string_length.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_result_string_length.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_string_type.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_string_type.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_get_string_type.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_closer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_closer.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_closer.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_data_destructor.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_data_destructor.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_data_destructor.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_data_duplicator.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_data_duplicator.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_data_duplicator.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_ex_data.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_ex_data.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_flusher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_flusher.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_flusher.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_opener.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_opener.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_opener.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_prompt_constructor.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_prompt_constructor.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_prompt_constructor.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_reader.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_reader.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_reader.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_writer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_writer.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_get_writer.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_closer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_closer.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_closer.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_data_duplicator.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_data_duplicator.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_data_duplicator.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_ex_data.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_ex_data.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_flusher.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_flusher.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_flusher.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_opener.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_opener.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_opener.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_prompt_constructor.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_prompt_constructor.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_prompt_constructor.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_reader.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_reader.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_reader.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_writer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_writer.3 new file mode 120000 index 00000000..60f1a11b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_method_set_writer.3 @@ -0,0 +1 @@ +UI_create_method.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_new.3 index 923d1523..5e227b47 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UI_NEW 3" -.TH UI_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH UI_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -281,7 +281,7 @@ of all strings. a prompt from two pieces of information: an description and a name. The default constructor (if there is none provided by the method used) creates a string "Enter \fIdescription\fR for \fIname\fR:\*(L". With the -description \*(R"pass phrase\*(L" and the file name \*(R"foo.key\*(L", that becomes +description \*(R"pass phrase\*(L" and the filename \*(R"foo.key\*(L", that becomes \&\*(R"Enter pass phrase for foo.key:". Other methods may create whatever string and may include encodings that will be processed by the other method functions. @@ -368,7 +368,7 @@ respectively. The \fBUI_dup_user_data()\fR function was added in OpenSSL 1.1.1. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2001\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_new_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_new_method.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_new_method.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_null.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_null.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_null.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_process.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_process.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_process.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_default_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_default_method.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_default_method.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_method.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_method.3 new file mode 120000 index 00000000..07f38f79 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_method.3 @@ -0,0 +1 @@ +UI_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_result.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_result.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_result.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_result_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_result_ex.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_set_result_ex.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_string_types.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_string_types.3 new file mode 120000 index 00000000..3a63a390 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/UI_string_types.3 @@ -0,0 +1 @@ +UI_STRING.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/USERNOTICE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/USERNOTICE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/USERNOTICE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/USERNOTICE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/USERNOTICE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/USERNOTICE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_EXT_d2i.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_EXT_d2i.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_EXT_d2i.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_EXT_i2d.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_EXT_i2d.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_EXT_i2d.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_add1_i2d.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_add1_i2d.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_add1_i2d.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_get_d2i.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_get_d2i.3 index 3180bf51..159e055c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_get_d2i.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509V3_get_d2i.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509V3_GET_D2I 3" -.TH X509V3_GET_D2I 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509V3_GET_D2I 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -210,7 +210,7 @@ of a certificate a \s-1CRL\s0 or a \s-1CRL\s0 entry respectively. .SH "NOTES" .IX Header "NOTES" In almost all cases an extension can occur at most once and multiple -occurrences is an error. Therefore the \fBidx\fR parameter is usually \fB\s-1NULL\s0\fR. +occurrences is an error. Therefore, the \fBidx\fR parameter is usually \fB\s-1NULL\s0\fR. .PP The \fBflags\fR parameter may be one of the following values. .PP @@ -367,7 +367,7 @@ failure. \&\fBX509_verify_cert\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_cmp.3 new file mode 120000 index 00000000..5c5088a1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_cmp.3 @@ -0,0 +1 @@ +X509_ALGOR_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_copy.3 new file mode 120000 index 00000000..5c5088a1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_copy.3 @@ -0,0 +1 @@ +X509_ALGOR_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_dup.3 index d4088eee..76d662fe 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_dup.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_dup.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "X509_ALGOR_DUP 3" -.TH X509_ALGOR_DUP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_ALGOR_DUP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -X509_ALGOR_dup, X509_ALGOR_set0, X509_ALGOR_get0, X509_ALGOR_set_md, X509_ALGOR_cmp \- AlgorithmIdentifier functions +X509_ALGOR_dup, X509_ALGOR_set0, X509_ALGOR_get0, X509_ALGOR_set_md, X509_ALGOR_cmp, X509_ALGOR_copy \- AlgorithmIdentifier functions .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -151,6 +151,7 @@ X509_ALGOR_dup, X509_ALGOR_set0, X509_ALGOR_get0, X509_ALGOR_set_md, X509_ALGOR_ \& const void **ppval, const X509_ALGOR *alg); \& void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md); \& int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b); +\& int X509_ALGOR_copy(X509_ALGOR *dest, const X509_ALGOR *src); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" @@ -171,21 +172,27 @@ and \fB*ppval\fR from the \fBAlgorithmIdentifier\fR \fBalg\fR. values for the message digest \fBmd\fR. .PP \&\fBX509_ALGOR_cmp()\fR compares \fBa\fR and \fBb\fR and returns 0 if they have identical -encodings and non-zero otherwise. +encodings and nonzero otherwise. +.PP +\&\fBX509_ALGOR_copy()\fR copies the source values into the dest structs; making +a duplicate of each (and free any thing pointed to from within *dest). .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBX509_ALGOR_dup()\fR returns a valid \fBX509_ALGOR\fR structure or \s-1NULL\s0 if an error occurred. .PP -\&\fBX509_ALGOR_set0()\fR returns 1 on success or 0 on error. +\&\fBX509_ALGOR_set0()\fR and \fBX509_ALGOR_copy()\fR return 1 on success or 0 on error. .PP \&\fBX509_ALGOR_get0()\fR and \fBX509_ALGOR_set_md()\fR return no values. .PP \&\fBX509_ALGOR_cmp()\fR returns 0 if the two parameters have identical encodings and -non-zero otherwise. +nonzero otherwise. +.SH "HISTORY" +.IX Header "HISTORY" +The \fBX509_ALGOR_copy()\fR was added in 1.1.1e. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2002\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2002\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_get0.3 new file mode 120000 index 00000000..5c5088a1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_get0.3 @@ -0,0 +1 @@ +X509_ALGOR_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_set0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_set0.3 new file mode 120000 index 00000000..5c5088a1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_set0.3 @@ -0,0 +1 @@ +X509_ALGOR_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_set_md.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_set_md.3 new file mode 120000 index 00000000..5c5088a1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ALGOR_set_md.3 @@ -0,0 +1 @@ +X509_ALGOR_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_ATTRIBUTE_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CERT_AUX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CERT_AUX_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CERT_AUX_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CERT_AUX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CERT_AUX_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CERT_AUX_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CINF_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CINF_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CINF_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CINF_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CINF_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CINF_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add0_revoked.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add0_revoked.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add0_revoked.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add1_ext_i2d.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add1_ext_i2d.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add1_ext_i2d.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_add_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_cmp.3 new file mode 120000 index 00000000..1e056adf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_cmp.3 @@ -0,0 +1 @@ +X509_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_delete_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_delete_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_delete_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_digest.3 new file mode 120000 index 00000000..f86b06de --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_digest.3 @@ -0,0 +1 @@ +X509_digest.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_by_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_by_cert.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_by_cert.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_by_serial.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_by_serial.3 index 43535225..f6ed91bb 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_by_serial.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_by_serial.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_CRL_GET0_BY_SERIAL 3" -.TH X509_CRL_GET0_BY_SERIAL 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CRL_GET0_BY_SERIAL 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_extensions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_extensions.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_extensions.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_lastUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_lastUpdate.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_lastUpdate.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_nextUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_nextUpdate.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_nextUpdate.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_signature.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get0_signature.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_REVOKED.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_REVOKED.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_REVOKED.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_NID.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_NID.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_OBJ.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_OBJ.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_critical.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_critical.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_by_critical.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_count.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_count.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_d2i.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_d2i.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_ext_d2i.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_issuer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_issuer.3 new file mode 120000 index 00000000..a721d5bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_issuer.3 @@ -0,0 +1 @@ +X509_get_subject_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_signature_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_signature_nid.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_signature_nid.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_version.3 new file mode 120000 index 00000000..2ff85950 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_get_version.3 @@ -0,0 +1 @@ +X509_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_match.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_match.3 new file mode 120000 index 00000000..1e056adf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_match.3 @@ -0,0 +1 @@ +X509_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set1_lastUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set1_lastUpdate.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set1_lastUpdate.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set1_nextUpdate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set1_nextUpdate.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set1_nextUpdate.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set_issuer_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set_issuer_name.3 new file mode 120000 index 00000000..a721d5bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set_issuer_name.3 @@ -0,0 +1 @@ +X509_get_subject_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set_version.3 new file mode 120000 index 00000000..2ff85950 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_set_version.3 @@ -0,0 +1 @@ +X509_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sign.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sign.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sign_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sign_ctx.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sign_ctx.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sort.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sort.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_sort.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_verify.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_CRL_verify.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_create_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_create_by_NID.3 new file mode 120000 index 00000000..33f53e90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_create_by_NID.3 @@ -0,0 +1 @@ +X509_EXTENSION_set_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_create_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_create_by_OBJ.3 new file mode 120000 index 00000000..33f53e90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_create_by_OBJ.3 @@ -0,0 +1 @@ +X509_EXTENSION_set_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_critical.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_critical.3 new file mode 120000 index 00000000..33f53e90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_critical.3 @@ -0,0 +1 @@ +X509_EXTENSION_set_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_data.3 new file mode 120000 index 00000000..33f53e90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_data.3 @@ -0,0 +1 @@ +X509_EXTENSION_set_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_object.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_object.3 new file mode 120000 index 00000000..33f53e90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_get_object.3 @@ -0,0 +1 @@ +X509_EXTENSION_set_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_critical.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_critical.3 new file mode 120000 index 00000000..33f53e90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_critical.3 @@ -0,0 +1 @@ +X509_EXTENSION_set_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_data.3 new file mode 120000 index 00000000..33f53e90 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_data.3 @@ -0,0 +1 @@ +X509_EXTENSION_set_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_object.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_object.3 index 83464846..717c48d1 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_object.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_EXTENSION_set_object.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_EXTENSION_SET_OBJECT 3" -.TH X509_EXTENSION_SET_OBJECT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_EXTENSION_SET_OBJECT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP.3 index 31d81b2f..94a07c9a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_LOOKUP 3" -.TH X509_LOOKUP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_LOOKUP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_METHOD.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_METHOD.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_METHOD.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_TYPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_TYPE.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_TYPE.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_add_dir.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_add_dir.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_add_dir.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_alias.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_alias.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_alias.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_fingerprint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_fingerprint.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_fingerprint.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_issuer_serial.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_issuer_serial.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_issuer_serial.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_subject.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_subject.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_by_subject.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_ctrl.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_ctrl.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_ctrl_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_ctrl_fn.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_ctrl_fn.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_file.3 new file mode 120000 index 00000000..e4f81423 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_file.3 @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_free.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_free.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_alias_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_alias_fn.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_alias_fn.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_fingerprint_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_fingerprint_fn.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_fingerprint_fn.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_issuer_serial_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_issuer_serial_fn.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_issuer_serial_fn.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_subject_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_subject_fn.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_by_subject_fn.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_method_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_method_data.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_method_data.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_store.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_store.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_get_store.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_hash_dir.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_hash_dir.3 index 8ca6fa90..9e166ae0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_hash_dir.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_hash_dir.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_LOOKUP_HASH_DIR 3" -.TH X509_LOOKUP_HASH_DIR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_LOOKUP_HASH_DIR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -210,7 +210,7 @@ upon each lookup, so that newer CRLs are as soon as they appear in the directory. .PP The directory should contain one certificate or \s-1CRL\s0 per file in \s-1PEM\s0 format, -with a file name of the form \fIhash\fR.\fIN\fR for a certificate, or +with a filename of the form \fIhash\fR.\fIN\fR for a certificate, or \&\fIhash\fR.\fBr\fR\fIN\fR for a \s-1CRL.\s0 The \fIhash\fR is the value returned by the \fBX509_NAME_hash\fR\|(3) function applied to the subject name for certificates or issuer name for CRLs. @@ -256,7 +256,7 @@ the number of loaded objects or 0 on error. \&\fBX509_LOOKUP_meth_new\fR\|(3), .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_init.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_init.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_load_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_load_file.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_load_file.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_free.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_free.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_ctrl.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_ctrl.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_free.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_free.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_alias.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_alias.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_alias.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_fingerprint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_fingerprint.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_fingerprint.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_issuer_serial.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_issuer_serial.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_issuer_serial.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_subject.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_subject.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_get_by_subject.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_init.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_init.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_new_item.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_new_item.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_new_item.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_shutdown.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_get_shutdown.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_new.3 index ffef831f..c19ceb92 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_LOOKUP_METH_NEW 3" -.TH X509_LOOKUP_METH_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_LOOKUP_METH_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -271,7 +271,7 @@ Implementations must add objects they find to the \fBX509_STORE\fR object using \fBX509_STORE_add_cert()\fR or \fBX509_STORE_add_crl()\fR. This increments its reference count. However, the \fBX509_STORE_CTX_get_by_subject()\fR function also increases the reference count which leads to one too -many references being held. Therefore applications should +many references being held. Therefore, applications should additionally call \fBX509_free()\fR or \fBX509_CRL_free()\fR to decrement the reference count again. .PP diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_ctrl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_ctrl.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_ctrl.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_free.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_free.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_alias.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_alias.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_alias.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_fingerprint.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_fingerprint.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_fingerprint.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_issuer_serial.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_issuer_serial.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_issuer_serial.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_subject.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_subject.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_get_by_subject.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_init.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_init.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_new_item.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_new_item.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_new_item.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_shutdown.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_meth_set_shutdown.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_new.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_new.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_set_method_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_set_method_data.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_set_method_data.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_shutdown.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_shutdown.3 new file mode 120000 index 00000000..c5b01273 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_LOOKUP_shutdown.3 @@ -0,0 +1 @@ +X509_LOOKUP.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_NID.3 new file mode 120000 index 00000000..fd520133 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_NID.3 @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_OBJ.3 new file mode 120000 index 00000000..fd520133 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_OBJ.3 @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_txt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_txt.3 new file mode 120000 index 00000000..fd520133 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_create_by_txt.3 @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_get_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_get_data.3 new file mode 120000 index 00000000..fd520133 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_get_data.3 @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_get_object.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_get_object.3 index 68955b3b..988ee49e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_get_object.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_get_object.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_NAME_ENTRY_GET_OBJECT 3" -.TH X509_NAME_ENTRY_GET_OBJECT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_NAME_ENTRY_GET_OBJECT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_set_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_set_data.3 new file mode 120000 index 00000000..fd520133 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_set_data.3 @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_set_object.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_set_object.3 new file mode 120000 index 00000000..fd520133 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_ENTRY_set_object.3 @@ -0,0 +1 @@ +X509_NAME_ENTRY_get_object.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry.3 new file mode 120000 index 00000000..d7c55ebc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry.3 @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_NID.3 new file mode 120000 index 00000000..d7c55ebc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_NID.3 @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_OBJ.3 new file mode 120000 index 00000000..d7c55ebc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_OBJ.3 @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_txt.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_txt.3 index 8719140d..605d7bc3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_txt.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_add_entry_by_txt.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_NAME_ADD_ENTRY_BY_TXT 3" -.TH X509_NAME_ADD_ENTRY_BY_TXT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_NAME_ADD_ENTRY_BY_TXT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_cmp.3 new file mode 120000 index 00000000..1e056adf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_cmp.3 @@ -0,0 +1 @@ +X509_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_delete_entry.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_delete_entry.3 new file mode 120000 index 00000000..d7c55ebc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_delete_entry.3 @@ -0,0 +1 @@ +X509_NAME_add_entry_by_txt.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_digest.3 new file mode 120000 index 00000000..f86b06de --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_digest.3 @@ -0,0 +1 @@ +X509_digest.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_entry_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_entry_count.3 new file mode 120000 index 00000000..828b477f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_entry_count.3 @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get0_der.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get0_der.3 index 153d392b..fdb97809 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get0_der.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get0_der.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_NAME_GET0_DER 3" -.TH X509_NAME_GET0_DER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_NAME_GET0_DER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_entry.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_entry.3 new file mode 120000 index 00000000..828b477f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_entry.3 @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_index_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_index_by_NID.3 index 158153a4..8089afff 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_index_by_NID.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_index_by_NID.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_NAME_GET_INDEX_BY_NID 3" -.TH X509_NAME_GET_INDEX_BY_NID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_NAME_GET_INDEX_BY_NID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_index_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_index_by_OBJ.3 new file mode 120000 index 00000000..828b477f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_index_by_OBJ.3 @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_text_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_text_by_NID.3 new file mode 120000 index 00000000..828b477f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_text_by_NID.3 @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_text_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_text_by_OBJ.3 new file mode 120000 index 00000000..828b477f --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_get_text_by_OBJ.3 @@ -0,0 +1 @@ +X509_NAME_get_index_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_oneline.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_oneline.3 new file mode 120000 index 00000000..6f48604d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_oneline.3 @@ -0,0 +1 @@ +X509_NAME_print_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print.3 new file mode 120000 index 00000000..6f48604d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print.3 @@ -0,0 +1 @@ +X509_NAME_print_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print_ex.3 index e4b8884c..8ff0668e 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print_ex.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print_ex.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_NAME_PRINT_EX 3" -.TH X509_NAME_PRINT_EX 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_NAME_PRINT_EX 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print_ex_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print_ex_fp.3 new file mode 120000 index 00000000..6f48604d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_NAME_print_ex_fp.3 @@ -0,0 +1 @@ +X509_NAME_print_ex.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_OBJECT_set1_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_OBJECT_set1_X509.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_OBJECT_set1_X509.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_OBJECT_set1_X509_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_OBJECT_set1_X509_CRL.3 new file mode 120000 index 00000000..9e8d0de1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_OBJECT_set1_X509_CRL.3 @@ -0,0 +1 @@ +X509_LOOKUP_meth_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_free.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_free.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get0.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get0.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get0_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get0_param.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_get0_param.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_new.3 index bff3d52d..31423a0b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_PUBKEY_NEW 3" -.TH X509_PUBKEY_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_PUBKEY_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_set.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_set.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_set0_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_set0_param.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_PUBKEY_set0_param.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_INFO_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_INFO_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_INFO_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_INFO_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_INFO_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_INFO_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_check_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_check_private_key.3 new file mode 120000 index 00000000..9853848e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_check_private_key.3 @@ -0,0 +1 @@ +X509_check_private_key.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_digest.3 new file mode 120000 index 00000000..f86b06de --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_digest.3 @@ -0,0 +1 @@ +X509_digest.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get0_pubkey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get0_pubkey.3 new file mode 120000 index 00000000..b9665481 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get0_pubkey.3 @@ -0,0 +1 @@ +X509_get_pubkey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get0_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get0_signature.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get0_signature.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_X509_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_X509_PUBKEY.3 new file mode 120000 index 00000000..b9665481 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_X509_PUBKEY.3 @@ -0,0 +1 @@ +X509_get_pubkey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_pubkey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_pubkey.3 new file mode 120000 index 00000000..b9665481 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_pubkey.3 @@ -0,0 +1 @@ +X509_get_pubkey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_signature_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_signature_nid.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_signature_nid.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_subject_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_subject_name.3 new file mode 120000 index 00000000..a721d5bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_subject_name.3 @@ -0,0 +1 @@ +X509_get_subject_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_version.3 new file mode 120000 index 00000000..2ff85950 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_get_version.3 @@ -0,0 +1 @@ +X509_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set0_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set0_signature.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set0_signature.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set1_signature_algo.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set1_signature_algo.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set1_signature_algo.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_pubkey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_pubkey.3 new file mode 120000 index 00000000..b9665481 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_pubkey.3 @@ -0,0 +1 @@ +X509_get_pubkey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_subject_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_subject_name.3 new file mode 120000 index 00000000..a721d5bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_subject_name.3 @@ -0,0 +1 @@ +X509_get_subject_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_version.3 new file mode 120000 index 00000000..2ff85950 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_set_version.3 @@ -0,0 +1 @@ +X509_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_sign.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_sign.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_sign_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_sign_ctx.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_sign_ctx.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_verify.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REQ_verify.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_add1_ext_i2d.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_add1_ext_i2d.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_add1_ext_i2d.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_add_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_add_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_add_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_delete_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_delete_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_delete_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_dup.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_dup.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_extensions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_extensions.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_extensions.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_revocationDate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_revocationDate.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_revocationDate.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_serialNumber.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_serialNumber.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get0_serialNumber.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_NID.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_NID.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_OBJ.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_OBJ.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_critical.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_critical.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_by_critical.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_count.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_count.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_d2i.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_d2i.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_get_ext_d2i.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_set_revocationDate.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_set_revocationDate.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_set_revocationDate.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_set_serialNumber.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_set_serialNumber.3 new file mode 120000 index 00000000..cf787f20 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_REVOKED_set_serialNumber.3 @@ -0,0 +1 @@ +X509_CRL_get0_by_serial.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_INFO_get.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_INFO_get.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_INFO_get.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_INFO_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_INFO_set.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_INFO_set.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_get0.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_get0.3 index b65a7e0d..19e9e188 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_get0.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_get0.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_SIG_GET0 3" -.TH X509_SIG_GET0 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_SIG_GET0 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_getm.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_getm.3 new file mode 120000 index 00000000..041fc74d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_getm.3 @@ -0,0 +1 @@ +X509_SIG_get0.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_SIG_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cert_crl_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cert_crl_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cert_crl_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_crl_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_crl_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_crl_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_issued_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_issued_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_issued_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_policy_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_policy_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_policy_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_revocation_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_revocation_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_check_revocation_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cleanup.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cleanup.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cleanup_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cleanup_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_cleanup_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_free.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_free.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_cert.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_cert.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_chain.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_chain.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_param.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_param.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_untrusted.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_untrusted.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get0_untrusted.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get1_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get1_chain.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get1_chain.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_cert_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_cert_crl.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_cert_crl.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_crl.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_crl.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_issued.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_issued.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_issued.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_policy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_policy.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_policy.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_revocation.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_revocation.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_check_revocation.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_cleanup.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_cleanup.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_crl_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_crl_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_crl_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_current_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_current_cert.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_current_cert.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_error.3 index 763684bd..895978db 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_error.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_error.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_STORE_CTX_GET_ERROR 3" -.TH X509_STORE_CTX_GET_ERROR 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_STORE_CTX_GET_ERROR 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -170,7 +170,7 @@ it might be used in a verification callback to set an error based on additional checks. .PP \&\fBX509_STORE_CTX_get_error_depth()\fR returns the \fBdepth\fR of the error. This is a -non-negative integer representing where in the certificate chain the error +nonnegative integer representing where in the certificate chain the error occurred. If it is zero it occurred in the end entity certificate, one if it is the certificate which signed the end entity certificate and so on. .PP @@ -212,7 +212,7 @@ verification error \fBn\fR. .IX Header "RETURN VALUES" \&\fBX509_STORE_CTX_get_error()\fR returns \fBX509_V_OK\fR or an error code. .PP -\&\fBX509_STORE_CTX_get_error_depth()\fR returns a non-negative error depth. +\&\fBX509_STORE_CTX_get_error_depth()\fR returns a nonnegative error depth. .PP \&\fBX509_STORE_CTX_get_current_cert()\fR returns the certificate which caused the error or \fB\s-1NULL\s0\fR if no certificate is relevant to the error. @@ -408,7 +408,7 @@ thread safe but will never happen unless an invalid code is passed. \&\fBX509_free\fR\|(3). .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2009\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2009\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_error_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_error_depth.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_error_depth.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_get_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_get_crl.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_get_crl.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_get_issuer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_get_issuer.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_get_issuer.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_issuer_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_issuer_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_issuer_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_lookup_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_lookup_certs.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_lookup_certs.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_lookup_crls.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_lookup_crls.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_lookup_crls.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_num_untrusted.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_num_untrusted.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_num_untrusted.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_verify.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_verify.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_verify_cb.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_get_verify_cb.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_init.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_init.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_init.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_lookup_certs_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_lookup_certs_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_lookup_certs_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_lookup_crls_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_lookup_crls_fn.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_lookup_crls_fn.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_new.3 index 5d5a0b1c..ebb161c2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_new.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "X509_STORE_CTX_NEW 3" -.TH X509_STORE_CTX_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_STORE_CTX_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -X509_STORE_CTX_new, X509_STORE_CTX_cleanup, X509_STORE_CTX_free, X509_STORE_CTX_init, X509_STORE_CTX_set0_trusted_stack, X509_STORE_CTX_set_cert, X509_STORE_CTX_set0_crls, X509_STORE_CTX_get0_chain, X509_STORE_CTX_set0_verified_chain, X509_STORE_CTX_get0_param, X509_STORE_CTX_set0_param, X509_STORE_CTX_get0_untrusted, X509_STORE_CTX_set0_untrusted, X509_STORE_CTX_get_num_untrusted, X509_STORE_CTX_set_default, X509_STORE_CTX_set_verify, X509_STORE_CTX_verify_fn \&\- X509_STORE_CTX initialisation +X509_STORE_CTX_new, X509_STORE_CTX_cleanup, X509_STORE_CTX_free, X509_STORE_CTX_init, X509_STORE_CTX_set0_trusted_stack, X509_STORE_CTX_set_cert, X509_STORE_CTX_set0_crls, X509_STORE_CTX_get0_chain, X509_STORE_CTX_set0_verified_chain, X509_STORE_CTX_get0_param, X509_STORE_CTX_set0_param, X509_STORE_CTX_get0_untrusted, X509_STORE_CTX_set0_untrusted, X509_STORE_CTX_get_num_untrusted, X509_STORE_CTX_set_default, X509_STORE_CTX_set_verify, X509_STORE_CTX_verify_fn, X509_STORE_CTX_set_purpose, X509_STORE_CTX_set_trust, X509_STORE_CTX_purpose_inherit \&\- X509_STORE_CTX initialisation .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -170,6 +170,11 @@ X509_STORE_CTX_new, X509_STORE_CTX_cleanup, X509_STORE_CTX_free, X509_STORE_CTX_ \& \& typedef int (*X509_STORE_CTX_verify_fn)(X509_STORE_CTX *); \& void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx, X509_STORE_CTX_verify_fn verify); +\& +\& int X509_STORE_CTX_set_purpose(X509_STORE_CTX *ctx, int purpose); +\& int X509_STORE_CTX_set_trust(X509_STORE_CTX *ctx, int trust); +\& int X509_STORE_CTX_purpose_inherit(X509_STORE_CTX *ctx, int def_purpose, +\& int purpose, int trust); .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" @@ -179,7 +184,7 @@ by \fBX509_verify_cert()\fR. \&\fBX509_STORE_CTX_new()\fR returns a newly initialised \fBX509_STORE_CTX\fR structure. .PP \&\fBX509_STORE_CTX_cleanup()\fR internally cleans up an \fBX509_STORE_CTX\fR structure. -The context can then be reused with an new call to \fBX509_STORE_CTX_init()\fR. +The context can then be reused with a new call to \fBX509_STORE_CTX_init()\fR. .PP \&\fBX509_STORE_CTX_free()\fR completely frees up \fBctx\fR. After this call \fBctx\fR is no longer valid. @@ -207,7 +212,7 @@ instead of using an \fBX509_STORE\fR. by \fBctx\fR to be \fBchain\fR. Ownership of the chain is transferred to \fBctx\fR and should not be free'd by the caller. -\&\fBX509_STORE_CTX_get0_chain()\fR returns a the internal pointer used by the +\&\fBX509_STORE_CTX_get0_chain()\fR returns the internal pointer used by the \&\fBctx\fR that contains the validated chain. .PP \&\fBX509_STORE_CTX_set0_crls()\fR sets a set of CRLs to use to aid certificate @@ -248,6 +253,69 @@ following signature: .PP This function should receive the current X509_STORE_CTX as a parameter and return 1 on success or 0 on failure. +.PP +X509 certificates may contain information about what purposes keys contained +within them can be used for. For example \*(L"\s-1TLS WWW\s0 Server Authentication\*(R" or +\&\*(L"Email Protection\*(R". This \*(L"key usage\*(R" information is held internally to the +certificate itself. In addition the trust store containing trusted certificates +can declare what purposes we trust different certificates for. This \*(L"trust\*(R" +information is not held within the certificate itself but is \*(L"meta\*(R" information +held alongside it. This \*(L"meta\*(R" information is associated with the certificate +after it is issued and could be determined by a system administrator. For +example a certificate might declare that it is suitable for use for both +\&\*(L"\s-1TLS WWW\s0 Server Authentication\*(R" and \*(L"\s-1TLS\s0 Client Authentication\*(R", but a system +administrator might only trust it for the former. An X.509 certificate extension +exists that can record extended key usage information to supplement the purpose +information described above. This extended mechanism is arbitrarily extensible +and not well suited for a generic library \s-1API\s0; applications that need to +validate extended key usage information in certifiates will need to define a +custom \*(L"purpose\*(R" (see below) or supply a nondefault verification callback +(\fBX509_STORE_set_verify_cb_func\fR\|(3)). +.PP +\&\fBX509_STORE_CTX_set_purpose()\fR sets the purpose for the target certificate being +verified in the \fIctx\fR. Built-in available values for the \fIpurpose\fR argument +are \fBX509_PURPOSE_SSL_CLIENT\fR, \fBX509_PURPOSE_SSL_SERVER\fR, +\&\fBX509_PURPOSE_NS_SSL_SERVER\fR, \fBX509_PURPOSE_SMIME_SIGN\fR, +\&\fBX509_PURPOSE_SMIME_ENCRYPT\fR, \fBX509_PURPOSE_CRL_SIGN\fR, \fBX509_PURPOSE_ANY\fR, +\&\fBX509_PURPOSE_OCSP_HELPER\fR and \fBX509_PURPOSE_TIMESTAMP_SIGN\fR. It is also +possible to create a custom purpose value. Setting a purpose will ensure that +the key usage declared within certificates in the chain being verified is +consistent with that purpose as well as, potentially, other checks. Every +purpose also has an associated default trust value which will also be set at the +same time. During verification this trust setting will be verified to check it +is consistent with the trust set by the system administrator for certificates in +the chain. +.PP +\&\fBX509_STORE_CTX_set_trust()\fR sets the trust value for the target certificate +being verified in the \fIctx\fR. Built-in available values for the \fItrust\fR +argument are \fBX509_TRUST_COMPAT\fR, \fBX509_TRUST_SSL_CLIENT\fR, +\&\fBX509_TRUST_SSL_SERVER\fR, \fBX509_TRUST_EMAIL\fR, \fBX509_TRUST_OBJECT_SIGN\fR, +\&\fBX509_TRUST_OCSP_SIGN\fR, \fBX509_TRUST_OCSP_REQUEST\fR and \fBX509_TRUST_TSA\fR. It is +also possible to create a custom trust value. Since \fBX509_STORE_CTX_set_purpose()\fR +also sets the trust value it is normally sufficient to only call that function. +If both are called then \fBX509_STORE_CTX_set_trust()\fR should be called after +\&\fBX509_STORE_CTX_set_purpose()\fR since the trust setting of the last call will be +used. +.PP +It should not normally be necessary for end user applications to call +\&\fBX509_STORE_CTX_purpose_inherit()\fR directly. Typically applications should call +\&\fBX509_STORE_CTX_set_purpose()\fR or \fBX509_STORE_CTX_set_trust()\fR instead. Using this +function it is possible to set the purpose and trust values for the \fIctx\fR at +the same time. +Both \fIctx\fR and its internal verification parameter pointer must not be \s-1NULL.\s0 +The \fIdef_purpose\fR and \fIpurpose\fR arguments can have the same +purpose values as described for \fBX509_STORE_CTX_set_purpose()\fR above. The \fItrust\fR +argument can have the same trust values as described in +\&\fBX509_STORE_CTX_set_trust()\fR above. Any of the \fIdef_purpose\fR, \fIpurpose\fR or +\&\fItrust\fR values may also have the value 0 to indicate that the supplied +parameter should be ignored. After calling this function the purpose to be used +for verification is set from the \fIpurpose\fR argument unless the purpose was +already set in \fIctx\fR before, and the trust is set from the \fItrust\fR argument +unless the trust was already set in \fIctx\fR before. +If \fItrust\fR is 0 then the trust value will be set from +the default trust value for \fIpurpose\fR. If the default trust value for the +purpose is \fIX509_TRUST_DEFAULT\fR and \fItrust\fR is 0 then the default trust value +associated with the \fIdef_purpose\fR value is used for the trust setting instead. .SH "NOTES" .IX Header "NOTES" The certificates and CRLs in a store are used internally and should \fBnot\fR @@ -259,7 +327,7 @@ be freed up until after the associated \fBX509_STORE_CTX\fR is freed. Copies should be made or reference counts increased instead. .SH "RETURN VALUES" .IX Header "RETURN VALUES" -\&\fBX509_STORE_CTX_new()\fR returns an newly allocates context or \fB\s-1NULL\s0\fR is an +\&\fBX509_STORE_CTX_new()\fR returns a newly allocated context or \fB\s-1NULL\s0\fR if an error occurred. .PP \&\fBX509_STORE_CTX_init()\fR returns 1 for success or 0 if an error occurred. @@ -287,7 +355,7 @@ The \fBX509_STORE_CTX_set0_crls()\fR function was added in OpenSSL 1.0.0. The \fBX509_STORE_CTX_get_num_untrusted()\fR function was added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2009\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2009\-2022 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_purpose_inherit.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_purpose_inherit.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_purpose_inherit.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_crls.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_crls.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_crls.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_param.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_param.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_trusted_stack.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_trusted_stack.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_trusted_stack.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_untrusted.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_untrusted.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_untrusted.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_verified_chain.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_verified_chain.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set0_verified_chain.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_cert.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_cert.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_current_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_current_cert.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_current_cert.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_default.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_default.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_default.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_error.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_error.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_error_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_error_depth.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_error_depth.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_purpose.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_purpose.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_purpose.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_trust.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_trust.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_trust.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_verify.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_verify.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_verify_cb.3 index 1312285f..3e540e34 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_verify_cb.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_set_verify_cb.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_STORE_CTX_SET_VERIFY_CB 3" -.TH X509_STORE_CTX_SET_VERIFY_CB 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_STORE_CTX_SET_VERIFY_CB 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -172,7 +172,7 @@ The verification callback can be used to customise the operation of certificate verification, either by overriding error conditions or logging errors for debugging purposes. .PP -However a verification callback is \fBnot\fR essential and the default operation +However, a verification callback is \fBnot\fR essential and the default operation is often sufficient. .PP The \fBok\fR parameter to the callback indicates the value the callback should @@ -326,7 +326,7 @@ The and \fBX509_STORE_CTX_get_cleanup()\fR functions were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2009\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2009\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_verify_cb.3 new file mode 120000 index 00000000..424d9940 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_verify_cb.3 @@ -0,0 +1 @@ +X509_STORE_CTX_set_verify_cb.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_verify_fn.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_verify_fn.3 new file mode 120000 index 00000000..ed2760ef --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_CTX_verify_fn.3 @@ -0,0 +1 @@ +X509_STORE_CTX_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_cert.3 index e787ec45..56c2b014 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_cert.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_cert.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_STORE_ADD_CERT 3" -.TH X509_STORE_ADD_CERT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_STORE_ADD_CERT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_crl.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_crl.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_lookup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_lookup.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_add_lookup.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_free.3 new file mode 120000 index 00000000..18165321 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_free.3 @@ -0,0 +1 @@ +X509_STORE_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get0_objects.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get0_objects.3 new file mode 120000 index 00000000..48789263 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get0_objects.3 @@ -0,0 +1 @@ +X509_STORE_get0_param.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get0_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get0_param.3 index 325d199a..f7b62325 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get0_param.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get0_param.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_STORE_GET0_PARAM 3" -.TH X509_STORE_GET0_PARAM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_STORE_GET0_PARAM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_cert_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_cert_crl.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_cert_crl.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_crl.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_crl.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_issued.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_issued.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_issued.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_policy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_policy.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_policy.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_revocation.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_revocation.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_check_revocation.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_cleanup.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_cleanup.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_get_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_get_crl.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_get_crl.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_get_issuer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_get_issuer.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_get_issuer.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_lookup_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_lookup_certs.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_lookup_certs.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_lookup_crls.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_lookup_crls.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_lookup_crls.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_verify_cb.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_get_verify_cb.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_load_locations.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_load_locations.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_load_locations.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_lock.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_lock.3 new file mode 120000 index 00000000..18165321 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_lock.3 @@ -0,0 +1 @@ +X509_STORE_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_new.3 index 7f7fcfa2..3ab1f200 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_STORE_NEW 3" -.TH X509_STORE_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_STORE_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set1_param.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set1_param.3 new file mode 120000 index 00000000..48789263 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set1_param.3 @@ -0,0 +1 @@ +X509_STORE_get0_param.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_cert_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_cert_crl.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_cert_crl.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_crl.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_crl.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_issued.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_issued.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_issued.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_policy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_policy.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_policy.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_revocation.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_revocation.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_check_revocation.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_cleanup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_cleanup.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_cleanup.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_default_paths.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_default_paths.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_default_paths.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_depth.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_depth.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_flags.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_flags.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_get_crl.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_get_crl.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_get_crl.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_get_issuer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_get_issuer.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_get_issuer.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_certs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_certs.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_certs.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_crls.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_crls.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_crls.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_crls_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_crls_cb.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_lookup_crls_cb.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_purpose.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_purpose.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_purpose.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_trust.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_trust.3 new file mode 120000 index 00000000..9fad21b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_trust.3 @@ -0,0 +1 @@ +X509_STORE_add_cert.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_cb.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_cb.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_cb_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_cb_func.3 index 15ccb7c6..ad86a1ce 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_cb_func.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_cb_func.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_STORE_SET_VERIFY_CB_FUNC 3" -.TH X509_STORE_SET_VERIFY_CB_FUNC 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_STORE_SET_VERIFY_CB_FUNC 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -243,7 +243,7 @@ This function must return 0 on failure and 1 on success. function will be used instead.\fR .PP \&\fBX509_STORE_set_check_issued()\fR sets the function to check that a given -certificate \fBx\fR is issued with the issuer certificate \fBissuer\fR. +certificate \fBx\fR is issued by the issuer certificate \fBissuer\fR. This function must return 0 on failure (among others if \fBx\fR hasn't been issued with \fBissuer\fR) and 1 on success. \&\fIIf no function to get the issuer is provided, the internal default @@ -356,7 +356,7 @@ The functions were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2009\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2009\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_func.3 new file mode 120000 index 00000000..ef0a178b --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_set_verify_func.3 @@ -0,0 +1 @@ +X509_STORE_set_verify_cb_func.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_unlock.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_unlock.3 new file mode 120000 index 00000000..18165321 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_unlock.3 @@ -0,0 +1 @@ +X509_STORE_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_up_ref.3 new file mode 120000 index 00000000..18165321 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_STORE_up_ref.3 @@ -0,0 +1 @@ +X509_STORE_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VAL_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VAL_free.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VAL_free.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VAL_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VAL_new.3 new file mode 120000 index 00000000..f326c682 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VAL_new.3 @@ -0,0 +1 @@ +X509_dup.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_add0_policy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_add0_policy.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_add0_policy.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_add1_host.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_add1_host.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_add1_host.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_clear_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_clear_flags.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_clear_flags.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get0_peername.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get0_peername.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get0_peername.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_auth_level.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_auth_level.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_auth_level.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_depth.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_depth.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_flags.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_flags.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_hostflags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_hostflags.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_hostflags.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_inh_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_inh_flags.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_inh_flags.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_time.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_get_time.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_email.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_email.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_email.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_host.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_host.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_host.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_ip.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_ip.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_ip.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_ip_asc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_ip_asc.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_ip_asc.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_policies.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_policies.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set1_policies.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_auth_level.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_auth_level.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_auth_level.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_depth.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_depth.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_depth.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_flags.3 index edd57c00..3ab5e025 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_flags.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_flags.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_VERIFY_PARAM_SET_FLAGS 3" -.TH X509_VERIFY_PARAM_SET_FLAGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_VERIFY_PARAM_SET_FLAGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -252,7 +252,7 @@ interoperable, though it will, for example, reject \s-1MD5\s0 signatures or \s-1 shorter than 1024 bits. .PP \&\fBX509_VERIFY_PARAM_set1_host()\fR sets the expected \s-1DNS\s0 hostname to -\&\fBname\fR clearing any previously specified host name or names. If +\&\fBname\fR clearing any previously specified hostname or names. If \&\fBname\fR is \s-1NULL,\s0 or empty the list of hostnames is cleared, and name checks are not performed on the peer certificate. If \fBname\fR is NUL-terminated, \fBnamelen\fR may be zero, otherwise \fBnamelen\fR @@ -385,12 +385,15 @@ they are enabled. If \fBX509_V_FLAG_USE_DELTAS\fR is set delta CRLs (if present) are used to determine certificate status. If not set deltas are ignored. .PP -\&\fBX509_V_FLAG_CHECK_SS_SIGNATURE\fR enables checking of the root \s-1CA\s0 self signed -certificate signature. By default this check is disabled because it doesn't +\&\fBX509_V_FLAG_CHECK_SS_SIGNATURE\fR requests checking the signature of +the last certificate in a chain if the certificate is supposedly self-signed. +This is prohibited and will result in an error if it is a non-conforming \s-1CA\s0 +certificate with key usage restrictions not including the keyCertSign bit. +By default this check is disabled because it doesn't add any additional security but in some cases applications might want to -check the signature anyway. A side effect of not checking the root \s-1CA\s0 -signature is that disabled or unsupported message digests on the root \s-1CA\s0 -are not treated as fatal errors. +check the signature anyway. A side effect of not checking the self-signature +of such a certificate is that disabled or unsupported message digests used for +the signature are not treated as fatal errors. .PP When \fBX509_V_FLAG_TRUSTED_FIRST\fR is set, construction of the certificate chain in \fBX509_verify_cert\fR\|(3) will search the trust store for issuer certificates @@ -492,7 +495,7 @@ and has no effect. The \fBX509_VERIFY_PARAM_get_hostflags()\fR function was added in OpenSSL 1.1.0i. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2009\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2009\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_hostflags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_hostflags.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_hostflags.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_inh_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_inh_flags.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_inh_flags.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_purpose.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_purpose.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_purpose.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_time.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_time.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_trust.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_trust.3 new file mode 120000 index 00000000..38076e66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_VERIFY_PARAM_set_trust.3 @@ -0,0 +1 @@ +X509_VERIFY_PARAM_set_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_add1_ext_i2d.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_add1_ext_i2d.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_add1_ext_i2d.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_add_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_add_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_add_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_chain_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_chain_up_ref.3 new file mode 120000 index 00000000..ca54419d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_chain_up_ref.3 @@ -0,0 +1 @@ +X509_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ca.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ca.3 index 548e6e93..b19193e8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ca.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ca.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_CHECK_CA 3" -.TH X509_CHECK_CA 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CHECK_CA 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -160,7 +160,7 @@ Function return 0, if it is not \s-1CA\s0 certificate, 1 if it is proper X509v3 \&\fBbasicConstraints\fR, and 5 if it has outdated Netscape Certificate Type extension telling that it is \s-1CA\s0 certificate. .PP -Actually, any non-zero value means that this certificate could have been +Actually, any nonzero value means that this certificate could have been used to sign other certificates. .SH "SEE ALSO" .IX Header "SEE ALSO" @@ -169,7 +169,7 @@ used to sign other certificates. \&\fBX509_check_purpose\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_email.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_email.3 new file mode 120000 index 00000000..e988d7bd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_email.3 @@ -0,0 +1 @@ +X509_check_host.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_host.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_host.3 index c708f84c..2fae0b18 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_host.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_host.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_CHECK_HOST 3" -.TH X509_CHECK_HOST 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CHECK_HOST 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -156,13 +156,13 @@ X509_check_host, X509_check_email, X509_check_ip, X509_check_ip_asc \- X.509 cer .SH "DESCRIPTION" .IX Header "DESCRIPTION" The certificate matching functions are used to check whether a -certificate matches a given host name, email address, or \s-1IP\s0 address. +certificate matches a given hostname, email address, or \s-1IP\s0 address. The validity of the certificate and its trust level has to be checked by other means. .PP \&\fBX509_check_host()\fR checks if the certificate Subject Alternative -Name (\s-1SAN\s0) or Subject CommonName (\s-1CN\s0) matches the specified host -name, which must be encoded in the preferred name syntax described +Name (\s-1SAN\s0) or Subject CommonName (\s-1CN\s0) matches the specified hostname, +which must be encoded in the preferred name syntax described in section 3.5 of \s-1RFC 1034.\s0 By default, wildcards are supported and they match only in the left-most label; but they may match part of that label with an explicit prefix or suffix. For example, @@ -174,7 +174,7 @@ Per section 6.4.2 of \s-1RFC 6125,\s0 \fBname\fR values representing internation domain names must be given in A\-label form. The \fBnamelen\fR argument must be the number of characters in the name string or zero in which case the length is calculated with strlen(\fBname\fR). When \fBname\fR starts -with a dot (e.g \*(L".example.com\*(R"), it will be matched by a certificate +with a dot (e.g. \*(L".example.com\*(R"), it will be matched by a certificate valid for any sub-domain of \fBname\fR, (see also \&\fBX509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS\fR below). .PP @@ -280,7 +280,7 @@ and the internal checks will be suppressed as appropriate when These functions were added in OpenSSL 1.0.2. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2012\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2012\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ip.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ip.3 new file mode 120000 index 00000000..e988d7bd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ip.3 @@ -0,0 +1 @@ +X509_check_host.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ip_asc.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ip_asc.3 new file mode 120000 index 00000000..e988d7bd --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_ip_asc.3 @@ -0,0 +1 @@ +X509_check_host.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_issued.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_issued.3 index a3f58496..4f8fa0d6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_issued.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_issued.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "X509_CHECK_ISSUED 3" -.TH X509_CHECK_ISSUED 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CHECK_ISSUED 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -X509_check_issued \- checks if certificate is issued by another certificate +X509_check_issued \- checks if certificate is apparently issued by another certificate .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -149,13 +149,14 @@ X509_check_issued \- checks if certificate is issued by another certificate .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" -This function checks if certificate \fIsubject\fR was issued using \s-1CA\s0 -certificate \fIissuer\fR. This function takes into account not only -matching of issuer field of \fIsubject\fR with subject field of \fIissuer\fR, -but also compares \fBauthorityKeyIdentifier\fR extension of \fIsubject\fR with -\&\fBsubjectKeyIdentifier\fR of \fIissuer\fR if \fBauthorityKeyIdentifier\fR -present in the \fIsubject\fR certificate and checks \fBkeyUsage\fR field of -\&\fIissuer\fR. +\&\fBX509_check_issued()\fR checks if certificate \fIsubject\fR was apparently issued +using (\s-1CA\s0) certificate \fIissuer\fR. This function takes into account not only +matching of the issuer field of \fIsubject\fR with the subject field of \fIissuer\fR, +but also compares all sub-fields of the \fBauthorityKeyIdentifier\fR extension of +\&\fIsubject\fR, as far as present, with the respective \fBsubjectKeyIdentifier\fR, +serial number, and issuer fields of \fIissuer\fR, as far as present. It also checks +if the \fBkeyUsage\fR field (if present) of \fIissuer\fR allows certificate signing. +It does not check the certificate signature. .SH "RETURN VALUES" .IX Header "RETURN VALUES" Function return \fBX509_V_OK\fR if certificate \fIsubject\fR is issued by @@ -167,7 +168,7 @@ Function return \fBX509_V_OK\fR if certificate \fIsubject\fR is issued by \&\fBverify\fR\|(1) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_private_key.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_private_key.3 index fe51bda3..5ae6e58f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_private_key.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_private_key.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_CHECK_PRIVATE_KEY 3" -.TH X509_CHECK_PRIVATE_KEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CHECK_PRIVATE_KEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_purpose.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_purpose.3 index 754ab172..8a611630 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_purpose.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_check_purpose.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_CHECK_PURPOSE 3" -.TH X509_CHECK_PURPOSE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CHECK_PURPOSE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -170,8 +170,8 @@ Below are the potential \s-1ID\s0's that can be checked: .SH "RETURN VALUES" .IX Header "RETURN VALUES" For non-CA checks -.IP "\-1 an error condition has occured" 4 -.IX Item "-1 an error condition has occured" +.IP "\-1 an error condition has occurred" 4 +.IX Item "-1 an error condition has occurred" .PD 0 .IP " 1 if the certificate was created to perform the purpose represented by \fIid\fR" 4 .IX Item " 1 if the certificate was created to perform the purpose represented by id" @@ -180,8 +180,8 @@ For non-CA checks .PD .PP For \s-1CA\s0 checks the below integers could be returned with the following meanings: -.IP "\-1 an error condition has occured" 4 -.IX Item "-1 an error condition has occured" +.IP "\-1 an error condition has occurred" 4 +.IX Item "-1 an error condition has occurred" .PD 0 .IP " 0 not a \s-1CA\s0 or does not have the purpose represented by \fIid\fR" 4 .IX Item " 0 not a CA or does not have the purpose represented by id" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp.3 index b0dde283..ef46fdb5 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_CMP 3" -.TH X509_CMP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CMP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp_current_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp_current_time.3 new file mode 120000 index 00000000..c4d0df66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp_current_time.3 @@ -0,0 +1 @@ +X509_cmp_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp_time.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp_time.3 index f9745c9c..f780ffb0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp_time.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_cmp_time.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_CMP_TIME 3" -.TH X509_CMP_TIME 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_CMP_TIME 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_delete_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_delete_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_delete_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_digest.3 index 5a5ce8a0..0c1e5c8a 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_digest.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_digest.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_DIGEST 3" -.TH X509_DIGEST 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_DIGEST 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_dup.3 index 6166bc98..8a5299a8 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_dup.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_dup.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_DUP 3" -.TH X509_DUP 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_DUP 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_free.3 new file mode 120000 index 00000000..ca54419d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_free.3 @@ -0,0 +1 @@ +X509_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_issuer.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_issuer.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_issuer.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_key_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_key_id.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_key_id.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_serial.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_serial.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_authority_serial.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_extensions.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_extensions.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_extensions.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_notAfter.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_notAfter.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_notAfter.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_notBefore.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_notBefore.3 index ed8ed2e3..96c9d6ea 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_notBefore.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_notBefore.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_GET0_NOTBEFORE 3" -.TH X509_GET0_NOTBEFORE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET0_NOTBEFORE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_pubkey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_pubkey.3 new file mode 120000 index 00000000..b9665481 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_pubkey.3 @@ -0,0 +1 @@ +X509_get_pubkey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_serialNumber.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_serialNumber.3 new file mode 120000 index 00000000..8e3e91f1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_serialNumber.3 @@ -0,0 +1 @@ +X509_get_serialNumber.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_signature.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_signature.3 index d1712b45..bebb7f0c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_signature.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_signature.3 @@ -133,13 +133,13 @@ .\" ======================================================================== .\" .IX Title "X509_GET0_SIGNATURE 3" -.TH X509_GET0_SIGNATURE 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET0_SIGNATURE 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -X509_get0_signature, X509_get_signature_nid, X509_get0_tbs_sigalg, X509_REQ_get0_signature, X509_REQ_get_signature_nid, X509_CRL_get0_signature, X509_CRL_get_signature_nid, X509_get_signature_info, X509_SIG_INFO_get, X509_SIG_INFO_set \- signature information +X509_get0_signature, X509_REQ_set0_signature, X509_REQ_set1_signature_algo, X509_get_signature_nid, X509_get0_tbs_sigalg, X509_REQ_get0_signature, X509_REQ_get_signature_nid, X509_CRL_get0_signature, X509_CRL_get_signature_nid, X509_get_signature_info, X509_SIG_INFO_get, X509_SIG_INFO_set \- signature information .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 @@ -148,6 +148,8 @@ X509_get0_signature, X509_get_signature_nid, X509_get0_tbs_sigalg, X509_REQ_get0 \& void X509_get0_signature(const ASN1_BIT_STRING **psig, \& const X509_ALGOR **palg, \& const X509 *x); +\& void X509_REQ_set0_signature(X509_REQ *req, ASN1_BIT_STRING *psig); +\& int X509_REQ_set1_signature_algo(X509_REQ *req, X509_ALGOR *palg); \& int X509_get_signature_nid(const X509 *x); \& const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x); \& @@ -175,6 +177,9 @@ X509_get0_signature, X509_get_signature_nid, X509_get0_tbs_sigalg, X509_REQ_get0 to the signature algorithm of \fBx\fR. The values returned are internal pointers which \fB\s-1MUST NOT\s0\fR be freed up after the call. .PP +\&\fBX509_set0_signature()\fR and \fBX509_REQ_set1_signature_algo()\fR are the +equivalent setters for the two values of \fBX509_get0_signature()\fR. +.PP \&\fBX509_get0_tbs_sigalg()\fR returns the signature algorithm in the signed portion of \fBx\fR. .PP @@ -219,6 +224,10 @@ key is less secure: for example a certificate signed using \s-1SHA\-512\s0 and a \&\fBX509_get_signature_info()\fR returns 1 if the signature information returned is valid or 0 if the information is not available (e.g. unknown algorithms or malformed parameters). +.PP +\&\fBX509_REQ_set1_signature_algo()\fR returns 0 on success; or 1 on an +error (e.g. null \s-1ALGO\s0 pointer). X509_REQ_set0_signature does +not return an error value. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBd2i_X509\fR\|(3), @@ -247,9 +256,12 @@ The \&\fBX509_REQ_get0_signature()\fR, \fBX509_REQ_get_signature_nid()\fR, \&\fBX509_CRL_get0_signature()\fR and \fBX509_CRL_get_signature_nid()\fR were added in OpenSSL 1.1.0. +.PP +The \fBX509_REQ_set0_signature()\fR and \fBX509_REQ_set1_signature_algo()\fR +were added in OpenSSL 1.1.1e. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_subject_key_id.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_subject_key_id.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_subject_key_id.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_tbs_sigalg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_tbs_sigalg.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_tbs_sigalg.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_uids.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_uids.3 index 07d33add..f54568ae 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_uids.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get0_uids.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_GET0_UIDS 3" -.TH X509_GET0_UIDS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET0_UIDS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_X509_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_X509_PUBKEY.3 new file mode 120000 index 00000000..b9665481 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_X509_PUBKEY.3 @@ -0,0 +1 @@ +X509_get_pubkey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ex_new_index.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ex_new_index.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ex_new_index.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_NID.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_NID.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_OBJ.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_OBJ.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_critical.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_critical.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_by_critical.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_count.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_count.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_d2i.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_d2i.3 new file mode 120000 index 00000000..5b4a5e5e --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_ext_d2i.3 @@ -0,0 +1 @@ +X509V3_get_d2i.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_extended_key_usage.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_extended_key_usage.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_extended_key_usage.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_extension_flags.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_extension_flags.3 index de563373..ab936daf 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_extension_flags.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_extension_flags.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_GET_EXTENSION_FLAGS 3" -.TH X509_GET_EXTENSION_FLAGS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET_EXTENSION_FLAGS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -194,11 +194,15 @@ The freshest \s-1CRL\s0 extension is present in the certificate. The certificate contains an unhandled critical extension. .IP "\fB\s-1EXFLAG_INVALID\s0\fR" 4 .IX Item "EXFLAG_INVALID" -Some certificate extension values are invalid or inconsistent. The -certificate should be rejected. +Some certificate extension values are invalid or inconsistent. +The certificate should be rejected. This bit may also be raised after an out-of-memory error while processing the X509 object, so it may not be related to the processed \&\s-1ASN1\s0 object itself. +.IP "\fB\s-1EXFLAG_NO_FINGERPRINT\s0\fR" 4 +.IX Item "EXFLAG_NO_FINGERPRINT" +Failed to compute the internal \s-1SHA1\s0 hash value of the certificate. +This may be due to malloc failure or because no \s-1SHA1\s0 implementation was found. .IP "\fB\s-1EXFLAG_INVALID_POLICY\s0\fR" 4 .IX Item "EXFLAG_INVALID_POLICY" The NID_certificate_policies certificate extension is invalid or @@ -300,7 +304,7 @@ certificate is a proxy one and has a path length set, and \-1 otherwise. \&\fBX509_get_proxy_pathlen()\fR were added in OpenSSL 1.1.0. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_issuer_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_issuer_name.3 new file mode 120000 index 00000000..a721d5bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_issuer_name.3 @@ -0,0 +1 @@ +X509_get_subject_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_key_usage.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_key_usage.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_key_usage.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_pathlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_pathlen.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_pathlen.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_proxy_pathlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_proxy_pathlen.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_proxy_pathlen.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_pubkey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_pubkey.3 index 27ccbb10..aa894e76 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_pubkey.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_pubkey.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_GET_PUBKEY 3" -.TH X509_GET_PUBKEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET_PUBKEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_serialNumber.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_serialNumber.3 index 7aecb0a6..aa481c85 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_serialNumber.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_serialNumber.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_GET_SERIALNUMBER 3" -.TH X509_GET_SERIALNUMBER 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET_SERIALNUMBER 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_signature_info.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_signature_info.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_signature_info.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_signature_nid.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_signature_nid.3 new file mode 120000 index 00000000..ea667764 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_signature_nid.3 @@ -0,0 +1 @@ +X509_get0_signature.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_subject_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_subject_name.3 index 971b7b21..765024d4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_subject_name.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_subject_name.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_GET_SUBJECT_NAME 3" -.TH X509_GET_SUBJECT_NAME 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET_SUBJECT_NAME 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_version.3 index f62c7aa9..ebb2239b 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_version.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_get_version.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_GET_VERSION 3" -.TH X509_GET_VERSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_GET_VERSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_getm_notAfter.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_getm_notAfter.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_getm_notAfter.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_getm_notBefore.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_getm_notBefore.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_getm_notBefore.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_issuer_and_serial_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_issuer_and_serial_cmp.3 new file mode 120000 index 00000000..1e056adf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_issuer_and_serial_cmp.3 @@ -0,0 +1 @@ +X509_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_issuer_name_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_issuer_name_cmp.3 new file mode 120000 index 00000000..1e056adf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_issuer_name_cmp.3 @@ -0,0 +1 @@ +X509_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_cert_crl_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_cert_crl_file.3 new file mode 120000 index 00000000..e4f81423 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_cert_crl_file.3 @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_cert_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_cert_file.3 new file mode 120000 index 00000000..e4f81423 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_cert_file.3 @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_crl_file.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_crl_file.3 new file mode 120000 index 00000000..e4f81423 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_load_crl_file.3 @@ -0,0 +1 @@ +X509_LOOKUP_hash_dir.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_new.3 index ca35a8cd..6a1a2253 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_new.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_new.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_NEW 3" -.TH X509_NEW 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_NEW 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_pubkey_digest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_pubkey_digest.3 new file mode 120000 index 00000000..f86b06de --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_pubkey_digest.3 @@ -0,0 +1 @@ +X509_digest.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set1_notAfter.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set1_notAfter.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set1_notAfter.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set1_notBefore.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set1_notBefore.3 new file mode 120000 index 00000000..9e45d5ed --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set1_notBefore.3 @@ -0,0 +1 @@ +X509_get0_notBefore.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_ex_data.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_ex_data.3 new file mode 120000 index 00000000..aa4dc88d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_ex_data.3 @@ -0,0 +1 @@ +BIO_get_ex_new_index.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_issuer_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_issuer_name.3 new file mode 120000 index 00000000..a721d5bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_issuer_name.3 @@ -0,0 +1 @@ +X509_get_subject_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_proxy_flag.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_proxy_flag.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_proxy_flag.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_proxy_pathlen.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_proxy_pathlen.3 new file mode 120000 index 00000000..2fb0442c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_proxy_pathlen.3 @@ -0,0 +1 @@ +X509_get_extension_flags.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_pubkey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_pubkey.3 new file mode 120000 index 00000000..b9665481 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_pubkey.3 @@ -0,0 +1 @@ +X509_get_pubkey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_serialNumber.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_serialNumber.3 new file mode 120000 index 00000000..8e3e91f1 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_serialNumber.3 @@ -0,0 +1 @@ +X509_get_serialNumber.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_subject_name.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_subject_name.3 new file mode 120000 index 00000000..a721d5bc --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_subject_name.3 @@ -0,0 +1 @@ +X509_get_subject_name.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_version.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_version.3 new file mode 120000 index 00000000..2ff85950 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_set_version.3 @@ -0,0 +1 @@ +X509_get_version.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_sign.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_sign.3 index 3944b6fa..a554d8ed 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_sign.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_sign.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_SIGN 3" -.TH X509_SIGN 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_SIGN 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_sign_ctx.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_sign_ctx.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_sign_ctx.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_subject_name_cmp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_subject_name_cmp.3 new file mode 120000 index 00000000..1e056adf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_subject_name_cmp.3 @@ -0,0 +1 @@ +X509_cmp.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_time_adj.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_time_adj.3 new file mode 120000 index 00000000..c4d0df66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_time_adj.3 @@ -0,0 +1 @@ +X509_cmp_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_time_adj_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_time_adj_ex.3 new file mode 120000 index 00000000..c4d0df66 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_time_adj_ex.3 @@ -0,0 +1 @@ +X509_cmp_time.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_up_ref.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_up_ref.3 new file mode 120000 index 00000000..ca54419d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_up_ref.3 @@ -0,0 +1 @@ +X509_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify.3 new file mode 120000 index 00000000..0be15bd4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify.3 @@ -0,0 +1 @@ +X509_sign.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify_cert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify_cert.3 index e8df16cc..88ec4964 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify_cert.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify_cert.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509_VERIFY_CERT 3" -.TH X509_VERIFY_CERT 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509_VERIFY_CERT 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify_cert_error_string.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify_cert_error_string.3 new file mode 120000 index 00000000..7fbd299c --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509_verify_cert_error_string.3 @@ -0,0 +1 @@ +X509_STORE_CTX_get_error.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_add_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_add_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_add_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_delete_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_delete_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_delete_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_NID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_NID.3 index db05b485..558b32dd 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_NID.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_NID.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509V3_GET_EXT_BY_NID 3" -.TH X509V3_GET_EXT_BY_NID 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509V3_GET_EXT_BY_NID 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -199,7 +199,7 @@ the extension is found its index is returned otherwise \fB\-1\fR is returned. .PP \&\fBX509v3_get_ext_by_critical()\fR is similar to \fBX509v3_get_ext_by_NID()\fR except it looks for an extension of criticality \fBcrit\fR. A zero value for \fBcrit\fR -looks for a non-critical extension a non-zero value looks for a critical +looks for a non-critical extension a nonzero value looks for a critical extension. .PP \&\fBX509v3_delete_ext()\fR deletes the extension with index \fBloc\fR from \fBx\fR. The @@ -256,7 +256,7 @@ error occurs. \&\fBX509V3_get_d2i\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2015\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2015\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_OBJ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_OBJ.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_OBJ.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_critical.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_critical.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_by_critical.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_count.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_count.3 new file mode 120000 index 00000000..45af049d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/X509v3_get_ext_count.3 @@ -0,0 +1 @@ +X509v3_get_ext_by_NID.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_add_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_add_cb.3 new file mode 120000 index 00000000..7fbfc6f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_add_cb.3 @@ -0,0 +1 @@ +SSL_extension_supported.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_free_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_free_cb.3 new file mode 120000 index 00000000..7fbfc6f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_free_cb.3 @@ -0,0 +1 @@ +SSL_extension_supported.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_parse_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_parse_cb.3 new file mode 120000 index 00000000..7fbfc6f7 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/custom_ext_parse_cb.3 @@ -0,0 +1 @@ +SSL_extension_supported.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ACCESS_DESCRIPTION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ACCESS_DESCRIPTION.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ACCESS_DESCRIPTION.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ADMISSIONS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ADMISSIONS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ADMISSIONS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ADMISSION_SYNTAX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ADMISSION_SYNTAX.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ADMISSION_SYNTAX.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdOrRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdOrRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdOrRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdentifierChoice.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdentifierChoice.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdentifierChoice.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdentifiers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdentifiers.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASIdentifiers.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_BIT_STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_BIT_STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_BIT_STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_BMPSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_BMPSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_BMPSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_ENUMERATED.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_ENUMERATED.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_ENUMERATED.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_GENERALIZEDTIME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_GENERALIZEDTIME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_GENERALIZEDTIME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_GENERALSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_GENERALSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_GENERALSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_IA5STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_IA5STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_IA5STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_INTEGER.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_INTEGER.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_INTEGER.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_NULL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_NULL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_NULL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_OBJECT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_OBJECT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_OBJECT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_OCTET_STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_OCTET_STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_OCTET_STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_PRINTABLE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_PRINTABLE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_PRINTABLE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_PRINTABLESTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_PRINTABLESTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_PRINTABLESTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_SEQUENCE_ANY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_SEQUENCE_ANY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_SEQUENCE_ANY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_SET_ANY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_SET_ANY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_SET_ANY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_T61STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_T61STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_T61STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_TIME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_TIME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_TIME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_TYPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_TYPE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_TYPE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UINTEGER.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UINTEGER.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UINTEGER.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UNIVERSALSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UNIVERSALSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UNIVERSALSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UTCTIME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UTCTIME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UTCTIME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UTF8STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UTF8STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_UTF8STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_VISIBLESTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_VISIBLESTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASN1_VISIBLESTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ASRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AUTHORITY_INFO_ACCESS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AUTHORITY_INFO_ACCESS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AUTHORITY_INFO_ACCESS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AUTHORITY_KEYID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AUTHORITY_KEYID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AUTHORITY_KEYID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AutoPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AutoPrivateKey.3 new file mode 120000 index 00000000..d54aa4a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_AutoPrivateKey.3 @@ -0,0 +1 @@ +d2i_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_BASIC_CONSTRAINTS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_BASIC_CONSTRAINTS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_BASIC_CONSTRAINTS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CERTIFICATEPOLICIES.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CERTIFICATEPOLICIES.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CERTIFICATEPOLICIES.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_ContentInfo.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_ContentInfo.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_ContentInfo.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_ReceiptRequest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_ReceiptRequest.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_ReceiptRequest.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CMS_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CRL_DIST_POINTS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CRL_DIST_POINTS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_CRL_DIST_POINTS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DHparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DHparams.3 index 9638ab72..53fcb1e3 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DHparams.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DHparams.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "D2I_DHPARAMS 3" -.TH D2I_DHPARAMS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH D2I_DHPARAMS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -145,7 +145,7 @@ d2i_DHparams, i2d_DHparams \- PKCS#3 DH parameter functions .Vb 1 \& #include \& -\& DH *d2i_DHparams(DH **a, unsigned char **pp, long length); +\& DH *d2i_DHparams(DH **a, const unsigned char **pp, long length); \& int i2d_DHparams(DH *a, unsigned char **pp); .Ve .SH "DESCRIPTION" @@ -166,7 +166,7 @@ is less than or equal to 0 on error. \&\fBd2i_X509\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DHxparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DHxparams.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DHxparams.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIRECTORYSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIRECTORYSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIRECTORYSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DISPLAYTEXT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DISPLAYTEXT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DISPLAYTEXT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIST_POINT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIST_POINT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIST_POINT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIST_POINT_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIST_POINT_NAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DIST_POINT_NAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPublicKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAPublicKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_PUBKEY_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_SIG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_SIG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSA_SIG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAparams.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_DSAparams.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECDSA_SIG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECDSA_SIG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECDSA_SIG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPKParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPKParameters.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPKParameters.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECParameters.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECParameters.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ECPrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EC_PUBKEY_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EDIPARTYNAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EDIPARTYNAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EDIPARTYNAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_CERT_ID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_CERT_ID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_CERT_ID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_ISSUER_SERIAL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_ISSUER_SERIAL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_ISSUER_SERIAL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_SIGNING_CERT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_SIGNING_CERT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ESS_SIGNING_CERT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EXTENDED_KEY_USAGE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EXTENDED_KEY_USAGE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_EXTENDED_KEY_USAGE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_GENERAL_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_GENERAL_NAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_GENERAL_NAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_GENERAL_NAMES.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_GENERAL_NAMES.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_GENERAL_NAMES.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressChoice.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressChoice.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressChoice.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressFamily.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressFamily.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressFamily.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressOrRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressOrRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressOrRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_IPAddressRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ISSUING_DIST_POINT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ISSUING_DIST_POINT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_ISSUING_DIST_POINT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NAMING_AUTHORITY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NAMING_AUTHORITY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NAMING_AUTHORITY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_CERT_SEQUENCE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_CERT_SEQUENCE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_CERT_SEQUENCE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_SPKAC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_SPKAC.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_SPKAC.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_SPKI.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_SPKI.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NETSCAPE_SPKI.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NOTICEREF.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NOTICEREF.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_NOTICEREF.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_BASICRESP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_BASICRESP.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_BASICRESP.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CERTID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CERTID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CERTID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CERTSTATUS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CERTSTATUS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CERTSTATUS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CRLID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CRLID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_CRLID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_ONEREQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_ONEREQ.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_ONEREQ.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REQINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REQINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REQINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REQUEST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REQUEST.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REQUEST.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPBYTES.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPBYTES.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPBYTES.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPDATA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPDATA.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPDATA.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPONSE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPONSE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_RESPONSE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REVOKEDINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REVOKEDINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_REVOKEDINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SERVICELOC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SERVICELOC.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SERVICELOC.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SIGNATURE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SIGNATURE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SIGNATURE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SINGLERESP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SINGLERESP.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OCSP_SINGLERESP.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OTHERNAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OTHERNAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_OTHERNAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBE2PARAM.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBE2PARAM.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBE2PARAM.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBEPARAM.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBEPARAM.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBEPARAM.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBKDF2PARAM.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBKDF2PARAM.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PBKDF2PARAM.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_BAGS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_BAGS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_BAGS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_MAC_DATA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_MAC_DATA.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_MAC_DATA.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_SAFEBAG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_SAFEBAG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_SAFEBAG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS12_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_DIGEST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_DIGEST.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_DIGEST.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENCRYPT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENCRYPT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENCRYPT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENC_CONTENT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENC_CONTENT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENC_CONTENT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENVELOPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENVELOPE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ENVELOPE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ISSUER_AND_SERIAL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ISSUER_AND_SERIAL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_ISSUER_AND_SERIAL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_RECIP_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_RECIP_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_RECIP_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGNED.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGNED.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGNED.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGNER_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGNER_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGNER_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGN_ENVELOPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGN_ENVELOPE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_SIGN_ENVELOPE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS7_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8PrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8PrivateKey_bio.3 index da9f8399..a42b7879 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8PrivateKey_bio.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8PrivateKey_bio.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "D2I_PKCS8PRIVATEKEY_BIO 3" -.TH D2I_PKCS8PRIVATEKEY_BIO 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH D2I_PKCS8PRIVATEKEY_BIO 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8PrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8PrivateKey_fp.3 new file mode 120000 index 00000000..a4761762 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8PrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_PRIV_KEY_INFO_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKCS8_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKEY_USAGE_PERIOD.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKEY_USAGE_PERIOD.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PKEY_USAGE_PERIOD.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_POLICYINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_POLICYINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_POLICYINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_POLICYQUALINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_POLICYQUALINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_POLICYQUALINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROFESSION_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROFESSION_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROFESSION_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROXY_CERT_INFO_EXTENSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROXY_CERT_INFO_EXTENSION.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROXY_CERT_INFO_EXTENSION.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROXY_POLICY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROXY_POLICY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PROXY_POLICY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY_bio.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY_bio.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY_fp.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PUBKEY_fp.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey.3 index e09b748d..c79dcef0 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "D2I_PRIVATEKEY 3" -.TH D2I_PRIVATEKEY 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH D2I_PRIVATEKEY 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -175,6 +175,10 @@ defined for that key type, PKCS#8 unencrypted PrivateKeyInfo format. These functions are similar to the \fBd2i_X509()\fR functions; see \fBd2i_X509\fR\|(3). .SH "NOTES" .IX Header "NOTES" +All the functions that operate on data in memory update the data pointer \fI*pp\fR +after a successful operation, just like the other d2i and i2d functions; +see \fBd2i_X509\fR\|(3). +.PP All these functions use \s-1DER\s0 format and unencrypted keys. Applications wishing to encrypt or decrypt private keys should use other functions such as \&\fBd2i_PKCS8PrivateKey()\fR instead. @@ -201,7 +205,7 @@ by calling \fBERR_get_error\fR\|(3). \&\fBd2i_PKCS8PrivateKey_bio\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2017\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2017\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey_bio.3 new file mode 120000 index 00000000..d54aa4a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey_fp.3 new file mode 120000 index 00000000..d54aa4a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PublicKey.3 new file mode 120000 index 00000000..d54aa4a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_PublicKey.3 @@ -0,0 +1 @@ +d2i_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSAPublicKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_OAEP_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_OAEP_PARAMS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_OAEP_PARAMS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PSS_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PSS_PARAMS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PSS_PARAMS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_RSA_PUBKEY_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SCRYPT_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SCRYPT_PARAMS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SCRYPT_PARAMS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SCT_LIST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SCT_LIST.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SCT_LIST.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SSL_SESSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SSL_SESSION.3 index 4f9aab76..c0b774df 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SSL_SESSION.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SSL_SESSION.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "D2I_SSL_SESSION 3" -.TH D2I_SSL_SESSION 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH D2I_SSL_SESSION 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SXNET.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SXNET.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SXNET.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SXNETID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SXNETID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_SXNETID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_ACCURACY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_ACCURACY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_ACCURACY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_MSG_IMPRINT_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_REQ_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_RESP_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_STATUS_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_STATUS_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_STATUS_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_TS_TST_INFO_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_USERNOTICE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_USERNOTICE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_USERNOTICE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509.3 index 704c93b2..034ec6f4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509.3 @@ -133,17 +133,17 @@ .\" ======================================================================== .\" .IX Title "D2I_X509 3" -.TH D2I_X509 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH D2I_X509 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" -d2i_ACCESS_DESCRIPTION, d2i_ADMISSIONS, d2i_ADMISSION_SYNTAX, d2i_ASIdOrRange, d2i_ASIdentifierChoice, d2i_ASIdentifiers, d2i_ASN1_BIT_STRING, d2i_ASN1_BMPSTRING, d2i_ASN1_ENUMERATED, d2i_ASN1_GENERALIZEDTIME, d2i_ASN1_GENERALSTRING, d2i_ASN1_IA5STRING, d2i_ASN1_INTEGER, d2i_ASN1_NULL, d2i_ASN1_OBJECT, d2i_ASN1_OCTET_STRING, d2i_ASN1_PRINTABLE, d2i_ASN1_PRINTABLESTRING, d2i_ASN1_SEQUENCE_ANY, d2i_ASN1_SET_ANY, d2i_ASN1_T61STRING, d2i_ASN1_TIME, d2i_ASN1_TYPE, d2i_ASN1_UINTEGER, d2i_ASN1_UNIVERSALSTRING, d2i_ASN1_UTCTIME, d2i_ASN1_UTF8STRING, d2i_ASN1_VISIBLESTRING, d2i_ASRange, d2i_AUTHORITY_INFO_ACCESS, d2i_AUTHORITY_KEYID, d2i_BASIC_CONSTRAINTS, d2i_CERTIFICATEPOLICIES, d2i_CMS_ContentInfo, d2i_CMS_ReceiptRequest, d2i_CMS_bio, d2i_CRL_DIST_POINTS, d2i_DHxparams, d2i_DIRECTORYSTRING, d2i_DISPLAYTEXT, d2i_DIST_POINT, d2i_DIST_POINT_NAME, d2i_DSAPrivateKey, d2i_DSAPrivateKey_bio, d2i_DSAPrivateKey_fp, d2i_DSAPublicKey, d2i_DSA_PUBKEY, d2i_DSA_PUBKEY_bio, d2i_DSA_PUBKEY_fp, d2i_DSA_SIG, d2i_DSAparams, d2i_ECDSA_SIG, d2i_ECPKParameters, d2i_ECParameters, d2i_ECPrivateKey, d2i_ECPrivateKey_bio, d2i_ECPrivateKey_fp, d2i_EC_PUBKEY, d2i_EC_PUBKEY_bio, d2i_EC_PUBKEY_fp, d2i_EDIPARTYNAME, d2i_ESS_CERT_ID, d2i_ESS_ISSUER_SERIAL, d2i_ESS_SIGNING_CERT, d2i_EXTENDED_KEY_USAGE, d2i_GENERAL_NAME, d2i_GENERAL_NAMES, d2i_IPAddressChoice, d2i_IPAddressFamily, d2i_IPAddressOrRange, d2i_IPAddressRange, d2i_ISSUING_DIST_POINT, d2i_NAMING_AUTHORITY, d2i_NETSCAPE_CERT_SEQUENCE, d2i_NETSCAPE_SPKAC, d2i_NETSCAPE_SPKI, d2i_NOTICEREF, d2i_OCSP_BASICRESP, d2i_OCSP_CERTID, d2i_OCSP_CERTSTATUS, d2i_OCSP_CRLID, d2i_OCSP_ONEREQ, d2i_OCSP_REQINFO, d2i_OCSP_REQUEST, d2i_OCSP_RESPBYTES, d2i_OCSP_RESPDATA, d2i_OCSP_RESPID, d2i_OCSP_RESPONSE, d2i_OCSP_REVOKEDINFO, d2i_OCSP_SERVICELOC, d2i_OCSP_SIGNATURE, d2i_OCSP_SINGLERESP, d2i_OTHERNAME, d2i_PBE2PARAM, d2i_PBEPARAM, d2i_PBKDF2PARAM, d2i_PKCS12, d2i_PKCS12_BAGS, d2i_PKCS12_MAC_DATA, d2i_PKCS12_SAFEBAG, d2i_PKCS12_bio, d2i_PKCS12_fp, d2i_PKCS7, d2i_PKCS7_DIGEST, d2i_PKCS7_ENCRYPT, d2i_PKCS7_ENC_CONTENT, d2i_PKCS7_ENVELOPE, d2i_PKCS7_ISSUER_AND_SERIAL, d2i_PKCS7_RECIP_INFO, d2i_PKCS7_SIGNED, d2i_PKCS7_SIGNER_INFO, d2i_PKCS7_SIGN_ENVELOPE, d2i_PKCS7_bio, d2i_PKCS7_fp, d2i_PKCS8_PRIV_KEY_INFO, d2i_PKCS8_PRIV_KEY_INFO_bio, d2i_PKCS8_PRIV_KEY_INFO_fp, d2i_PKCS8_bio, d2i_PKCS8_fp, d2i_PKEY_USAGE_PERIOD, d2i_POLICYINFO, d2i_POLICYQUALINFO, d2i_PROFESSION_INFO, d2i_PROXY_CERT_INFO_EXTENSION, d2i_PROXY_POLICY, d2i_RSAPrivateKey, d2i_RSAPrivateKey_bio, d2i_RSAPrivateKey_fp, d2i_RSAPublicKey, d2i_RSAPublicKey_bio, d2i_RSAPublicKey_fp, d2i_RSA_OAEP_PARAMS, d2i_RSA_PSS_PARAMS, d2i_RSA_PUBKEY, d2i_RSA_PUBKEY_bio, d2i_RSA_PUBKEY_fp, d2i_SCRYPT_PARAMS, d2i_SCT_LIST, d2i_SXNET, d2i_SXNETID, d2i_TS_ACCURACY, d2i_TS_MSG_IMPRINT, d2i_TS_MSG_IMPRINT_bio, d2i_TS_MSG_IMPRINT_fp, d2i_TS_REQ, d2i_TS_REQ_bio, d2i_TS_REQ_fp, d2i_TS_RESP, d2i_TS_RESP_bio, d2i_TS_RESP_fp, d2i_TS_STATUS_INFO, d2i_TS_TST_INFO, d2i_TS_TST_INFO_bio, d2i_TS_TST_INFO_fp, d2i_USERNOTICE, d2i_X509, d2i_X509_ALGOR, d2i_X509_ALGORS, d2i_X509_ATTRIBUTE, d2i_X509_CERT_AUX, d2i_X509_CINF, d2i_X509_CRL, d2i_X509_CRL_INFO, d2i_X509_CRL_bio, d2i_X509_CRL_fp, d2i_X509_EXTENSION, d2i_X509_EXTENSIONS, d2i_X509_NAME, d2i_X509_NAME_ENTRY, d2i_X509_PUBKEY, d2i_X509_REQ, d2i_X509_REQ_INFO, d2i_X509_REQ_bio, d2i_X509_REQ_fp, d2i_X509_REVOKED, d2i_X509_SIG, d2i_X509_VAL, i2d_ACCESS_DESCRIPTION, i2d_ADMISSIONS, i2d_ADMISSION_SYNTAX, i2d_ASIdOrRange, i2d_ASIdentifierChoice, i2d_ASIdentifiers, i2d_ASN1_BIT_STRING, i2d_ASN1_BMPSTRING, i2d_ASN1_ENUMERATED, i2d_ASN1_GENERALIZEDTIME, i2d_ASN1_GENERALSTRING, i2d_ASN1_IA5STRING, i2d_ASN1_INTEGER, i2d_ASN1_NULL, i2d_ASN1_OBJECT, i2d_ASN1_OCTET_STRING, i2d_ASN1_PRINTABLE, i2d_ASN1_PRINTABLESTRING, i2d_ASN1_SEQUENCE_ANY, i2d_ASN1_SET_ANY, i2d_ASN1_T61STRING, i2d_ASN1_TIME, i2d_ASN1_TYPE, i2d_ASN1_UNIVERSALSTRING, i2d_ASN1_UTCTIME, i2d_ASN1_UTF8STRING, i2d_ASN1_VISIBLESTRING, i2d_ASN1_bio_stream, i2d_ASRange, i2d_AUTHORITY_INFO_ACCESS, i2d_AUTHORITY_KEYID, i2d_BASIC_CONSTRAINTS, i2d_CERTIFICATEPOLICIES, i2d_CMS_ContentInfo, i2d_CMS_ReceiptRequest, i2d_CMS_bio, i2d_CRL_DIST_POINTS, i2d_DHxparams, i2d_DIRECTORYSTRING, i2d_DISPLAYTEXT, i2d_DIST_POINT, i2d_DIST_POINT_NAME, i2d_DSAPrivateKey, i2d_DSAPrivateKey_bio, i2d_DSAPrivateKey_fp, i2d_DSAPublicKey, i2d_DSA_PUBKEY, i2d_DSA_PUBKEY_bio, i2d_DSA_PUBKEY_fp, i2d_DSA_SIG, i2d_DSAparams, i2d_ECDSA_SIG, i2d_ECPKParameters, i2d_ECParameters, i2d_ECPrivateKey, i2d_ECPrivateKey_bio, i2d_ECPrivateKey_fp, i2d_EC_PUBKEY, i2d_EC_PUBKEY_bio, i2d_EC_PUBKEY_fp, i2d_EDIPARTYNAME, i2d_ESS_CERT_ID, i2d_ESS_ISSUER_SERIAL, i2d_ESS_SIGNING_CERT, i2d_EXTENDED_KEY_USAGE, i2d_GENERAL_NAME, i2d_GENERAL_NAMES, i2d_IPAddressChoice, i2d_IPAddressFamily, i2d_IPAddressOrRange, i2d_IPAddressRange, i2d_ISSUING_DIST_POINT, i2d_NAMING_AUTHORITY, i2d_NETSCAPE_CERT_SEQUENCE, i2d_NETSCAPE_SPKAC, i2d_NETSCAPE_SPKI, i2d_NOTICEREF, i2d_OCSP_BASICRESP, i2d_OCSP_CERTID, i2d_OCSP_CERTSTATUS, i2d_OCSP_CRLID, i2d_OCSP_ONEREQ, i2d_OCSP_REQINFO, i2d_OCSP_REQUEST, i2d_OCSP_RESPBYTES, i2d_OCSP_RESPDATA, i2d_OCSP_RESPID, i2d_OCSP_RESPONSE, i2d_OCSP_REVOKEDINFO, i2d_OCSP_SERVICELOC, i2d_OCSP_SIGNATURE, i2d_OCSP_SINGLERESP, i2d_OTHERNAME, i2d_PBE2PARAM, i2d_PBEPARAM, i2d_PBKDF2PARAM, i2d_PKCS12, i2d_PKCS12_BAGS, i2d_PKCS12_MAC_DATA, i2d_PKCS12_SAFEBAG, i2d_PKCS12_bio, i2d_PKCS12_fp, i2d_PKCS7, i2d_PKCS7_DIGEST, i2d_PKCS7_ENCRYPT, i2d_PKCS7_ENC_CONTENT, i2d_PKCS7_ENVELOPE, i2d_PKCS7_ISSUER_AND_SERIAL, i2d_PKCS7_NDEF, i2d_PKCS7_RECIP_INFO, i2d_PKCS7_SIGNED, i2d_PKCS7_SIGNER_INFO, i2d_PKCS7_SIGN_ENVELOPE, i2d_PKCS7_bio, i2d_PKCS7_fp, i2d_PKCS8PrivateKeyInfo_bio, i2d_PKCS8PrivateKeyInfo_fp, i2d_PKCS8_PRIV_KEY_INFO, i2d_PKCS8_PRIV_KEY_INFO_bio, i2d_PKCS8_PRIV_KEY_INFO_fp, i2d_PKCS8_bio, i2d_PKCS8_fp, i2d_PKEY_USAGE_PERIOD, i2d_POLICYINFO, i2d_POLICYQUALINFO, i2d_PROFESSION_INFO, i2d_PROXY_CERT_INFO_EXTENSION, i2d_PROXY_POLICY, i2d_RSAPrivateKey, i2d_RSAPrivateKey_bio, i2d_RSAPrivateKey_fp, i2d_RSAPublicKey, i2d_RSAPublicKey_bio, i2d_RSAPublicKey_fp, i2d_RSA_OAEP_PARAMS, i2d_RSA_PSS_PARAMS, i2d_RSA_PUBKEY, i2d_RSA_PUBKEY_bio, i2d_RSA_PUBKEY_fp, i2d_SCRYPT_PARAMS, i2d_SCT_LIST, i2d_SXNET, i2d_SXNETID, i2d_TS_ACCURACY, i2d_TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT_bio, i2d_TS_MSG_IMPRINT_fp, i2d_TS_REQ, i2d_TS_REQ_bio, i2d_TS_REQ_fp, i2d_TS_RESP, i2d_TS_RESP_bio, i2d_TS_RESP_fp, i2d_TS_STATUS_INFO, i2d_TS_TST_INFO, i2d_TS_TST_INFO_bio, i2d_TS_TST_INFO_fp, i2d_USERNOTICE, i2d_X509, i2d_X509_ALGOR, i2d_X509_ALGORS, i2d_X509_ATTRIBUTE, i2d_X509_CERT_AUX, i2d_X509_CINF, i2d_X509_CRL, i2d_X509_CRL_INFO, i2d_X509_CRL_bio, i2d_X509_CRL_fp, i2d_X509_EXTENSION, i2d_X509_EXTENSIONS, i2d_X509_NAME, i2d_X509_NAME_ENTRY, i2d_X509_PUBKEY, i2d_X509_REQ, i2d_X509_REQ_INFO, i2d_X509_REQ_bio, i2d_X509_REQ_fp, i2d_X509_REVOKED, i2d_X509_SIG, i2d_X509_VAL, \&\- convert objects from/to ASN.1/DER representation +d2i_ACCESS_DESCRIPTION, d2i_ADMISSIONS, d2i_ADMISSION_SYNTAX, d2i_ASIdOrRange, d2i_ASIdentifierChoice, d2i_ASIdentifiers, d2i_ASN1_BIT_STRING, d2i_ASN1_BMPSTRING, d2i_ASN1_ENUMERATED, d2i_ASN1_GENERALIZEDTIME, d2i_ASN1_GENERALSTRING, d2i_ASN1_IA5STRING, d2i_ASN1_INTEGER, d2i_ASN1_NULL, d2i_ASN1_OBJECT, d2i_ASN1_OCTET_STRING, d2i_ASN1_PRINTABLE, d2i_ASN1_PRINTABLESTRING, d2i_ASN1_SEQUENCE_ANY, d2i_ASN1_SET_ANY, d2i_ASN1_T61STRING, d2i_ASN1_TIME, d2i_ASN1_TYPE, d2i_ASN1_UINTEGER, d2i_ASN1_UNIVERSALSTRING, d2i_ASN1_UTCTIME, d2i_ASN1_UTF8STRING, d2i_ASN1_VISIBLESTRING, d2i_ASRange, d2i_AUTHORITY_INFO_ACCESS, d2i_AUTHORITY_KEYID, d2i_BASIC_CONSTRAINTS, d2i_CERTIFICATEPOLICIES, d2i_CMS_ContentInfo, d2i_CMS_ReceiptRequest, d2i_CMS_bio, d2i_CRL_DIST_POINTS, d2i_DHxparams, d2i_DIRECTORYSTRING, d2i_DISPLAYTEXT, d2i_DIST_POINT, d2i_DIST_POINT_NAME, d2i_DSAPrivateKey, d2i_DSAPrivateKey_bio, d2i_DSAPrivateKey_fp, d2i_DSAPublicKey, d2i_DSA_PUBKEY, d2i_DSA_PUBKEY_bio, d2i_DSA_PUBKEY_fp, d2i_DSA_SIG, d2i_DSAparams, d2i_ECDSA_SIG, d2i_ECPKParameters, d2i_ECParameters, d2i_ECPrivateKey, d2i_ECPrivateKey_bio, d2i_ECPrivateKey_fp, d2i_EC_PUBKEY, d2i_EC_PUBKEY_bio, d2i_EC_PUBKEY_fp, d2i_EDIPARTYNAME, d2i_ESS_CERT_ID, d2i_ESS_ISSUER_SERIAL, d2i_ESS_SIGNING_CERT, d2i_EXTENDED_KEY_USAGE, d2i_GENERAL_NAME, d2i_GENERAL_NAMES, d2i_IPAddressChoice, d2i_IPAddressFamily, d2i_IPAddressOrRange, d2i_IPAddressRange, d2i_ISSUING_DIST_POINT, d2i_NAMING_AUTHORITY, d2i_NETSCAPE_CERT_SEQUENCE, d2i_NETSCAPE_SPKAC, d2i_NETSCAPE_SPKI, d2i_NOTICEREF, d2i_OCSP_BASICRESP, d2i_OCSP_CERTID, d2i_OCSP_CERTSTATUS, d2i_OCSP_CRLID, d2i_OCSP_ONEREQ, d2i_OCSP_REQINFO, d2i_OCSP_REQUEST, d2i_OCSP_RESPBYTES, d2i_OCSP_RESPDATA, d2i_OCSP_RESPID, d2i_OCSP_RESPONSE, d2i_OCSP_REVOKEDINFO, d2i_OCSP_SERVICELOC, d2i_OCSP_SIGNATURE, d2i_OCSP_SINGLERESP, d2i_OTHERNAME, d2i_PBE2PARAM, d2i_PBEPARAM, d2i_PBKDF2PARAM, d2i_PKCS12, d2i_PKCS12_BAGS, d2i_PKCS12_MAC_DATA, d2i_PKCS12_SAFEBAG, d2i_PKCS12_bio, d2i_PKCS12_fp, d2i_PKCS7, d2i_PKCS7_DIGEST, d2i_PKCS7_ENCRYPT, d2i_PKCS7_ENC_CONTENT, d2i_PKCS7_ENVELOPE, d2i_PKCS7_ISSUER_AND_SERIAL, d2i_PKCS7_RECIP_INFO, d2i_PKCS7_SIGNED, d2i_PKCS7_SIGNER_INFO, d2i_PKCS7_SIGN_ENVELOPE, d2i_PKCS7_bio, d2i_PKCS7_fp, d2i_PKCS8_PRIV_KEY_INFO, d2i_PKCS8_PRIV_KEY_INFO_bio, d2i_PKCS8_PRIV_KEY_INFO_fp, d2i_PKCS8_bio, d2i_PKCS8_fp, d2i_PKEY_USAGE_PERIOD, d2i_POLICYINFO, d2i_POLICYQUALINFO, d2i_PROFESSION_INFO, d2i_PROXY_CERT_INFO_EXTENSION, d2i_PROXY_POLICY, d2i_RSAPrivateKey, d2i_RSAPrivateKey_bio, d2i_RSAPrivateKey_fp, d2i_RSAPublicKey, d2i_RSAPublicKey_bio, d2i_RSAPublicKey_fp, d2i_RSA_OAEP_PARAMS, d2i_RSA_PSS_PARAMS, d2i_RSA_PUBKEY, d2i_RSA_PUBKEY_bio, d2i_RSA_PUBKEY_fp, d2i_SCRYPT_PARAMS, d2i_SCT_LIST, d2i_SXNET, d2i_SXNETID, d2i_TS_ACCURACY, d2i_TS_MSG_IMPRINT, d2i_TS_MSG_IMPRINT_bio, d2i_TS_MSG_IMPRINT_fp, d2i_TS_REQ, d2i_TS_REQ_bio, d2i_TS_REQ_fp, d2i_TS_RESP, d2i_TS_RESP_bio, d2i_TS_RESP_fp, d2i_TS_STATUS_INFO, d2i_TS_TST_INFO, d2i_TS_TST_INFO_bio, d2i_TS_TST_INFO_fp, d2i_USERNOTICE, d2i_X509, d2i_X509_bio, d2i_X509_fp, d2i_X509_ALGOR, d2i_X509_ALGORS, d2i_X509_ATTRIBUTE, d2i_X509_CERT_AUX, d2i_X509_CINF, d2i_X509_CRL, d2i_X509_CRL_INFO, d2i_X509_CRL_bio, d2i_X509_CRL_fp, d2i_X509_EXTENSION, d2i_X509_EXTENSIONS, d2i_X509_NAME, d2i_X509_NAME_ENTRY, d2i_X509_PUBKEY, d2i_X509_REQ, d2i_X509_REQ_INFO, d2i_X509_REQ_bio, d2i_X509_REQ_fp, d2i_X509_REVOKED, d2i_X509_SIG, d2i_X509_VAL, i2d_ACCESS_DESCRIPTION, i2d_ADMISSIONS, i2d_ADMISSION_SYNTAX, i2d_ASIdOrRange, i2d_ASIdentifierChoice, i2d_ASIdentifiers, i2d_ASN1_BIT_STRING, i2d_ASN1_BMPSTRING, i2d_ASN1_ENUMERATED, i2d_ASN1_GENERALIZEDTIME, i2d_ASN1_GENERALSTRING, i2d_ASN1_IA5STRING, i2d_ASN1_INTEGER, i2d_ASN1_NULL, i2d_ASN1_OBJECT, i2d_ASN1_OCTET_STRING, i2d_ASN1_PRINTABLE, i2d_ASN1_PRINTABLESTRING, i2d_ASN1_SEQUENCE_ANY, i2d_ASN1_SET_ANY, i2d_ASN1_T61STRING, i2d_ASN1_TIME, i2d_ASN1_TYPE, i2d_ASN1_UNIVERSALSTRING, i2d_ASN1_UTCTIME, i2d_ASN1_UTF8STRING, i2d_ASN1_VISIBLESTRING, i2d_ASN1_bio_stream, i2d_ASRange, i2d_AUTHORITY_INFO_ACCESS, i2d_AUTHORITY_KEYID, i2d_BASIC_CONSTRAINTS, i2d_CERTIFICATEPOLICIES, i2d_CMS_ContentInfo, i2d_CMS_ReceiptRequest, i2d_CMS_bio, i2d_CRL_DIST_POINTS, i2d_DHxparams, i2d_DIRECTORYSTRING, i2d_DISPLAYTEXT, i2d_DIST_POINT, i2d_DIST_POINT_NAME, i2d_DSAPrivateKey, i2d_DSAPrivateKey_bio, i2d_DSAPrivateKey_fp, i2d_DSAPublicKey, i2d_DSA_PUBKEY, i2d_DSA_PUBKEY_bio, i2d_DSA_PUBKEY_fp, i2d_DSA_SIG, i2d_DSAparams, i2d_ECDSA_SIG, i2d_ECPKParameters, i2d_ECParameters, i2d_ECPrivateKey, i2d_ECPrivateKey_bio, i2d_ECPrivateKey_fp, i2d_EC_PUBKEY, i2d_EC_PUBKEY_bio, i2d_EC_PUBKEY_fp, i2d_EDIPARTYNAME, i2d_ESS_CERT_ID, i2d_ESS_ISSUER_SERIAL, i2d_ESS_SIGNING_CERT, i2d_EXTENDED_KEY_USAGE, i2d_GENERAL_NAME, i2d_GENERAL_NAMES, i2d_IPAddressChoice, i2d_IPAddressFamily, i2d_IPAddressOrRange, i2d_IPAddressRange, i2d_ISSUING_DIST_POINT, i2d_NAMING_AUTHORITY, i2d_NETSCAPE_CERT_SEQUENCE, i2d_NETSCAPE_SPKAC, i2d_NETSCAPE_SPKI, i2d_NOTICEREF, i2d_OCSP_BASICRESP, i2d_OCSP_CERTID, i2d_OCSP_CERTSTATUS, i2d_OCSP_CRLID, i2d_OCSP_ONEREQ, i2d_OCSP_REQINFO, i2d_OCSP_REQUEST, i2d_OCSP_RESPBYTES, i2d_OCSP_RESPDATA, i2d_OCSP_RESPID, i2d_OCSP_RESPONSE, i2d_OCSP_REVOKEDINFO, i2d_OCSP_SERVICELOC, i2d_OCSP_SIGNATURE, i2d_OCSP_SINGLERESP, i2d_OTHERNAME, i2d_PBE2PARAM, i2d_PBEPARAM, i2d_PBKDF2PARAM, i2d_PKCS12, i2d_PKCS12_BAGS, i2d_PKCS12_MAC_DATA, i2d_PKCS12_SAFEBAG, i2d_PKCS12_bio, i2d_PKCS12_fp, i2d_PKCS7, i2d_PKCS7_DIGEST, i2d_PKCS7_ENCRYPT, i2d_PKCS7_ENC_CONTENT, i2d_PKCS7_ENVELOPE, i2d_PKCS7_ISSUER_AND_SERIAL, i2d_PKCS7_NDEF, i2d_PKCS7_RECIP_INFO, i2d_PKCS7_SIGNED, i2d_PKCS7_SIGNER_INFO, i2d_PKCS7_SIGN_ENVELOPE, i2d_PKCS7_bio, i2d_PKCS7_fp, i2d_PKCS8PrivateKeyInfo_bio, i2d_PKCS8PrivateKeyInfo_fp, i2d_PKCS8_PRIV_KEY_INFO, i2d_PKCS8_PRIV_KEY_INFO_bio, i2d_PKCS8_PRIV_KEY_INFO_fp, i2d_PKCS8_bio, i2d_PKCS8_fp, i2d_PKEY_USAGE_PERIOD, i2d_POLICYINFO, i2d_POLICYQUALINFO, i2d_PROFESSION_INFO, i2d_PROXY_CERT_INFO_EXTENSION, i2d_PROXY_POLICY, i2d_RSAPrivateKey, i2d_RSAPrivateKey_bio, i2d_RSAPrivateKey_fp, i2d_RSAPublicKey, i2d_RSAPublicKey_bio, i2d_RSAPublicKey_fp, i2d_RSA_OAEP_PARAMS, i2d_RSA_PSS_PARAMS, i2d_RSA_PUBKEY, i2d_RSA_PUBKEY_bio, i2d_RSA_PUBKEY_fp, i2d_SCRYPT_PARAMS, i2d_SCT_LIST, i2d_SXNET, i2d_SXNETID, i2d_TS_ACCURACY, i2d_TS_MSG_IMPRINT, i2d_TS_MSG_IMPRINT_bio, i2d_TS_MSG_IMPRINT_fp, i2d_TS_REQ, i2d_TS_REQ_bio, i2d_TS_REQ_fp, i2d_TS_RESP, i2d_TS_RESP_bio, i2d_TS_RESP_fp, i2d_TS_STATUS_INFO, i2d_TS_TST_INFO, i2d_TS_TST_INFO_bio, i2d_TS_TST_INFO_fp, i2d_USERNOTICE, i2d_X509, i2d_X509_bio, i2d_X509_fp, i2d_X509_ALGOR, i2d_X509_ALGORS, i2d_X509_ATTRIBUTE, i2d_X509_CERT_AUX, i2d_X509_CINF, i2d_X509_CRL, i2d_X509_CRL_INFO, i2d_X509_CRL_bio, i2d_X509_CRL_fp, i2d_X509_EXTENSION, i2d_X509_EXTENSIONS, i2d_X509_NAME, i2d_X509_NAME_ENTRY, i2d_X509_PUBKEY, i2d_X509_REQ, i2d_X509_REQ_INFO, i2d_X509_REQ_bio, i2d_X509_REQ_fp, i2d_X509_REVOKED, i2d_X509_SIG, i2d_X509_VAL, \&\- convert objects from/to ASN.1/DER representation .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 3 -\& TYPE *d2i_TYPE(TYPE **a, unsigned char **ppin, long length); +\& TYPE *d2i_TYPE(TYPE **a, const unsigned char **ppin, long length); \& TYPE *d2i_TYPE_bio(BIO *bp, TYPE **a); \& TYPE *d2i_TYPE_fp(FILE *fp, TYPE **a); \& @@ -213,8 +213,8 @@ The actual \s-1TYPE\s0 structure passed to \fBi2d_TYPE()\fR must be a valid populated \fB\s-1TYPE\s0\fR structure \*(-- it \fBcannot\fR simply be fed with an empty structure such as that returned by \fBTYPE_new()\fR. .PP -The encoded data is in binary form and may contain embedded zeroes. -Therefore any \s-1FILE\s0 pointers or BIOs should be opened in binary mode. +The encoded data is in binary form and may contain embedded zeros. +Therefore, any \s-1FILE\s0 pointers or BIOs should be opened in binary mode. Functions such as \fBstrlen()\fR will \fBnot\fR return the correct length of the encoded structure. .PP @@ -290,9 +290,10 @@ Allocate and encode the \s-1DER\s0 encoding of an X509 structure: .PP Attempt to decode a buffer: .PP -.Vb 3 +.Vb 4 \& X509 *x; -\& unsigned char *buf, *p; +\& unsigned char *buf; +\& const unsigned char *p; \& int len; \& \& /* Set up buf and len to point to the input buffer. */ @@ -304,9 +305,10 @@ Attempt to decode a buffer: .PP Alternative technique: .PP -.Vb 3 +.Vb 4 \& X509 *x; -\& unsigned char *buf, *p; +\& unsigned char *buf; +\& const unsigned char *p; \& int len; \& \& /* Set up buf and len to point to the input buffer. */ @@ -377,7 +379,7 @@ serialization. This is because some objects cache the encoding for efficiency reasons. .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 1998\-2020 The OpenSSL Project Authors. All Rights Reserved. +Copyright 1998\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ALGOR.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ALGOR.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ALGOR.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ALGORS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ALGORS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ALGORS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ATTRIBUTE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ATTRIBUTE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_ATTRIBUTE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_AUX.3 new file mode 120000 index 00000000..1482e9ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_AUX.3 @@ -0,0 +1 @@ +i2d_re_X509_tbs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CERT_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CERT_AUX.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CERT_AUX.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CINF.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CINF.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CINF.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_CRL_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_EXTENSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_EXTENSION.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_EXTENSION.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_EXTENSIONS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_EXTENSIONS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_EXTENSIONS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_NAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_NAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_NAME_ENTRY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_NAME_ENTRY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_NAME_ENTRY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REQ_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REVOKED.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REVOKED.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_REVOKED.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_SIG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_SIG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_SIG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_VAL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_VAL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_VAL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/d2i_X509_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ACCESS_DESCRIPTION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ACCESS_DESCRIPTION.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ACCESS_DESCRIPTION.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ADMISSIONS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ADMISSIONS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ADMISSIONS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ADMISSION_SYNTAX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ADMISSION_SYNTAX.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ADMISSION_SYNTAX.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdOrRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdOrRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdOrRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdentifierChoice.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdentifierChoice.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdentifierChoice.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdentifiers.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdentifiers.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASIdentifiers.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_BIT_STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_BIT_STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_BIT_STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_BMPSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_BMPSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_BMPSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_ENUMERATED.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_ENUMERATED.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_ENUMERATED.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_GENERALIZEDTIME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_GENERALIZEDTIME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_GENERALIZEDTIME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_GENERALSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_GENERALSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_GENERALSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_IA5STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_IA5STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_IA5STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_INTEGER.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_INTEGER.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_INTEGER.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_NULL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_NULL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_NULL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_OBJECT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_OBJECT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_OBJECT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_OCTET_STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_OCTET_STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_OCTET_STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_PRINTABLE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_PRINTABLE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_PRINTABLE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_PRINTABLESTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_PRINTABLESTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_PRINTABLESTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_SEQUENCE_ANY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_SEQUENCE_ANY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_SEQUENCE_ANY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_SET_ANY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_SET_ANY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_SET_ANY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_T61STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_T61STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_T61STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_TIME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_TIME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_TIME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_TYPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_TYPE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_TYPE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UNIVERSALSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UNIVERSALSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UNIVERSALSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UTCTIME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UTCTIME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UTCTIME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UTF8STRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UTF8STRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_UTF8STRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_VISIBLESTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_VISIBLESTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_VISIBLESTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_bio_stream.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_bio_stream.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASN1_bio_stream.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ASRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_AUTHORITY_INFO_ACCESS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_AUTHORITY_INFO_ACCESS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_AUTHORITY_INFO_ACCESS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_AUTHORITY_KEYID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_AUTHORITY_KEYID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_AUTHORITY_KEYID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_BASIC_CONSTRAINTS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_BASIC_CONSTRAINTS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_BASIC_CONSTRAINTS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CERTIFICATEPOLICIES.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CERTIFICATEPOLICIES.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CERTIFICATEPOLICIES.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_ContentInfo.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_ContentInfo.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_ContentInfo.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_ReceiptRequest.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_ReceiptRequest.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_ReceiptRequest.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_bio_stream.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_bio_stream.3 index e0451405..791f7830 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_bio_stream.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CMS_bio_stream.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "I2D_CMS_BIO_STREAM 3" -.TH I2D_CMS_BIO_STREAM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH I2D_CMS_BIO_STREAM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CRL_DIST_POINTS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CRL_DIST_POINTS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_CRL_DIST_POINTS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DHparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DHparams.3 new file mode 120000 index 00000000..fcd8fc65 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DHparams.3 @@ -0,0 +1 @@ +d2i_DHparams.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DHxparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DHxparams.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DHxparams.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIRECTORYSTRING.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIRECTORYSTRING.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIRECTORYSTRING.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DISPLAYTEXT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DISPLAYTEXT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DISPLAYTEXT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIST_POINT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIST_POINT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIST_POINT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIST_POINT_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIST_POINT_NAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DIST_POINT_NAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPublicKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAPublicKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_PUBKEY_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_SIG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_SIG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSA_SIG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAparams.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAparams.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_DSAparams.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECDSA_SIG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECDSA_SIG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECDSA_SIG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPKParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPKParameters.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPKParameters.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECParameters.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECParameters.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECParameters.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ECPrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EC_PUBKEY_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EDIPARTYNAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EDIPARTYNAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EDIPARTYNAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_CERT_ID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_CERT_ID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_CERT_ID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_ISSUER_SERIAL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_ISSUER_SERIAL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_ISSUER_SERIAL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_SIGNING_CERT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_SIGNING_CERT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ESS_SIGNING_CERT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EXTENDED_KEY_USAGE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EXTENDED_KEY_USAGE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_EXTENDED_KEY_USAGE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_GENERAL_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_GENERAL_NAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_GENERAL_NAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_GENERAL_NAMES.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_GENERAL_NAMES.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_GENERAL_NAMES.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressChoice.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressChoice.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressChoice.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressFamily.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressFamily.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressFamily.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressOrRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressOrRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressOrRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressRange.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressRange.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_IPAddressRange.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ISSUING_DIST_POINT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ISSUING_DIST_POINT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_ISSUING_DIST_POINT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NAMING_AUTHORITY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NAMING_AUTHORITY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NAMING_AUTHORITY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_CERT_SEQUENCE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_CERT_SEQUENCE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_CERT_SEQUENCE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_SPKAC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_SPKAC.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_SPKAC.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_SPKI.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_SPKI.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NETSCAPE_SPKI.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NOTICEREF.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NOTICEREF.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_NOTICEREF.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_BASICRESP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_BASICRESP.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_BASICRESP.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CERTID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CERTID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CERTID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CERTSTATUS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CERTSTATUS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CERTSTATUS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CRLID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CRLID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_CRLID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_ONEREQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_ONEREQ.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_ONEREQ.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REQINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REQINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REQINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REQUEST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REQUEST.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REQUEST.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPBYTES.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPBYTES.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPBYTES.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPDATA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPDATA.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPDATA.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPONSE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPONSE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_RESPONSE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REVOKEDINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REVOKEDINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_REVOKEDINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SERVICELOC.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SERVICELOC.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SERVICELOC.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SIGNATURE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SIGNATURE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SIGNATURE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SINGLERESP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SINGLERESP.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OCSP_SINGLERESP.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OTHERNAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OTHERNAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_OTHERNAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBE2PARAM.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBE2PARAM.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBE2PARAM.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBEPARAM.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBEPARAM.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBEPARAM.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBKDF2PARAM.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBKDF2PARAM.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PBKDF2PARAM.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_BAGS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_BAGS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_BAGS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_MAC_DATA.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_MAC_DATA.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_MAC_DATA.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_SAFEBAG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_SAFEBAG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_SAFEBAG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS12_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_DIGEST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_DIGEST.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_DIGEST.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENCRYPT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENCRYPT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENCRYPT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENC_CONTENT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENC_CONTENT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENC_CONTENT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENVELOPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENVELOPE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ENVELOPE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ISSUER_AND_SERIAL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ISSUER_AND_SERIAL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_ISSUER_AND_SERIAL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_NDEF.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_NDEF.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_NDEF.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_RECIP_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_RECIP_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_RECIP_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGNED.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGNED.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGNED.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGNER_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGNER_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGNER_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGN_ENVELOPE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGN_ENVELOPE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_SIGN_ENVELOPE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_bio_stream.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_bio_stream.3 index 657ed5d7..1fdbf908 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_bio_stream.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_bio_stream.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "I2D_PKCS7_BIO_STREAM 3" -.TH I2D_PKCS7_BIO_STREAM 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH I2D_PKCS7_BIO_STREAM 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS7_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKeyInfo_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKeyInfo_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKeyInfo_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKeyInfo_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKeyInfo_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKeyInfo_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_bio.3 new file mode 120000 index 00000000..a4761762 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_fp.3 new file mode 120000 index 00000000..a4761762 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_nid_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_nid_bio.3 new file mode 120000 index 00000000..a4761762 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_nid_bio.3 @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_nid_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_nid_fp.3 new file mode 120000 index 00000000..a4761762 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8PrivateKey_nid_fp.3 @@ -0,0 +1 @@ +d2i_PKCS8PrivateKey_bio.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_PRIV_KEY_INFO_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKCS8_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKEY_USAGE_PERIOD.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKEY_USAGE_PERIOD.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PKEY_USAGE_PERIOD.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_POLICYINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_POLICYINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_POLICYINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_POLICYQUALINFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_POLICYQUALINFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_POLICYQUALINFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROFESSION_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROFESSION_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROFESSION_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROXY_CERT_INFO_EXTENSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROXY_CERT_INFO_EXTENSION.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROXY_CERT_INFO_EXTENSION.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROXY_POLICY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROXY_POLICY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PROXY_POLICY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY_bio.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY_bio.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY_fp.3 new file mode 120000 index 00000000..90e4e956 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PUBKEY_fp.3 @@ -0,0 +1 @@ +X509_PUBKEY_new.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PrivateKey.3 new file mode 120000 index 00000000..d54aa4a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PrivateKey.3 @@ -0,0 +1 @@ +d2i_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PublicKey.3 new file mode 120000 index 00000000..d54aa4a5 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_PublicKey.3 @@ -0,0 +1 @@ +d2i_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPrivateKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSAPublicKey_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_OAEP_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_OAEP_PARAMS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_OAEP_PARAMS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PSS_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PSS_PARAMS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PSS_PARAMS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_RSA_PUBKEY_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SCRYPT_PARAMS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SCRYPT_PARAMS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SCRYPT_PARAMS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SCT_LIST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SCT_LIST.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SCT_LIST.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SSL_SESSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SSL_SESSION.3 new file mode 120000 index 00000000..0b999c09 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SSL_SESSION.3 @@ -0,0 +1 @@ +d2i_SSL_SESSION.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SXNET.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SXNET.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SXNET.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SXNETID.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SXNETID.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_SXNETID.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_ACCURACY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_ACCURACY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_ACCURACY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_MSG_IMPRINT_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_REQ_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_RESP_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_STATUS_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_STATUS_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_STATUS_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_TS_TST_INFO_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_USERNOTICE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_USERNOTICE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_USERNOTICE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ALGOR.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ALGOR.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ALGOR.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ALGORS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ALGORS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ALGORS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ATTRIBUTE.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ATTRIBUTE.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_ATTRIBUTE.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_AUX.3 new file mode 120000 index 00000000..1482e9ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_AUX.3 @@ -0,0 +1 @@ +i2d_re_X509_tbs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CERT_AUX.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CERT_AUX.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CERT_AUX.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CINF.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CINF.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CINF.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_CRL_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_EXTENSION.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_EXTENSION.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_EXTENSION.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_EXTENSIONS.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_EXTENSIONS.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_EXTENSIONS.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_NAME.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_NAME.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_NAME.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_NAME_ENTRY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_NAME_ENTRY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_NAME_ENTRY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_PUBKEY.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_PUBKEY.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_PUBKEY.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_INFO.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_INFO.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_INFO.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REQ_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REVOKED.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REVOKED.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_REVOKED.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_SIG.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_SIG.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_SIG.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_VAL.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_VAL.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_VAL.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_bio.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_bio.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_bio.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_fp.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_fp.3 new file mode 120000 index 00000000..79500cf8 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_X509_fp.3 @@ -0,0 +1 @@ +d2i_X509.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_CRL_tbs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_CRL_tbs.3 new file mode 120000 index 00000000..1482e9ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_CRL_tbs.3 @@ -0,0 +1 @@ +i2d_re_X509_tbs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_REQ_tbs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_REQ_tbs.3 new file mode 120000 index 00000000..1482e9ea --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_REQ_tbs.3 @@ -0,0 +1 @@ +i2d_re_X509_tbs.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_tbs.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_tbs.3 index e9cb58d3..fc03c903 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_tbs.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2d_re_X509_tbs.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "I2D_RE_X509_TBS 3" -.TH I2D_RE_X509_TBS 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH I2D_RE_X509_TBS 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2o_SCT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2o_SCT.3 new file mode 120000 index 00000000..30416927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2o_SCT.3 @@ -0,0 +1 @@ +o2i_SCT_LIST.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2o_SCT_LIST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2o_SCT_LIST.3 new file mode 120000 index 00000000..30416927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2o_SCT_LIST.3 @@ -0,0 +1 @@ +o2i_SCT_LIST.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2t_ASN1_OBJECT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2t_ASN1_OBJECT.3 new file mode 120000 index 00000000..ab5e22e6 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/i2t_ASN1_OBJECT.3 @@ -0,0 +1 @@ +OBJ_nid2obj.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_delete.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_delete.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_delete.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_doall.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_doall.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_doall.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_doall_arg.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_doall_arg.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_doall_arg.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_error.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_error.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_error.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_free.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_free.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_insert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_insert.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_insert.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_new.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_new.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_retrieve.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_retrieve.3 new file mode 120000 index 00000000..bad62922 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/lh_TYPE_retrieve.3 @@ -0,0 +1 @@ +OPENSSL_LH_COMPFUNC.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/o2i_SCT.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/o2i_SCT.3 new file mode 120000 index 00000000..30416927 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/o2i_SCT.3 @@ -0,0 +1 @@ +o2i_SCT_LIST.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/o2i_SCT_LIST.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/o2i_SCT_LIST.3 index b1120f9b..d32a1068 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/o2i_SCT_LIST.3 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/o2i_SCT_LIST.3 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "O2I_SCT_LIST 3" -.TH O2I_SCT_LIST 3 "2020-04-21" "1.1.1g" "OpenSSL" +.TH O2I_SCT_LIST 3 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/pem_password_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/pem_password_cb.3 new file mode 120000 index 00000000..62dfab4d --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/pem_password_cb.3 @@ -0,0 +1 @@ +PEM_read_bio_PrivateKey.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_deep_copy.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_deep_copy.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_deep_copy.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_delete.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_delete.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_delete.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_delete_ptr.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_delete_ptr.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_delete_ptr.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_dup.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_dup.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_dup.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_find.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_find.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_find.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_find_ex.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_find_ex.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_find_ex.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_free.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_free.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_insert.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_insert.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_insert.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_is_sorted.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_is_sorted.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_is_sorted.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new_null.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new_null.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new_null.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new_reserve.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new_reserve.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_new_reserve.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_num.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_num.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_num.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_pop.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_pop.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_pop.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_pop_free.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_pop_free.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_pop_free.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_push.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_push.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_push.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_reserve.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_reserve.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_reserve.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_set.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_set.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_set.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_set_cmp_func.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_set_cmp_func.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_set_cmp_func.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_shift.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_shift.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_shift.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_sort.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_sort.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_sort.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_unshift.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_unshift.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_unshift.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_value.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_value.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_value.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_zero.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_zero.3 new file mode 120000 index 00000000..abaa3dbf --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/sk_TYPE_zero.3 @@ -0,0 +1 @@ +DEFINE_STACK_OF.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ssl_ct_validation_cb.3 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ssl_ct_validation_cb.3 new file mode 120000 index 00000000..8a8a33b4 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man3/ssl_ct_validation_cb.3 @@ -0,0 +1 @@ +SSL_CTX_set_ct_validation_callback.3 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/config.5 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/config.5 index f9664b73..6c035f37 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/config.5 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/config.5 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CONFIG 5" -.TH CONFIG 5 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CONFIG 5 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -407,12 +407,11 @@ Example of a configuration with the system default: \& ssl_conf = ssl_sect \& \& [ssl_sect] -\& \& system_default = system_default_sect \& \& [system_default_sect] -\& \& MinProtocol = TLSv1.2 +\& MinProtocol = DTLSv1.2 .Ve .SH "NOTES" .IX Header "NOTES" @@ -506,8 +505,8 @@ Simple OpenSSL library configuration example to enter \s-1FIPS\s0 mode: Note: in the above example you will get an error in non \s-1FIPS\s0 capable versions of OpenSSL. .PP -Simple OpenSSL library configuration to make \s-1TLS 1.3\s0 the system-default -minimum \s-1TLS\s0 version: +Simple OpenSSL library configuration to make \s-1TLS 1.2\s0 and \s-1DTLS 1.2\s0 the +system-default minimum \s-1TLS\s0 and \s-1DTLS\s0 versions, respectively: .PP .Vb 2 \& # Toplevel section for openssl (including libssl) @@ -521,9 +520,14 @@ minimum \s-1TLS\s0 version: \& system_default = system_default_section \& \& [system_default_section] -\& MinProtocol = TLSv1.3 +\& MinProtocol = TLSv1.2 +\& MinProtocol = DTLSv1.2 .Ve .PP +The minimum \s-1TLS\s0 protocol is applied to \fB\s-1SSL_CTX\s0\fR objects that are TLS-based, +and the minimum \s-1DTLS\s0 protocol to those are DTLS-based. +The same applies also to maximum versions set with \fBMaxProtocol\fR. +.PP More complex OpenSSL library configuration. Add \s-1OID\s0 and don't enter \s-1FIPS\s0 mode: .PP .Vb 3 @@ -584,7 +588,7 @@ the value. The escaping isn't quite right: if you want to use sequences like \fB\en\fR you can't use any quote escaping on the same line. .PP -Files are loaded in a single pass. This means that an variable expansion +Files are loaded in a single pass. This means that a variable expansion will only work if the variables referenced are defined earlier in the file. .SH "SEE ALSO" diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/x509v3_config.5 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/x509v3_config.5 index 17df7432..45c54e2c 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/x509v3_config.5 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man5/x509v3_config.5 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509V3_CONFIG 5" -.TH X509V3_CONFIG 5 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509V3_CONFIG 5 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -202,8 +202,8 @@ The following sections describe each supported extension in detail. .IX Subsection "Basic Constraints." This is a multi valued extension which indicates whether a certificate is a \s-1CA\s0 certificate. The first (mandatory) name is \fB\s-1CA\s0\fR followed by \fB\s-1TRUE\s0\fR or -\&\fB\s-1FALSE\s0\fR. If \fB\s-1CA\s0\fR is \fB\s-1TRUE\s0\fR then an optional \fBpathlen\fR name followed by an -non-negative value can be included. +\&\fB\s-1FALSE\s0\fR. If \fB\s-1CA\s0\fR is \fB\s-1TRUE\s0\fR then an optional \fBpathlen\fR name followed by a +nonnegative value can be included. .PP For example: .PP @@ -696,7 +696,7 @@ will only recognize the last value. This can be worked around by using the form: \&\fBASN1_generate_nconf\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2004\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2004\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/Ed25519.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/Ed25519.7 index d61e6831..972cb320 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/Ed25519.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/Ed25519.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ED25519 7" -.TH ED25519 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH ED25519 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/Ed448.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/Ed448.7 new file mode 120000 index 00000000..f68aa318 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/Ed448.7 @@ -0,0 +1 @@ +Ed25519.7 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND.7 index 5c82830a..c24c0ec4 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND 7" -.TH RAND 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND_DRBG.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND_DRBG.7 index c87fe511..d4a94f35 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND_DRBG.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RAND_DRBG.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RAND_DRBG 7" -.TH RAND_DRBG 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RAND_DRBG 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RSA-PSS.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RSA-PSS.7 index 1b6ddf10..9adf2984 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RSA-PSS.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/RSA-PSS.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "RSA-PSS 7" -.TH RSA-PSS 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH RSA-PSS 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/SM2.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/SM2.7 index 66122c0a..9d593cff 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/SM2.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/SM2.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SM2 7" -.TH SM2 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SM2 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -172,7 +172,7 @@ Then an \s-1ID\s0 should be set by calling: .Ve .PP When calling the \fBEVP_DigestSignInit()\fR or \fBEVP_DigestVerifyInit()\fR functions, a -pre-allocated \fB\s-1EVP_PKEY_CTX\s0\fR should be assigned to the \fB\s-1EVP_MD_CTX\s0\fR. This is +preallocated \fB\s-1EVP_PKEY_CTX\s0\fR should be assigned to the \fB\s-1EVP_MD_CTX\s0\fR. This is done by calling: .PP .Vb 1 @@ -209,7 +209,7 @@ a message with the \s-1SM2\s0 signature algorithm and the \s-1SM3\s0 hash algori \&\fBEVP_MD_CTX_set_pkey_ctx\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2018\-2019 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2018\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/X25519.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/X25519.7 index d3802985..0f75eabf 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/X25519.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/X25519.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X25519 7" -.TH X25519 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X25519 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/X448.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/X448.7 new file mode 120000 index 00000000..862d8bc9 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/X448.7 @@ -0,0 +1 @@ +X25519.7 \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/bio.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/bio.7 index 02d835cb..fe8c66f6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/bio.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/bio.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BIO 7" -.TH BIO 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH BIO 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/crypto.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/crypto.7 index be52881c..cc2ee126 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/crypto.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/crypto.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CRYPTO 7" -.TH CRYPTO 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CRYPTO 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ct.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ct.7 index 173906df..ce5e4b91 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ct.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ct.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "CT 7" -.TH CT 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH CT 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/des_modes.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/des_modes.7 index 3fd9a7c2..680013c6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/des_modes.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/des_modes.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "DES_MODES 7" -.TH DES_MODES 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH DES_MODES 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/evp.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/evp.7 index 13122df3..9a2ff127 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/evp.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/evp.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EVP 7" -.TH EVP 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH EVP 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -162,7 +162,7 @@ functions. Symmetric encryption is available with the \fBEVP_Encrypt\fR\fI\s-1XXX\s0\fR functions. The \fBEVP_Digest\fR\fI\s-1XXX\s0\fR functions provide message digests. .PP -The \fB\s-1EVP_PKEY\s0\fR\fI\s-1XXX\s0\fR functions provide a high level interface to +The \fB\s-1EVP_PKEY\s0\fR\fI\s-1XXX\s0\fR functions provide a high-level interface to asymmetric algorithms. To create a new \s-1EVP_PKEY\s0 see \&\fBEVP_PKEY_new\fR\|(3). EVP_PKEYs can be associated with a private key of a particular algorithm by using the functions @@ -175,8 +175,8 @@ The \s-1EVP_PKEY\s0 functions support the full range of asymmetric algorithm ope .IP "For key agreement see \fBEVP_PKEY_derive\fR\|(3)" 4 .IX Item "For key agreement see EVP_PKEY_derive" .PD 0 -.IP "For signing and verifying see \fBEVP_PKEY_sign\fR\|(3), \fBEVP_PKEY_verify\fR\|(3) and \fBEVP_PKEY_verify_recover\fR\|(3). However, note that these functions do not perform a digest of the data to be signed. Therefore normally you would use the \fBEVP_DigestSignInit\fR\|(3) functions for this purpose." 4 -.IX Item "For signing and verifying see EVP_PKEY_sign, EVP_PKEY_verify and EVP_PKEY_verify_recover. However, note that these functions do not perform a digest of the data to be signed. Therefore normally you would use the EVP_DigestSignInit functions for this purpose." +.IP "For signing and verifying see \fBEVP_PKEY_sign\fR\|(3), \fBEVP_PKEY_verify\fR\|(3) and \fBEVP_PKEY_verify_recover\fR\|(3). However, note that these functions do not perform a digest of the data to be signed. Therefore, normally you would use the \fBEVP_DigestSignInit\fR\|(3) functions for this purpose." 4 +.IX Item "For signing and verifying see EVP_PKEY_sign, EVP_PKEY_verify and EVP_PKEY_verify_recover. However, note that these functions do not perform a digest of the data to be signed. Therefore, normally you would use the EVP_DigestSignInit functions for this purpose." .ie n .IP "For encryption and decryption see \fBEVP_PKEY_encrypt\fR\|(3) and \fBEVP_PKEY_decrypt\fR\|(3) respectively. However, note that these functions perform encryption and decryption only. As public key encryption is an expensive operation, normally you would wrap an encrypted message in a ""digital envelope"" using the \fBEVP_SealInit\fR\|(3) and \fBEVP_OpenInit\fR\|(3) functions." 4 .el .IP "For encryption and decryption see \fBEVP_PKEY_encrypt\fR\|(3) and \fBEVP_PKEY_decrypt\fR\|(3) respectively. However, note that these functions perform encryption and decryption only. As public key encryption is an expensive operation, normally you would wrap an encrypted message in a ``digital envelope'' using the \fBEVP_SealInit\fR\|(3) and \fBEVP_OpenInit\fR\|(3) functions." 4 .IX Item "For encryption and decryption see EVP_PKEY_encrypt and EVP_PKEY_decrypt respectively. However, note that these functions perform encryption and decryption only. As public key encryption is an expensive operation, normally you would wrap an encrypted message in a digital envelope using the EVP_SealInit and EVP_OpenInit functions." @@ -198,12 +198,12 @@ as defaults, then the various \s-1EVP\s0 functions will automatically use those implementations automatically in preference to built in software implementations. For more information, consult the \fBengine\fR\|(3) man page. .PP -Although low level algorithm specific functions exist for many algorithms +Although low-level algorithm specific functions exist for many algorithms their use is discouraged. They cannot be used with an \s-1ENGINE\s0 and \s-1ENGINE\s0 -versions of new algorithms cannot be accessed using the low level functions. +versions of new algorithms cannot be accessed using the low-level functions. Also makes code harder to adapt to new algorithms and some options are not -cleanly supported at the low level and some operations are more efficient -using the high level interface. +cleanly supported at the low-level and some operations are more efficient +using the high-level interface. .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBEVP_DigestInit\fR\|(3), @@ -228,7 +228,7 @@ using the high level interface. \&\fBENGINE_by_id\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2000\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2000\-2020 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store-file.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store-file.7 index 3aec5be5..c3fb6d9d 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store-file.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store-file.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OSSL_STORE-FILE 7" -.TH OSSL_STORE-FILE 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OSSL_STORE-FILE 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store.7 index e66149bd..b3ebf2f2 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ossl_store.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "OSSL_STORE 7" -.TH OSSL_STORE 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH OSSL_STORE 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -148,7 +148,7 @@ ossl_store \- Store retrieval functions .SS "General" .IX Subsection "General" A \s-1STORE\s0 is a layer of functionality to retrieve a number of supported -objects from a repository of any kind, addressable as a file name or +objects from a repository of any kind, addressable as a filename or as a \s-1URI.\s0 .PP The functionality supports the pattern \*(L"open a channel to the @@ -189,7 +189,7 @@ other encoding is undefined. \& * here just one example \& */ \& switch (OSSL_STORE_INFO_get_type(info)) { -\& case OSSL_STORE_INFO_X509: +\& case OSSL_STORE_INFO_CERT: \& /* Print the X.509 certificate text */ \& X509_print_fp(stdout, OSSL_STORE_INFO_get0_CERT(info)); \& /* Print the X.509 certificate PEM output */ @@ -207,7 +207,7 @@ other encoding is undefined. \&\s-1\fBOSSL_STORE_SEARCH\s0\fR\|(3) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2016\-2018 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2016\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/passphrase-encoding.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/passphrase-encoding.7 index a9b5de4c..cfa0ef31 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/passphrase-encoding.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/passphrase-encoding.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PASSPHRASE-ENCODING 7" -.TH PASSPHRASE-ENCODING 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PASSPHRASE-ENCODING 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/proxy-certificates.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/proxy-certificates.7 index 23823c56..e88b641f 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/proxy-certificates.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/proxy-certificates.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "PROXY-CERTIFICATES 7" -.TH PROXY-CERTIFICATES 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH PROXY-CERTIFICATES 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/scrypt.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/scrypt.7 index 7819d7d1..7b3bd581 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/scrypt.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/scrypt.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SCRYPT 7" -.TH SCRYPT 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SCRYPT 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ssl.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ssl.7 index 95f18f7b..ee22eef6 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ssl.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/ssl.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "SSL 7" -.TH SSL 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH SSL 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/x509.7 b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/x509.7 index 6823b768..6f93f231 100644 --- a/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/x509.7 +++ b/deps/openssl/android/arm64-v8a/usr/local/share/man/man7/x509.7 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "X509 7" -.TH X509 7 "2020-04-21" "1.1.1g" "OpenSSL" +.TH X509 7 "2023-02-07" "1.1.1t" "OpenSSL" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -148,7 +148,7 @@ x509 \- X.509 certificate handling .SH "DESCRIPTION" .IX Header "DESCRIPTION" An X.509 certificate is a structured grouping of information about -an individual, a device, or anything one can imagine. A X.509 \s-1CRL\s0 +an individual, a device, or anything one can imagine. An X.509 \s-1CRL\s0 (certificate revocation list) is a tool to help determine if a certificate is still valid. The exact definition of those can be found in the X.509 document from ITU-T, or in \s-1RFC3280\s0 from \s-1PKIX.\s0 @@ -161,7 +161,7 @@ X509_REQ is used to express such a certificate request. .PP To handle some complex parts of a certificate, there are the types X509_NAME (to express a certificate name), X509_ATTRIBUTE (to express -a certificate attributes), X509_EXTENSION (to express a certificate +a certificate attribute), X509_EXTENSION (to express a certificate extension) and a few more. .PP Finally, there's the supertype X509_INFO, which can contain a \s-1CRL,\s0 a @@ -198,7 +198,7 @@ functions handle PKCS#10 certificate requests. \&\fBcrypto\fR\|(7) .SH "COPYRIGHT" .IX Header "COPYRIGHT" -Copyright 2003\-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2003\-2021 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the OpenSSL license (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy diff --git a/deps/openssl/android/arm64-v8a/usr/local/ssl/misc/tsget b/deps/openssl/android/arm64-v8a/usr/local/ssl/misc/tsget new file mode 120000 index 00000000..fa4d7006 --- /dev/null +++ b/deps/openssl/android/arm64-v8a/usr/local/ssl/misc/tsget @@ -0,0 +1 @@ +tsget.pl \ No newline at end of file diff --git a/deps/openssl/android/arm64-v8a/usr/local/ssl/misc/tsget.pl b/deps/openssl/android/arm64-v8a/usr/local/ssl/misc/tsget.pl index 9ae48d19..7cd01e9e 100755 --- a/deps/openssl/android/arm64-v8a/usr/local/ssl/misc/tsget.pl +++ b/deps/openssl/android/arm64-v8a/usr/local/ssl/misc/tsget.pl @@ -47,7 +47,7 @@ sub create_curl { $curl->setopt(CURLOPT_VERBOSE, 1) if $options{d}; $curl->setopt(CURLOPT_FAILONERROR, 1); $curl->setopt(CURLOPT_USERAGENT, - "OpenTSA tsget.pl/openssl-1.1.1g"); + "OpenTSA tsget.pl/openssl-1.1.1t"); # Options for POST method. $curl->setopt(CURLOPT_UPLOAD, 1); diff --git a/src/task.c b/src/task.c index ffedf34c..6907496f 100644 --- a/src/task.c +++ b/src/task.c @@ -309,7 +309,7 @@ bool tf_task_send_error_to_parent(tf_task_t* task, JSValue error) return false; } -static const char* _task_loadFile(tf_task_t* task, const char* fileName) +static const char* _task_loadFile(tf_task_t* task, const char* fileName, size_t* out_size) { char* result = NULL; if (task->_zip) @@ -326,6 +326,10 @@ static const char* _task_loadFile(tf_task_t* task, const char* fileName) { buffer[info.uncompressed_size] = '\0'; result = buffer; + if (out_size) + { + *out_size = info.uncompressed_size; + } buffer = NULL; } unzCloseCurrentFile(task->_zip); @@ -367,7 +371,7 @@ int tf_task_execute(tf_task_t* task, const char* fileName) bool executed = false; tf_trace_begin(task->_trace, "tf_task_execute"); - const char* source = _task_loadFile(task, fileName); + const char* source = _task_loadFile(task, fileName, NULL); tf_printf("Running script %s\n", fileName); if (!*task->_scriptName) { @@ -1500,7 +1504,7 @@ JSModuleDef* _tf_task_module_loader(JSContext* context, const char* module_name, if (!source && task->_trusted) { - source = (char*)_task_loadFile(task, module_name); + source = (char*)_task_loadFile(task, module_name, NULL); length = source ? strlen(source) : 0; } @@ -1580,11 +1584,42 @@ static void _tf_task_trace_to_parent(tf_trace_t* trace, const char* buffer, size tf_packetstream_send(tf_taskstub_get_stream(task->_parent), kTaskTrace, buffer, size); } +static void _tf_task_extract_file(tf_task_t* task, const char* name, int mode) +{ + size_t size = 0; + char path_in_zip[256]; + snprintf(path_in_zip, sizeof(path_in_zip), "lib/arm64-v8a/%s", name); + const char* exe_source = _task_loadFile(task, path_in_zip, &size); + if (exe_source) + { + FILE* exe_target = fopen(name, "wb"); + if (exe_target) + { + fwrite(exe_source, size, 1, exe_target); + fchmod(fileno(exe_target), mode); + fclose(exe_target); + } + else + { + tf_printf("failed to open %s for write", name); + } + tf_free((void*)exe_source); + } + else + { + tf_printf("failed to read %s source", path_in_zip); + } +} + void tf_task_activate(tf_task_t* task) { assert(!task->_activated); task->_activated = true; +#if defined(__ANDROID__) + _tf_task_extract_file(task, "tildefriends", 0755); +#endif + JSContext* context = task->_context; JSValue global = JS_GetGlobalObject(context); JSValue e = JS_NewObject(context); diff --git a/src/taskstub.js.c b/src/taskstub.js.c index ba1ed490..ec1c18a3 100644 --- a/src/taskstub.js.c +++ b/src/taskstub.js.c @@ -1,5 +1,6 @@ #include "taskstub.js.h" +#include "log.h" #include "mem.h" #include "packetstream.h" #include "serialize.h" @@ -44,6 +45,11 @@ void tf_taskstub_startup() JS_NewClassID(&_classId); size_t size = sizeof(_executable); uv_exepath(_executable, &size); +#if defined(__ANDROID__) + /* We have already changed into our files directory. */ + snprintf(_executable, sizeof(_executable), "./tildefriends"); +#endif + tf_printf("exepath is %s\n", _executable); initialized = true; } } @@ -129,7 +135,7 @@ static JSValue _taskstub_create(JSContext* context, JSValueConst this_val, int a memset(pipe, 0, sizeof(*pipe)); if (uv_pipe_init(tf_task_get_loop(parent), pipe, 1) != 0) { - fprintf(stderr, "uv_pipe_init failed\n"); + tf_printf("uv_pipe_init failed\n"); } uv_stdio_container_t io[3]; @@ -158,7 +164,7 @@ static JSValue _taskstub_create(JSContext* context, JSValueConst this_val, int a } else { - fprintf(stderr, "uv_spawn failed: %s\n", uv_strerror(spawn_result)); + tf_printf("uv_spawn failed: %s\n", uv_strerror(spawn_result)); JS_FreeValue(context, taskObject); } return result; @@ -177,14 +183,15 @@ void _taskstub_gc_mark(JSRuntime* rt, JSValueConst value, JS_MarkFunc mark_func) JSValue tf_taskstub_register(JSContext* context) { - JSClassDef def = { + JSClassDef def = + { .class_name = "TaskStub", .finalizer = &_taskstub_finalizer, .gc_mark = _taskstub_gc_mark, }; if (JS_NewClass(JS_GetRuntime(context), _classId, &def) != 0) { - fprintf(stderr, "Failed to register TaskStub class.\n"); + tf_printf("Failed to register TaskStub class.\n"); } return JS_NewCFunction2(context, _taskstub_create, "TaskStub", 0, JS_CFUNC_constructor, 0); } @@ -226,12 +233,12 @@ tf_taskstub_t* tf_taskstub_create_parent(tf_task_t* task, uv_file file) if (uv_pipe_init(tf_task_get_loop(task), tf_packetstream_get_pipe(parentStub->_stream), 1) != 0) { - fprintf(stderr, "uv_pipe_init failed\n"); + tf_printf("uv_pipe_init failed\n"); } tf_packetstream_set_on_receive(parentStub->_stream, tf_task_on_receive_packet, parentStub); if (uv_pipe_open(tf_packetstream_get_pipe(parentStub->_stream), file) != 0) { - fprintf(stderr, "uv_pipe_open failed\n"); + tf_printf("uv_pipe_open failed\n"); } tf_packetstream_start(parentStub->_stream); @@ -285,6 +292,7 @@ static void _taskstub_on_handle_close(uv_handle_t* handle) static void _taskstub_on_process_exit(uv_process_t* process, int64_t status, int terminationSignal) { + tf_printf("_taskstub_on_process_exit %d %d\n", (int)status, terminationSignal); tf_taskstub_t* stub = process->data; JSContext* context = tf_task_get_context(stub->_owner); if (!JS_IsUndefined(stub->_on_exit))