[#SRP_user_pwd_st] = SRP_user_pwd_st :mrdocs: SRP verifier database entry for one user (salt, verifier, and group parameters). == Synopsis Declared in `<openssl/srp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- struct SRP_user_pwd_st; ---- == Data Members [cols="1,4"] |=== | Name| Description | xref:SRP_user_pwd_st/N.adoc[`N`] | Safe prime modulus `N` for the SRP group (not owned; typically points at shared constants). | xref:SRP_user_pwd_st/g.adoc[`g`] | Generator `g` for the SRP group (not owned; typically points at shared constants). | xref:SRP_user_pwd_st/id.adoc[`id`] | User identifier string (owned by this structure). | xref:SRP_user_pwd_st/info.adoc[`info`] | Optional informational string stored with the user entry (owned by this structure). | xref:SRP_user_pwd_st/s.adoc[`s`] | Salt value `s` used when computing the verifier (owned by this structure). | xref:SRP_user_pwd_st/v.adoc[`v`] | Password verifier `v` = gˆx mod N (owned by this structure). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#