]> git.ipfire.org Git - thirdparty/freeradius-server.git/log
thirdparty/freeradius-server.git
2 years agolet's make tests pass
Alan T. DeKok [Mon, 21 Aug 2023 22:19:46 +0000 (18:19 -0400)] 
let's make tests pass

2 years ago+= also means "create if it doesn't exist"
Alan T. DeKok [Mon, 21 Aug 2023 21:58:41 +0000 (17:58 -0400)] 
+= also means "create if it doesn't exist"

at least for operations where "+=" is meaningful

We probably want to do something similar for union, merge, etc.
if the LHS doesn't exist.

2 years agoupdate for new behavior of :=
Alan T. DeKok [Mon, 21 Aug 2023 21:37:44 +0000 (17:37 -0400)] 
update for new behavior of :=

2 years agohoist checks to be more consistent
Alan T. DeKok [Mon, 21 Aug 2023 21:19:58 +0000 (17:19 -0400)] 
hoist checks to be more consistent

2 years agoupdate behavior of :=
Alan T. DeKok [Mon, 21 Aug 2023 21:15:19 +0000 (17:15 -0400)] 
update behavior of :=

if RHS expansion fails, it still nukes all of the LHS

2 years agoReassure coverity (CID #1504052) (#5152)
James Jones [Mon, 21 Aug 2023 19:02:21 +0000 (14:02 -0500)] 
Reassure coverity (CID #1504052) (#5152)

Non-group structural type attributes may always have a namespace
hash table, but coverity can't figure that out.

2 years agoforce flatten unless migration flags are set
Alan T. DeKok [Mon, 21 Aug 2023 16:22:39 +0000 (12:22 -0400)] 
force flatten unless migration flags are set

this means we can safely update all of the decoders to create
nested attributes

2 years agoadd flatten migration configuration
Alan T. DeKok [Mon, 21 Aug 2023 16:16:54 +0000 (12:16 -0400)] 
add flatten migration configuration

it turns out "unflatten" is hard, so we need to find a better way
to deal with things

2 years agoprint out more text around mismatch so we can better find it
Alan T. DeKok [Mon, 21 Aug 2023 15:18:45 +0000 (11:18 -0400)] 
print out more text around mismatch so we can better find it

2 years agoadd unflatten_after_encode for test API
Alan T. DeKok [Mon, 21 Aug 2023 15:18:27 +0000 (11:18 -0400)] 
add unflatten_after_encode for test API

2 years agohandle key fields in unflatten
Alan T. DeKok [Mon, 21 Aug 2023 15:17:18 +0000 (11:17 -0400)] 
handle key fields in unflatten

2 years agoif there's no "next", then we don't need a comma
Alan T. DeKok [Mon, 21 Aug 2023 14:41:15 +0000 (10:41 -0400)] 
if there's no "next", then we don't need a comma

2 years agouse correct name
Alan T. DeKok [Mon, 21 Aug 2023 12:38:58 +0000 (08:38 -0400)] 
use correct name

2 years agoclean up and comments
Alan T. DeKok [Mon, 21 Aug 2023 01:06:05 +0000 (21:06 -0400)] 
clean up and comments

2 years agonotes on immutable children of temporary attibutes
Alan T. DeKok [Mon, 21 Aug 2023 00:56:49 +0000 (20:56 -0400)] 
notes on immutable children of temporary attibutes

2 years agoallow operations on list which has some immutable values
Alan T. DeKok [Mon, 21 Aug 2023 00:48:00 +0000 (20:48 -0400)] 
allow operations on list which has some immutable values

2 years agouse vp_ name for immutable field
Alan T. DeKok [Mon, 21 Aug 2023 00:45:31 +0000 (20:45 -0400)] 
use vp_ name for immutable field

2 years agowe can copy immutable values, and the copy is mutable
Alan T. DeKok [Sun, 20 Aug 2023 22:22:05 +0000 (18:22 -0400)] 
we can copy immutable values, and the copy is mutable

2 years agoadd undocumented immutable xlat, and test based on it
Alan T. DeKok [Sun, 20 Aug 2023 15:33:40 +0000 (11:33 -0400)] 
add undocumented immutable xlat, and test based on it

2 years agoadd immutable flag, and check it most places
Alan T. DeKok [Sun, 20 Aug 2023 14:33:52 +0000 (10:33 -0400)] 
add immutable flag, and check it most places

the main purpose of immutable flags is to prevent users from
modifying values that the server wants to keep around.

As a result, the main checks for immutable values are in the
various editing routines:

    src/lib/util/calc.c - cannot store results to immutable leaves
    src/lib/util/edit.c - cannot edit immutable values
  or delete immutable leaves from lists
    src/lib/unlang/edit.c - cannot store to immutable leaves

Many of the internal value box / pair APIs will ignore the
immutable flag, and happily over-write values.  This behavior
is likely good enough for now.  The intention is to stop admins
from doing stupid things, and not to prevent the internal code
from doing what makes sense.

There is currently no flag in structural VPs which says "contains
an immutable child".  The edit code therefore has to check each
time by walking the list recursively.  That's fine for now.

There is as yet no code to set the immutable flag, or unit tests.
The goal is to have the decoders set the immutable flag as necessary,
which means that they don't need to save / restore attributes with
special meaning.

2 years agohoist the secret flag on fr_pair_value_copy() too
Alan T. DeKok [Sun, 20 Aug 2023 13:47:49 +0000 (09:47 -0400)] 
hoist the secret flag on fr_pair_value_copy() too

2 years agocopy tests from keywords/xlat-dhcpv4
Alan T. DeKok [Sat, 19 Aug 2023 14:51:13 +0000 (10:51 -0400)] 
copy tests from keywords/xlat-dhcpv4

2 years agomigrate more tests to new methods
Alan T. DeKok [Sat, 19 Aug 2023 12:57:20 +0000 (08:57 -0400)] 
migrate more tests to new methods

2 years agoremove unused definitions
Alan T. DeKok [Thu, 17 Aug 2023 20:49:24 +0000 (16:49 -0400)] 
remove unused definitions

2 years agoGet rid of remaining unchecked return value (CID #1533664, #1524617)
James Jones [Fri, 18 Aug 2023 13:54:39 +0000 (08:54 -0500)] 
Get rid of remaining unchecked return value (CID #1533664, #1524617)

2 years agoTidy up on connection close
Nick Porter [Thu, 17 Aug 2023 19:10:45 +0000 (20:10 +0100)] 
Tidy up on connection close

2 years agoSwitch from ntohs() to fr_nbo_to_uint16() (CID #1243443)
James Jones [Thu, 17 Aug 2023 19:34:23 +0000 (14:34 -0500)] 
Switch from ntohs() to fr_nbo_to_uint16() (CID #1243443)

Takes advantage of coverity thinking fr_nbo_to_foo() taints
the passed pointer, which here is it's only use, while the
returned value is used several times.

2 years agoCheck returns of [sd]buff write functions (CIDs listed below)
James Jones [Thu, 17 Aug 2023 15:15:17 +0000 (10:15 -0500)] 
Check returns of [sd]buff write functions (CIDs listed below)

CIDs: 16246161524609152461115246181524615

2 years agoRevert "Remove closed connections from the parent's tracking list"
Nick Porter [Thu, 17 Aug 2023 17:13:12 +0000 (18:13 +0100)] 
Revert "Remove closed connections from the parent's tracking list"

This reverts commit bac1129ed8dab05a976fd97cbcd6df98276104ff.

2 years agoRemove closed connections from the parent's tracking list
Nick Porter [Thu, 17 Aug 2023 17:01:14 +0000 (18:01 +0100)] 
Remove closed connections from the parent's tracking list

2 years agovarious coverity fixes
Alan T. DeKok [Thu, 17 Aug 2023 12:46:50 +0000 (08:46 -0400)] 
various coverity fixes

2 years agoallow &leaf += { list }
Alan T. DeKok [Wed, 16 Aug 2023 13:48:41 +0000 (09:48 -0400)] 
allow &leaf += { list }

which applies all of the list to the first found version of "leaf"

2 years agomove "Alive" to dictionary.compat
Alan T. DeKok [Wed, 16 Aug 2023 12:26:05 +0000 (08:26 -0400)] 
move "Alive" to dictionary.compat

it's not defined in any RFC

2 years agorlm_sql_mysql: Formatting
Arran Cudbard-Bell [Thu, 17 Aug 2023 04:47:02 +0000 (22:47 -0600)] 
rlm_sql_mysql: Formatting

2 years agorlm_sql_mysql: Check validity of conn
Arran Cudbard-Bell [Wed, 16 Aug 2023 22:40:41 +0000 (16:40 -0600)] 
rlm_sql_mysql:  Check validity of conn

If conn's magic number is still good, then there's an extremely high chance conn->sock != NULL.  Closes #5144

2 years agoImprove sql_pair_afrom_row() debug output
Jorge Pereira [Tue, 15 Aug 2023 17:25:25 +0000 (14:25 -0300)] 
Improve sql_pair_afrom_row() debug output

It will change the result for:

e.g:

Tue Aug 15 14:24:21 2023: (0) sql - Found row[1]: Acct-Input-Gigawords := 8192

2 years agoUse canonicalized names for Acct-Status-Type
Alan T. DeKok [Tue, 15 Aug 2023 23:56:19 +0000 (19:56 -0400)] 
Use canonicalized names for Acct-Status-Type

Alive is Livingston or maybe Cistron?  It's not in RFC 2059 or
RFC 2139.  RFC 2866 has Interim-Update:

https://www.rfc-editor.org/rfc/rfc2866.html#section-5.1

So we change the "accounting" type to Interim-Update, and add
a unit test which verifies that any attempt to read Alive will
result in the server printing Interim-Update

2 years agoCheck returns (CID #1538387)
James Jones [Fri, 4 Aug 2023 18:56:57 +0000 (13:56 -0500)] 
Check returns (CID #1538387)

Humans can figure out that
        FR_DBUFF_REMAINING_RETURN(&foo, bar);
implies that one can safely write bar bytes to the dbuff foo,
but coverity can't. There's another use, in fr_tacacs_encode(),
but the following operations using the dbuff are checked there.

2 years agoAttempt at a simpler uninit local buffer workaround (CIDs below)
James Jones [Thu, 10 Aug 2023 22:06:27 +0000 (17:06 -0500)] 
Attempt at a simpler uninit local buffer workaround (CIDs below)

CIDs: 150669015066891504436150404115040201503918

This doesn't name the uninitialized local array, but instead
goes via the sbuff/dbuff API to get to the data.

2 years agoradeapol_uat: Add new script for user tests
Jorge Pereira [Thu, 13 Oct 2022 22:06:11 +0000 (19:06 -0300)] 
radeapol_uat: Add new script for user tests

We need something similar to scripts/util/raduat, but instead of using radclient. it needs to be implemented in python calling the eapol_test.

the python one needs to also take an eapol_test config as part of the request
as a separate file like:

"my_peap_test", "my_peap_test_conf", "my_peap_test_expected"

"my_peap_test" contains all the attributes we want to send
"my_peap_test_conf" contains the eapol test config
"my_peap_test_expected' contains the attributes we want to see , and whether it'll be an Access-Accept or Access-Reject

the python script needs to implement something similar to raduat, with how the test files are laid out
it needs to take "my_peap_test", "my_peap_test_conf", and figure out how to pass them to eapol_test (maybe using the radict)

i.e. how to get the attributes out of "my_peap_test" and pass them in a format eapol_test wants
passing the config and when eapol_test finishes, checking to see if the attributes it returned match "my_peap_test_expected"

2 years agoThere's no need to load in the suppressions file
Arran Cudbard-Bell [Tue, 15 Aug 2023 22:48:40 +0000 (16:48 -0600)] 
There's no need to load in the suppressions file

2 years agoalphabetize leaks
Arran Cudbard-Bell [Tue, 15 Aug 2023 22:46:35 +0000 (16:46 -0600)] 
alphabetize leaks

2 years agowe only care that it doesn't crash.
Alan T. DeKok [Tue, 15 Aug 2023 20:33:52 +0000 (16:33 -0400)] 
we only care that it doesn't crash.

We don't care what the results are

2 years agoallow '=' for list assignment to leaf types, too
Alan T. DeKok [Tue, 15 Aug 2023 20:07:25 +0000 (16:07 -0400)] 
allow '=' for list assignment to leaf types, too

2 years agoclear out old resume function and rctx
Alan T. DeKok [Tue, 15 Aug 2023 12:26:07 +0000 (08:26 -0400)] 
clear out old resume function and rctx

when we have two xlats in a row, the first one might need to be
resumed, so it pushes a resume ctx onto the stack.  It then returns
"done", and the xlat evaluator goes to the next xlat node.

However, the next xlat node might _not_ push a resume function onto
the stack.  So when the evaluator resumes, it will see the first
resume function and rctx, and call it again.  Cue boom.

The solution is on DONE, replace the resume function / rctx with
a NULL one which does nothing.

2 years agocopy from v3.2.x
Alan T. DeKok [Tue, 15 Aug 2023 12:25:38 +0000 (08:25 -0400)] 
copy from v3.2.x

2 years agoFix typos
Jorge Pereira [Mon, 14 Aug 2023 22:49:25 +0000 (19:49 -0300)] 
Fix typos

2 years agoremove diag, as some compilers don't understand it
Alan T. DeKok [Mon, 14 Aug 2023 16:16:44 +0000 (12:16 -0400)] 
remove diag, as some compilers don't understand it

2 years agoclean up for semicolons
Alan T. DeKok [Mon, 14 Aug 2023 12:41:18 +0000 (08:41 -0400)] 
clean up for semicolons

2 years agomove wimax tests to new framework
Alan T. DeKok [Sat, 12 Aug 2023 13:39:24 +0000 (09:39 -0400)] 
move wimax tests to new framework

2 years agoCI: use correct inputs
Matthew Newton [Fri, 11 Aug 2023 22:35:02 +0000 (23:35 +0100)] 
CI: use correct inputs

2 years agojson: Another test
Arran Cudbard-Bell [Fri, 11 Aug 2023 20:47:27 +0000 (14:47 -0600)] 
json: Another test

2 years agodelay commas until necessary
Alan T. DeKok [Fri, 11 Aug 2023 13:33:27 +0000 (09:33 -0400)] 
delay commas until necessary

we have a host of stopping conditions, which can be nested.
As a result, a simple `next != NULL` check isn't enough to
determine if we need to write out a comma.  Instead, we delay
the comma until necessary.

2 years agoremove extraneous ,
Alan T. DeKok [Fri, 11 Aug 2023 13:27:23 +0000 (09:27 -0400)] 
remove extraneous ,

2 years agoclean up fr_pair_list_print() and make it work in more situations
Alan T. DeKok [Thu, 10 Aug 2023 16:03:51 +0000 (12:03 -0400)] 
clean up fr_pair_list_print() and make it work in more situations

2 years agoremove extraneous assert
Alan T. DeKok [Wed, 9 Aug 2023 17:21:32 +0000 (13:21 -0400)] 
remove extraneous assert

2 years agojson: various fixes
Arran Cudbard-Bell [Wed, 9 Aug 2023 22:24:03 +0000 (16:24 -0600)] 
json: various fixes

2 years agojson: Modify json_quote function to be more useful
Arran Cudbard-Bell [Wed, 9 Aug 2023 21:29:38 +0000 (15:29 -0600)] 
json: Modify json_quote function to be more useful

Output can now be interpolated with other JSON text and will always produce valid JSON values.

2 years agoinitialise with zero length strings
Arran Cudbard-Bell [Thu, 3 Aug 2023 21:30:53 +0000 (15:30 -0600)] 
initialise with zero length strings

2 years agoit helps to parse psk_identity etc. in the client configuration
Alan T. DeKok [Wed, 9 Aug 2023 14:55:44 +0000 (10:55 -0400)] 
it helps to parse psk_identity etc. in the client configuration

2 years agotypo
James Jones [Tue, 8 Aug 2023 19:57:23 +0000 (14:57 -0500)] 
typo

2 years agoadd and use fr_pair_legacy_print_nested flag
Alan T. DeKok [Tue, 8 Aug 2023 19:59:20 +0000 (15:59 -0400)] 
add and use fr_pair_legacy_print_nested flag

so that we can update the tests to print flat attributes as nested,
without updating all of the tests.

The next step is to set the flag in the tests, so that the tests
will parse flat attributes, but will always print nested ones.

2 years agounify "attribute" and "pair" commands
Alan T. DeKok [Tue, 8 Aug 2023 14:30:04 +0000 (10:30 -0400)] 
unify "attribute" and "pair" commands

the "attribute" command parsed a pair or a list of pairs, as did
the "pair" command.  But the "pair" command did it manually, which
meant that it was unable to correctly deal with structural attributes

2 years agothis was unused by anything
Alan T. DeKok [Tue, 8 Aug 2023 14:25:22 +0000 (10:25 -0400)] 
this was unused by anything

2 years agoAdd Ruckus attributes from Cloudpath config
Nick Porter [Tue, 8 Aug 2023 14:55:05 +0000 (15:55 +0100)] 
Add Ruckus attributes from Cloudpath config

2 years agoremove stray assert
Alan T. DeKok [Tue, 8 Aug 2023 12:57:19 +0000 (08:57 -0400)] 
remove stray assert

2 years agoEnsure temporary list is freed
Nick Porter [Tue, 8 Aug 2023 09:59:35 +0000 (10:59 +0100)] 
Ensure temporary list is freed

2 years agoCI: split some install dependencies to separate action
Matthew Newton [Mon, 7 Aug 2023 14:56:14 +0000 (15:56 +0100)] 
CI: split some install dependencies to separate action

2 years agounify fr_pair_print() and fr_pair_list_print() functions
Alan T. DeKok [Mon, 7 Aug 2023 13:53:37 +0000 (09:53 -0400)] 
unify fr_pair_print() and fr_pair_list_print() functions

so that they call each other.  i.e. less code.

And clean up various other bits

2 years agoRevert "Keep too-long lines from overwriting output_buffer (#5093)"
Alan T. DeKok [Mon, 7 Aug 2023 13:48:36 +0000 (09:48 -0400)] 
Revert "Keep too-long lines from overwriting output_buffer (#5093)"

This reverts commit b69393030a90e01aa9ff592d0171333efa1c3498.

You can use "goto" to jump into another block, but that won't
cause the compiler to treat variables of the same name as identical.

2 years agoadd and use fr_pair_list_print()
Alan T. DeKok [Mon, 7 Aug 2023 13:10:21 +0000 (09:10 -0400)] 
add and use fr_pair_list_print()

so that we can hoist the "nested or not" debug printing into
this function.  Which also lets this function peek ahead, and
print attributes as if they were nested when they really aren't

2 years agoCI fuzzing: install extras repo for latest libkqueue
Matthew Newton [Mon, 7 Aug 2023 11:53:45 +0000 (12:53 +0100)] 
CI fuzzing: install extras repo for latest libkqueue

2 years agoCI fuzzing: show which commit is being tested
Matthew Newton [Mon, 7 Aug 2023 11:53:19 +0000 (12:53 +0100)] 
CI fuzzing: show which commit is being tested

2 years agodocs: antora web redirects
Matthew Newton [Sat, 5 Aug 2023 20:42:52 +0000 (21:42 +0100)] 
docs: antora web redirects

2 years agodocs: ensure v4 antora docs are marked as development
Matthew Newton [Fri, 4 Aug 2023 21:04:04 +0000 (22:04 +0100)] 
docs: ensure v4 antora docs are marked as development

2 years agodocs: antora ui dir and site url
Matthew Newton [Fri, 4 Aug 2023 15:57:08 +0000 (16:57 +0100)] 
docs: antora ui dir and site url

2 years agodocs: minor updates
Matthew Newton [Fri, 4 Aug 2023 20:56:41 +0000 (21:56 +0100)] 
docs: minor updates

2 years agominor tweak and notes on connected UDP sockets
Alan T. DeKok [Thu, 3 Aug 2023 19:36:54 +0000 (15:36 -0400)] 
minor tweak and notes on connected UDP sockets

2 years agocache: Don't deadlock rbtree module if the cache entry isn't found and the cache...
Arran Cudbard-Bell [Thu, 3 Aug 2023 16:03:55 +0000 (11:03 -0500)] 
cache: Don't deadlock rbtree module if the cache entry isn't found and the cache xlat is called

2 years agoRemove pointless casts (#5132)
James Jones [Thu, 3 Aug 2023 12:30:06 +0000 (07:30 -0500)] 
Remove pointless casts (#5132)

2 years agojson: Add test for consuming output from function like xlat
Arran Cudbard-Bell [Wed, 2 Aug 2023 20:21:37 +0000 (15:21 -0500)] 
json: Add test for consuming output from function like xlat

2 years agoInitialize local value boxes for some coercion results (CIDs below)
James Jones [Wed, 2 Aug 2023 18:48:19 +0000 (13:48 -0500)] 
Initialize local value boxes for some coercion results (CIDs below)

CIDs: #1503917, #1503948, #1503o5o, #1503989

These are in calc_{string, octet}(), where coercion results stored
in locals must be cleared before returning. Currently coverity claims
that the value box's type is not set. One would think that modeling
fr_value_box_cast() to say it writes the destination on success would
suffice, but that might not be the case, so we will initialize the
value boxes just as we have done with some local buffers used in
sbuffs.

2 years agoImprove sample TACACS virtual server
Nick Porter [Tue, 1 Aug 2023 15:15:36 +0000 (16:15 +0100)] 
Improve sample TACACS virtual server

2 years agoAdd authentication flags attribute and set to No-Echo for TACACS GetPass
Nick Porter [Tue, 1 Aug 2023 14:08:55 +0000 (15:08 +0100)] 
Add authentication flags attribute and set to No-Echo for TACACS GetPass

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/dns.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:49 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/dns.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv6.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:46 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv6.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv4.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:43 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/dhcpv4.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/radius.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:40 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/radius.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/bfd.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:37 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/bfd.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/util.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:34 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/util.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/tftp.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:31 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/tftp.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/vmps.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:28 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/vmps.tar

2 years agoScheduled fuzzing: Update src/tests/fuzzer-corpus/tacacs.tar
github-actions[bot] [Tue, 1 Aug 2023 09:34:24 +0000 (09:34 +0000)] 
Scheduled fuzzing: Update src/tests/fuzzer-corpus/tacacs.tar

2 years agoChange other kqueue ifdef, too
Matthew Newton [Mon, 31 Jul 2023 17:05:25 +0000 (18:05 +0100)] 
Change other kqueue ifdef, too

See 433970a3ed07

2 years agoused / unused
Alan T. DeKok [Mon, 31 Jul 2023 15:55:28 +0000 (11:55 -0400)] 
used / unused

2 years agotypo
Alan T. DeKok [Mon, 31 Jul 2023 15:33:48 +0000 (11:33 -0400)] 
typo

2 years agotypos and word smithing
Alan T. DeKok [Mon, 31 Jul 2023 15:31:57 +0000 (11:31 -0400)] 
typos and word smithing

2 years agoadd tests for explicit_bzero() and memset_explicit()
Alan T. DeKok [Mon, 31 Jul 2023 15:31:38 +0000 (11:31 -0400)] 
add tests for explicit_bzero() and memset_explicit()

2 years agomove to using memset_explicit()
Alan T. DeKok [Mon, 31 Jul 2023 15:30:24 +0000 (11:30 -0400)] 
move to using memset_explicit()

2 years agomove Interpreter to top
Alan T. DeKok [Mon, 31 Jul 2023 15:17:13 +0000 (11:17 -0400)] 
move Interpreter to top