Skip to content

Commit

Permalink
separate folder for oids
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Oct 28, 2024
1 parent dbac492 commit c547c8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/services/est.ex
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@ defmodule CA.EST do
Supervisor.start_link(children, strategy: :one_for_one, name: CA.Supervisor)
end

# Authority PKI X.509 EST RFC 7030
# Authority PKI X.509 EST RFC 7030 3.2.2

post "/.well-known/est/simpleenroll" do CA.EST.Post.post(conn, [], "Authority", [], "ENROLL") end
put "/.well-known/est/simplereenroll" do CA.EST.Put.put(conn, [], "Authority", [], "RE-ENROLL") end
get "/.well-known/est/cacerts" do CA.EST.Get.get(conn, [], "Authority", [], "ROOT") end
get "/.well-known/est/csrattrs" do CA.EST.Get.get(conn, [], "Authority", [], "ABAC") end
put "/.well-known/est/fullcmc" do CA.EST.Put.put(conn, [], "Authority", [], "CMC") end
post "/.well-known/est/serverkeygen" do CA.EST.Post.put(conn, [], "Authority", [], "KEYGEN") end

Check warning on line 28 in lib/services/est.ex

View workflow job for this annotation

GitHub Actions / build

CA.EST.Post.put/5 is undefined or private

# See Page 36 of RFC 7030

Expand Down

0 comments on commit c547c8a

Please sign in to comment.