DeriveJSIntKey derives the Join Server Integrity Key
(key types.AES128Key, devEUI types.EUI64)
| 91 | |
| 92 | // DeriveJSIntKey derives the Join Server Integrity Key |
| 93 | func DeriveJSIntKey(key types.AES128Key, devEUI types.EUI64) types.AES128Key { |
| 94 | return deriveDeviceKey(key, 0x06, devEUI) |
| 95 | } |
| 96 | |
| 97 | // DeriveJSEncKey derives the Join Server Encryption Key |
| 98 | func DeriveJSEncKey(key types.AES128Key, devEUI types.EUI64) types.AES128Key { |