generate_random_string
Create cryptographically secure random strings with customizable length, character set, and count for enhanced data security and flexibility.
Instructions
Generate a cryptographically secure random string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
charset | No | Character set to use | alphanumeric |
count | No | Number of random strings to generate | |
length | No | Length of the random string |
Input Schema (JSON Schema)
{
"properties": {
"charset": {
"default": "alphanumeric",
"description": "Character set to use",
"enum": [
"alphanumeric",
"alphabetic",
"numeric",
"hex",
"base64",
"ascii_printable"
],
"type": "string"
},
"count": {
"default": 1,
"description": "Number of random strings to generate",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"length": {
"default": 16,
"description": "Length of the random string",
"maximum": 256,
"minimum": 1,
"type": "integer"
}
},
"required": [],
"type": "object"
}