Skip to content

Commit a6a2db8

Browse files
committed
Added route for generating random big integers
1 parent daf5954 commit a6a2db8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

server.go

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ func main() {
2222
router.HandleFunc("/big/invmod/", BigIntInvMod).Methods("POST")
2323
router.HandleFunc("/big/mul/", BigIntMul).Methods("POST")
2424
router.HandleFunc("/big/mod/", BigIntMod).Methods("POST")
25+
router.HandleFunc("/big/rand", CryptoRandBigInt).Methods("GET")
2526
router.HandleFunc("/ec/order", ECOrder)
2627
router.HandleFunc("/ec/add/", ECAdd).Methods("POST")
2728
router.HandleFunc("/ec/sub/", ECSub).Methods("POST")

0 commit comments

Comments
 (0)