We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daf5954 commit a6a2db8Copy full SHA for a6a2db8
server.go
@@ -22,6 +22,7 @@ func main() {
22
router.HandleFunc("/big/invmod/", BigIntInvMod).Methods("POST")
23
router.HandleFunc("/big/mul/", BigIntMul).Methods("POST")
24
router.HandleFunc("/big/mod/", BigIntMod).Methods("POST")
25
+ router.HandleFunc("/big/rand", CryptoRandBigInt).Methods("GET")
26
router.HandleFunc("/ec/order", ECOrder)
27
router.HandleFunc("/ec/add/", ECAdd).Methods("POST")
28
router.HandleFunc("/ec/sub/", ECSub).Methods("POST")
0 commit comments