# encryptSn 加密sn

# 3.10版本提供

# Attributes

属性 类型 必要 默认值 说明
cryptSnStr String Y 需要解密的sn

# 调用示例

window.bridge.encryptSn({cryptSnStr:'xxxx'},res=>{
    if(res.code === 0 && res.encryptSnStr){

    }
})

# callback

属性 类型 必要 默认值 说明
code Number Y 返回状态 0成功 -1失败
encryptSnStr String Y 加密的sn

# 接口返回示例

{
    code:0,
    encryptSnStr:''
}