-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 移除 crypto-js,迁移到原生的 crypto
- Loading branch information
1 parent
fe48b98
commit 0ba1b0d
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import crypto from 'crypto' | ||
|
||
// Base64 编码 | ||
export function base64Encode(str: string): string { | ||
return Buffer.from(str).toString('base64') | ||
} | ||
|
||
// HmacSHA256 加密 | ||
export function hmacSha256Encode(str: string, secret: string): string { | ||
return crypto.createHmac('sha256', secret).update(str).digest('hex') | ||
} |