Made the m and e the PRIVKEY's n and e
This commit is contained in:
parent
606a0f18cc
commit
36123f3eee
1 changed files with 2 additions and 2 deletions
4
main.go
4
main.go
|
@ -302,8 +302,8 @@ func main() {
|
|||
log.Fatal("[ERROR] Failed to convert public key to RSA public key")
|
||||
}
|
||||
|
||||
modulus = publicKey.N
|
||||
exponent = publicKey.E
|
||||
modulus = privateKey.N
|
||||
exponent = privateKey.E
|
||||
|
||||
gin.SetMode(gin.ReleaseMode)
|
||||
router := gin.New()
|
||||
|
|
Reference in a new issue