summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDante Catalfamo2021-05-28 15:53:16 -0400
committerDante Catalfamo2021-05-28 15:53:16 -0400
commit93f94dfe79a2ad5fd558b1822ab70cfe9dac4fe6 (patch)
treebc7f7455895422f4818650935871d69b1f9eb09c
parent6fa44547754169896cc2667b6fc21af1492a2754 (diff)
downloadblog-93f94dfe79a2ad5fd558b1822ab70cfe9dac4fe6.tar.gz
blog-93f94dfe79a2ad5fd558b1822ab70cfe9dac4fe6.tar.bz2
blog-93f94dfe79a2ad5fd558b1822ab70cfe9dac4fe6.zip
bsd-auth: rearrange documentation paragrph
-rw-r--r--content/posts/WIP-how-bsd-authentication-works/index.org25
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