1
oa414 2015-05-21 23:51:31 +08:00
之前自己做的是随机生成一串16进制数。
```ruby app_secret = SecureRandom.hex(32) ``` |
2
wy315700 2015-05-22 00:05:02 +08:00
/dev/urandom
|
3
powergx 2015-05-22 00:47:33 +08:00 via iPhone
uuid
|
4
julyclyde 2015-05-22 11:45:12 +08:00
考虑到“可吊销性”这个需求,ID和secret不应该有任何算法上的联系
|