diff options
| author | Dante Catalfamo | 2021-10-18 14:07:45 -0400 | 
|---|---|---|
| committer | Dante Catalfamo | 2021-10-18 14:08:06 -0400 | 
| commit | 12610a2992f59a4819598fddbc60693a6b733ff7 (patch) | |
| tree | 9cf8f45e43cc48f59a15b3f49f26a2cd8fa1564d /content/posts/WIP-how-bsd-authentication-works | |
| parent | ae6cd964e8f4add4877ef6841c7c7787e2f4bafa (diff) | |
| download | blog-12610a2992f59a4819598fddbc60693a6b733ff7.tar.gz blog-12610a2992f59a4819598fddbc60693a6b733ff7.tar.bz2 blog-12610a2992f59a4819598fddbc60693a6b733ff7.zip | |
bsd-auth: Move graph over notes
Diffstat (limited to 'content/posts/WIP-how-bsd-authentication-works')
| -rw-r--r-- | content/posts/WIP-how-bsd-authentication-works/index.org | 31 | 
1 files changed, 15 insertions, 16 deletions
| diff --git a/content/posts/WIP-how-bsd-authentication-works/index.org b/content/posts/WIP-how-bsd-authentication-works/index.org index cbb1fd5..7e7607f 100644 --- a/content/posts/WIP-how-bsd-authentication-works/index.org +++ b/content/posts/WIP-how-bsd-authentication-works/index.org @@ -2622,6 +2622,21 @@    It returns =0= if the user is allowed to login, and =-1= otherwise. +* Call Graph +  :PROPERTIES: +  :CUSTOM_ID: graph +  :END: + +  #+ATTR_HTML: :title Authentication call graph +  #+ATTR_HTML: :title Authentication call graph +  [[file:graph.svg]] + +  @@html: <details> <summary> @@ +  *Click here* to see the code that generates the call graph. +  @@html: </summary> @@ +#+INCLUDE: "gen_dot.rb" src ruby +  @@html: </details> @@ +  * Notes    https://web.archive.org/web/20170327150148/http://www.penzin.net/bsdauth/    - In the man page for [[https://man.openbsd.org/auth_subr.3#auth_call][=auth_call=]] it says @@ -2704,22 +2719,6 @@   - The [[#auth_getchallenge][=auth_getchallenge=]] function in the [[https://man.openbsd.org/auth_subr.3#auth_getchallenge][=auth_subr(3)=]] man page     doesn't seem to exist in the source code. -* Call Graph -  :PROPERTIES: -  :CUSTOM_ID: graph -  :END: - -  #+ATTR_HTML: :title Authentication call graph -  #+ATTR_HTML: :title Authentication call graph -  [[file:graph.svg]] - -  @@html: <details> <summary> @@ -  *Click here* to see the code that generates the call graph. -  @@html: </summary> @@ -#+INCLUDE: "gen_dot.rb" src ruby -  @@html: </details> @@ - -  * Copyright    :PROPERTIES:    :CUSTOM_ID: copyright | 
