Skip to content

Commit

Permalink
addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chesterxgchen committed Feb 21, 2025
1 parent c7de29d commit d49afd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": [
"# Connection and Message Security\n",
"\n",
"For mutual TLS Flare's message security comes: server and client authenticate each other when making direct connections. This means that only clients that have the right startup kits can make a connection to the server.\n",
"For mutual TLS, FLARE's message security works as follows: the server and client authenticate each other when establishing direct connections. This ensures that only clients with the correct startup kits can connect to the server.\n",
"\n",
"However mutual TLS may be hard for some customers due to their IT infrastructure policies. To enable customers to use their own connectivity solution, Flare now supports **BYOConn** (bring your own connectivity). \n",
"\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,19 @@
"\n",
"```\n",
"from nvflare.fuel.utils import fobs\n",
"\n",
"data = fobs.dumps(dxo)\n",
"new_dxo = fobs.loads(data)\n",
"```\n",
"\n",
"\n",
"**Pickle/json compatible functions:**\n",
"\n",
"```\n",
"\n",
"data = fobs.dumps(shareable)\n",
"new_shareable = fobs.loads(data)\n",
"```\n",
"\n",
"\n",
"## Decomposers\n",
"\n",
Expand Down

0 comments on commit d49afd5

Please sign in to comment.