aboutsummaryrefslogtreecommitdiff
path: root/doc/documentation/chapters/user.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/documentation/chapters/user.texi')
-rw-r--r--doc/documentation/chapters/user.texi14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/documentation/chapters/user.texi b/doc/documentation/chapters/user.texi
index 35afdf5f7..50b795197 100644
--- a/doc/documentation/chapters/user.texi
+++ b/doc/documentation/chapters/user.texi
@@ -1920,17 +1920,17 @@ $ gnunet-identity -C "username"
1920 1920
1921Henceforth, you can manage a new user profile of the user ``username''. 1921Henceforth, you can manage a new user profile of the user ``username''.
1922 1922
1923To add an email address to your user profile, simply use the @command{gnunet-idp} command line tool:: 1923To add an email address to your user profile, simply use the @command{gnunet-reclaim} command line tool::
1924 1924
1925@example 1925@example
1926$ gnunet-idp -e "username" -a "email" -V "username@@example.gnunet" 1926$ gnunet-reclaim -e "username" -a "email" -V "username@@example.gnunet"
1927@end example 1927@end example
1928 1928
1929All of your attributes can be listed using the @command{gnunet-idp} 1929All of your attributes can be listed using the @command{gnunet-reclaim}
1930command line tool as well: 1930command line tool as well:
1931 1931
1932@example 1932@example
1933$ gnunet-idp -e "username" -D 1933$ gnunet-reclaim -e "username" -D
1934@end example 1934@end example
1935 1935
1936Currently, and by default, attribute values are interpreted as plain text. 1936Currently, and by default, attribute values are interpreted as plain text.
@@ -1942,7 +1942,7 @@ In the future there might be more value types such as X.509 certificate credenti
1942If you want to allow a third party such as a website or friend to access to your attributes (or a subset thereof) execute: 1942If you want to allow a third party such as a website or friend to access to your attributes (or a subset thereof) execute:
1943 1943
1944@example 1944@example
1945$ gnunet-idp -e "username" -r "PKEY" -i "attribute1,attribute2,..." 1945$ gnunet-reclaim -e "username" -r "PKEY" -i "attribute1,attribute2,..."
1946@end example 1946@end example
1947 1947
1948Where "PKEY" is the public key of the third party and "attribute1,attribute2,..." is a comma-separated list of attribute names, such as "email", that you want to share. 1948Where "PKEY" is the public key of the third party and "attribute1,attribute2,..." is a comma-separated list of attribute names, such as "email", that you want to share.
@@ -1953,7 +1953,7 @@ You must give this "ticket" to the requesting third party.
1953The third party can then retrieve your shared identity attributes using: 1953The third party can then retrieve your shared identity attributes using:
1954 1954
1955@example 1955@example
1956$ gnunet-idp -e "friend" -C "ticket" 1956$ gnunet-reclaim -e "friend" -C "ticket"
1957@end example 1957@end example
1958 1958
1959This will retrieve and list the shared identity attributes. 1959This will retrieve and list the shared identity attributes.
@@ -1962,7 +1962,7 @@ Further, the "ticket" can be re-used later to retrieve up-to-date attributes in
1962 1962
1963To list all given authorizations (tickets) you can execute: 1963To list all given authorizations (tickets) you can execute:
1964@example 1964@example
1965$ gnunet-idp -e "friend" -T (TODO there is only a REST API for this ATM) 1965$ gnunet-reclaim -e "friend" -T (TODO there is only a REST API for this ATM)
1966@end example 1966@end example
1967 1967
1968 1968