Firebase存储规则中crc32c哈希的格式是什么?

问题描述 投票:1回答:1

我正在尝试使用Firebase存储规则(request.resource.crc32c)中的https://firebase.google.com/docs/reference/security/storage/#properties_2

我的目标是制定类似的规则:

match /blobs/{hash}/{fileName} {
   allow read;
   allow write: if request.resource.crc32c == hash;
}

但是我每次尝试写操作都被拒绝权限。 Firebase文档未提供有关CRC32C哈希格式的任何信息:是hex,int,uint,base64还是其他?

firebase google-cloud-storage firebase-storage
1个回答
0
投票

这是编码为base64字符串的crc32c值的大端表示形式>

© www.soinside.com 2019 - 2024. All rights reserved.