{"openapi":"3.2.0","info":{"title":"AES Encryptor API API","description":"SecureCryptoAPI provides fast and secure AES-256-CBC encryption and decryption for text data. Easily integrate it into your applications to protect sensitive information. Encrypted data is not stored in any database; the API works statelessly.","version":"1.0.0"},"servers":[{"url":"https://ysked.jojapi.net"}],"security":[{"ApiKeyAuth":[]}],"paths":{"/api/decrypt":{"post":{"operationId":"post_api_decrypt","summary":"Decrypt Text","description":"Decrypts AES-256-CBC encrypted text and returns the original plain text.","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":{"encrypted":"c6a72206b29856f8663c52277321cec6"}}}}}},"/api/encrypt":{"post":{"operationId":"post_api_encrypt","summary":"Encrypt Text","description":"Encrypts plain text using AES-256-CBC algorithm and returns the encrypted text.","requestBody":{"content":{"application/json":{"schema":{"type":"object"},"example":{"text":"hello world"}}}}}}},"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"X-JoJAPI-Key","description":"Your JoJ API key."}}}}