Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CryptoCommand ¶
type CryptoCommand struct {
// embedding cli.BaseCommand in each command
cli.BaseCommand
// inject (bind) flag to field 'Source', 'Encrypt', and 'Decrypt', so that it can be used on Run method, please note that the data type must be pointer
Source *string `flag:"shorthand=s,usage=run with option --source=source text to encrypt or encrypt"`
Encrypt *bool `flag:"shorthand=e,usage=run with option --encrypt or -e for text encryption"`
Decrypt *bool `flag:"shorthand=d,usage=run with option --decrypt or -d for text decryption"`
Key *string `flag:"shorthand=k,usage=run with option --key or -k for rsa key"`
}
define the command
func (*CryptoCommand) OnRsa ¶
func (c *CryptoCommand) OnRsa(args []string) bool
Run OnRsa for crypto command rsa
Source Files
¶
- crypto.go
Click to show internal directories.
Click to hide internal directories.