Encrypt text into pyoncrypt
Parameter | Description |
---|---|
text (required) |
The text to encrypt, UTF-8 encoded. |
pass |
The password which is used to encrypt text. If omitted, the server-configured default password will be used. |
POST https://api.hakatashi.com/pyoncrypt/encode?text=%E3%81%BB%E3%81%92&pass=password
{
"result": "ぴょぴょこぴょんぴょんぴょーんぴょんぴょ、ぴょぴょんぴょこぴょーんぴょんぴょこぴょ…",
"text": "ほげ"
}
Decrypt pyoncrypt into text
Parameter | Description |
---|---|
text (required) |
The text to decrypt, UTF-8 encoded. |
pass (required) |
The password which is used to decrypt text. |
{
"result": "ほげ",
"text": "ぴょぴょこぴょんぴょんぴょーんぴょんぴょ、ぴょぴょんぴょこぴょーんぴょんぴょこぴょ…"
}