dongmiyi8220 2017-08-01 02:43
浏览 132
已采纳

如何用安全随机数创建一个大整数

I have this code in java and I need to reproduce in Go.

String nonce = new BigInteger(130, new SecureRandom()).toString(32);

Is the only way to generate a nonce for GDS amadeus soap header 4.

Thanks

  • 写回答

1条回答 默认 最新

  • dou7851 2017-08-01 04:00
    关注

    Use package math/big and crypto/rand. The snippet looks like:

    //Max random value, a 130-bits integer, i.e 2^130 - 1
    max := new(big.Int)
    max.Exp(big.NewInt(2), big.NewInt(130), nil).Sub(max, big.NewInt(1))
    
    //Generate cryptographically strong pseudo-random between 0 - max
    n, err := rand.Int(rand.Reader, max)
    if err != nil {
        //error handling
    }
    
    //String representation of n in base 32
    nonce := n.Text(32)
    

    A working example can be found at The Go Playground.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题