master
yutent 2023-09-26 11:04:14 +08:00
parent 57783c1d01
commit d07e972e1a
1 changed files with 3 additions and 3 deletions

View File

@ -16,12 +16,12 @@ These two libraries are included in index.js. If you have specific requirements
import { sha1, hmac, md5, base64encode } from '//unpkg.com/crypto.web.js/dist/index.js'
// md5
import { md5, md5Sum } from '//unpkg.com/crypto.web.js/latest/md5.js'
import { md5, md5Sum } from '//unpkg.com/crypto.web.js/dist/md5.js'
// base64
import { base64encode, base64decode } from '//unpkg.com/crypto.web.js/latest/base64.js'
import { base64encode, base64decode } from '//unpkg.com/crypto.web.js/dist/base64.js'
import { sha1, hmac } from '//unpkg.com/crypto.web.js/latest/crypto.js'
import { sha1, hmac } from '//unpkg.com/crypto.web.js/dist/crypto.js'
```