12345678910111213141516171819202122 |
- package crypto
- import (
- "net/http"
- "github.com/0xJacky/Nginx-UI/internal/crypto"
- "github.com/gin-gonic/gin"
- "github.com/uozi-tech/cosy"
- )
- // GetPublicKey generates a new ED25519 key pair and registers it in the cache
- func GetPublicKey(c *gin.Context) {
- params, err := crypto.GetCryptoParams()
- if err != nil {
- cosy.ErrHandler(c, err)
- return
- }
- c.JSON(http.StatusOK, gin.H{
- "public_key": params.PublicKey,
- })
- }
|