diff options
Diffstat (limited to 'content/posts/WIP-how-bsd-authentication-works/index.org')
-rw-r--r-- | content/posts/WIP-how-bsd-authentication-works/index.org | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/content/posts/WIP-how-bsd-authentication-works/index.org b/content/posts/WIP-how-bsd-authentication-works/index.org index aee3d3a..b2e3da1 100644 --- a/content/posts/WIP-how-bsd-authentication-works/index.org +++ b/content/posts/WIP-how-bsd-authentication-works/index.org @@ -58,6 +58,18 @@ opaque. This is my best attempt to understand and describe the flow of BSD Auth. +* Documentation + :PROPERTIES: + :CUSTOM_ID: documentation + :END: + + All of the high level authentication functions are described in + [[https://man.openbsd.org/authenticate][=authenticate(3)=]], with the lower level functions being described in + [[https://man.openbsd.org/auth_subr][=auth_subr(3)=]]. + + Click on any function prototype in this post to see its definition. + All code snippets from this blog post belong to the OpenBSD contributors. + * BSD Auth Modules :PROPERTIES: :CUSTOM_ID: modules @@ -135,19 +147,6 @@ Most modules also have a hidden flag =-d=, which sets the back channel do =stdio=, presumably for debugging purposes. -* Documentation - :PROPERTIES: - :CUSTOM_ID: documentation - :END: - - All of the high level authentication functions are described in - [[https://man.openbsd.org/authenticate][=authenticate(3)=]], with the lower level functions being described in - [[https://man.openbsd.org/auth_subr][=auth_subr(3)=]]. - - Click on any function prototype in this post to see the full source - code of that function. - All code snippets from this blog post belong to the OpenBSD contributors. - * auth_userokay :PROPERTIES: :CUSTOM_ID: auth_userokay |