index
:
openbsd
OPENBSD_2_0
OPENBSD_2_1
OPENBSD_2_2
OPENBSD_2_3
OPENBSD_2_4
OPENBSD_2_5
OPENBSD_2_6
OPENBSD_2_7
OPENBSD_2_8
OPENBSD_2_9
OPENBSD_3_0
OPENBSD_3_1
OPENBSD_3_2
OPENBSD_3_3
OPENBSD_3_4
OPENBSD_3_5
OPENBSD_3_6
OPENBSD_3_7
OPENBSD_3_8
OPENBSD_3_9
OPENBSD_4_0
OPENBSD_4_1
OPENBSD_4_2
OPENBSD_4_3
OPENBSD_4_4
OPENBSD_4_5
OPENBSD_4_6
OPENBSD_4_7
OPENBSD_4_8
OPENBSD_4_9
OPENBSD_5_0
OPENBSD_5_1
OPENBSD_5_2
OPENBSD_5_3
OPENBSD_5_4
OPENBSD_5_5
OPENBSD_5_6
OPENBSD_5_7
OPENBSD_5_8
OPENBSD_5_9
OPENBSD_6_0
OPENBSD_6_1
OPENBSD_6_2
OPENBSD_6_3
OPENBSD_6_4
OPENBSD_6_5
OPENBSD_6_6
OPENBSD_6_7
OPENBSD_6_8
OPENBSD_6_9
OPENBSD_7_0
OPENBSD_7_1
OPENBSD_7_2
OPENBSD_7_3
OPENBSD_7_4
OPENBSD_7_5
OPENBSD_7_6
master
A mirror of https://github.com/libressl/openbsd.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
lib
/
libcrypto
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
simplify RETURN VALUES for x509_verify(3) after beck@ made the rules
schwarze
2020-09-14
1
-7
/
+3
*
Add initial man page for new x509_verify chain validator
beck
2020-09-14
1
-0
/
+225
*
Set error if we are given an NULL ctx in x509_verify, and set error
beck
2020-09-14
1
-5
/
+3
*
nuke a stray space
tb
2020-09-14
1
-2
/
+2
*
Fix potential leak when tmpext fails to be added to
beck
2020-09-14
1
-2
/
+6
*
remove unneeded variable "type".
beck
2020-09-14
1
-6
/
+5
*
Don't leak names on success
beck
2020-09-14
1
-1
/
+2
*
remove unneded variable "time1"
beck
2020-09-14
1
-6
/
+6
*
remove unneded variable "time"
beck
2020-09-14
1
-3
/
+2
*
fix bug introduced on review where refactor made it possible to
beck
2020-09-14
1
-2
/
+2
*
re-enable new x509 chain verifier as the default
beck
2020-09-14
1
-3
/
+1
*
Correctly fix double free introduced on review.
beck
2020-09-14
2
-3
/
+3
*
Fix double free - review moved the pop_free of roots to x509_verify_ctx_free
beck
2020-09-14
1
-2
/
+1
*
revert previous, need to fix a problem
beck
2020-09-14
1
-1
/
+3
*
Enable the use of the new x509 chain validator by default.
beck
2020-09-14
1
-3
/
+1
*
Add new x509 certificate chain validator in x509_verify.c
beck
2020-09-13
10
-59
/
+1191
*
Unindent a bit of code that performs a few too many checks to
tb
2020-09-12
1
-10
/
+8
*
Avoid an out-of-bounds access in BN_rand()
tb
2020-09-12
1
-3
/
+8
*
Change over to use the new x509 name constraints verification.
beck
2020-09-12
1
-28
/
+7
*
Include machine/endian.h in gost2814789.c
inoguchi
2020-09-12
1
-1
/
+3
*
Add x509_constraints.c - a new implementation of x509 name constraints, with
beck
2020-09-11
3
-2
/
+1272
*
Add issuer cache, to be used by upcoming changes to validation code.
beck
2020-09-11
3
-1
/
+216
*
Import latest OPENSSL_NO_* flags from OpenSSL 1.1.1g
inoguchi
2020-09-09
1
-0
/
+8
*
Mention that EC_KEY_get0_public_key returns a public key.
tb
2020-09-08
1
-3
/
+5
*
Clean up asn1/x_info.c
tb
2020-09-03
1
-22
/
+9
*
Remove unnecessary zeroing after recallocarray(3)
tb
2020-09-03
1
-3
/
+1
*
define OPENSSL_NO_SSL_TRACE in opensslfeatures.h
inoguchi
2020-08-29
1
-1
/
+1
*
delete another word to improve the wording; suggested by jmc@
schwarze
2020-08-06
1
-2
/
+2
*
Explain the purpose of CMAC_resume(3) in more detail.
schwarze
2020-08-06
1
-3
/
+9
*
remove half a dozen "goto" statements and a label
schwarze
2020-07-25
1
-14
/
+1
*
tweak previous;
jmc
2020-07-24
1
-4
/
+4
*
document PEM_X509_INFO_read(3) and PEM_X509_INFO_read_bio(3)
schwarze
2020-07-23
7
-14
/
+207
*
Fix a bug in PEM_X509_INFO_read_bio(3) that is very likely to cause
schwarze
2020-07-23
1
-21
/
+17
*
Disable assembly code for powerpc64; more work is needed to make it work.
kettenis
2020-06-29
1
-8
/
+9
*
Switch back to bn_mul_mont_int since the bn_mul_mont_fpu64 code isn't
kettenis
2020-06-28
1
-3
/
+3
*
Accidentally doubled these files on first commit. Correcting.
drahn
2020-06-26
2
-194
/
+1
*
Intial attempt at powerpc64 libcrypto pieces.
drahn
2020-06-25
2
-0
/
+386
*
Properly document the return values of EVP_PKEY_base_id(3)
schwarze
2020-06-24
4
-70
/
+152
*
use n-bit <noun> consistently; ok schwarze for the principal of the idea,
jmc
2020-06-24
6
-28
/
+28
*
new manual page ChaCha(3);
schwarze
2020-06-24
3
-2
/
+257
*
new manual page CMAC_Init(3);
schwarze
2020-06-24
5
-7
/
+298
*
Document eight additional pre-OpenSSL-1.1 accessor functions that are
schwarze
2020-06-24
1
-21
/
+122
*
mark the functions documented in des_read_pw(3) as deprecated
schwarze
2020-06-19
2
-6
/
+11
*
document X509_get0_pubkey_bitstr(3),
schwarze
2020-06-19
1
-5
/
+81
*
document error handling of X509_PUBKEY_get0(3) and X509_PUBKEY_get(3)
schwarze
2020-06-19
1
-3
/
+52
*
Merge documentation of X509_get0_serialNumber(3) from OpenSSL-1.1.1
schwarze
2020-06-19
1
-4
/
+19
*
Document EVP_read_pw_string_min(3)
tb
2020-06-15
1
-6
/
+44
*
Document PEM_def_callback(3).
schwarze
2020-06-15
3
-106
/
+158
*
add my Copyright and license, which i forgot when adding a significant
schwarze
2020-06-12
1
-3
/
+20
*
add a comment saying that name_cmp() is intentionally undocumented;
schwarze
2020-06-12
1
-2
/
+5
[prev]
[next]