Skip to content

Commit

Permalink
feat(crypto): add 'ascii' and 'utf8' to CryptoEncoding type
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Feb 26, 2025
1 parent 4eda55a commit aa2720f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/crypto/src/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export type CryptoAlgorithm = 'md5' | 'sha1' | 'sha224' | 'sha256' | 'sha384' |
* Represents the encoding options for cryptographic operations.
* The encoding can be one of the following: 'base64', 'base64url', 'hex', or 'binary'.
*/
export type CryptoEncoding = 'base64' | 'base64url' | 'hex' | 'binary';
export type CryptoEncoding = 'base64' | 'base64url' | 'hex' | 'ascii' | 'utf8' | 'binary';

0 comments on commit aa2720f

Please # to comment.