-
Notifications
You must be signed in to change notification settings - Fork 31
virgil card create private.1
card-create-private -- create a Private Virgil Card.
virgil card-create-private {--public-key <file>|-e <arg>} {-d <arg>|-f <file>}
[-o <file>] -k <file> [-p <arg>] [-V] [--]
[--version] [-h]
A Virgil Card is the main entity of the Public Keys Service, it includes the information about the user and his public key. The Virgil Card identifies the user by one of his available types, such as an email, a phone number, etc. The Virgil Card might be global and private. The difference is whether Virgil Services take part in the Identity verification. Private Cards are created when a developer is using his own service for verification instead of Virgil Identity Service or avoids verification at all. In this case, validation token is generated using app's Private Key created in our Developer portal.
Connections between Cards can be created. Cards can be with:
- one public key and multiple Identities;
- one public key and one Identity;
- multiple public keys and multiple Identities;
- multiple public keys and one Identity;
- one public key and one Identity connected with
public-key-id
; - one public key and multiple Identities connected with
public-key-id
.
--public-key <file>
(OR required) Public key
-- OR --
-e <arg>, --public-key-id <arg>
(OR required) Public key identifier
-d <arg>, --identity <arg>
(OR required) Identity: type:value
-- OR --
-f <file>, --validated-identity <file>
(OR required) Validated identity. See 'identity-confirm-private'
-o <file>, --out <file>
Private Virgil Card. If omitted, stdout is used.
-k <file>, --key <file>
(required) Private key
-p <arg>, --private-key-password <arg>
Private Key Password.
-V, --VERBOSE
Shows detailed information.
--, --ignore_rest
Ignores the rest of the labeled arguments following this flag.
--version
Displays version information and exits.
-h, --help
Displays usage information and exits.
-
Create a Private Virgil Card with a confirmed Identity:
virgil card-create-private -f alice/validated_identity.txt --public-key alice/public.key -k alice/private.key -o alice/my_card.vcard
-
Create a connection with an already existing a Private Virgil Card with a confirmed Identity by public-key-id:
virgil card-create-private -f alice/validated_identity.txt -e <pub_key_id> -k alice/private.key -o alice/my_card.vcard
-
Create a Private Virgil Card with an unconfirmed Identity:
virgil card-create-private -d <identity_type>:<identity_value> --public-key alice/public.key -k alice/private.key -o alice/anonim_card1.vcard
-
Create a connection with an already existing a Private Virgil Card with an unconfirmed Identity by public-key-id:
virgil card-create-private -d <identity_type>:<identity_value> -e <pub_key_id> -k alice/private.key -o alice/anonim_card2.vcard
virgil(1) virgil-config(1) virgil-keygen(1) virgil-identity-confirm-private(1)