|
1 |
| -export function signWithPSSMd5(privateKey: Buffer | SignPrivateKeyInput, ...datas: string | Buffer): string; |
2 |
| -export function signWithPSSSha1(privateKey: Buffer | SignPrivateKeyInput, ...datas: string | Buffer): string; |
3 |
| -export function signWithPSSSha256(privateKey: Buffer | SignPrivateKeyInput, ...datas: string | Buffer): string; |
4 |
| -export function signWithPSSSha384(privateKey: Buffer | SignPrivateKeyInput, ...datas: string | Buffer): string; |
5 |
| -export function signWithPSSSha512(privateKey: Buffer | SignPrivateKeyInput, ...datas: string | Buffer): string; |
6 |
| -export function verifyWithPSSMd5(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: string | Buffer): boolean; |
7 |
| -export function verifyWithPSSSha1(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: string | Buffer): boolean; |
8 |
| -export function verifyWithPSSSha256(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: string | Buffer): boolean; |
9 |
| -export function verifyWithPSSSha384(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: string | Buffer): boolean; |
10 |
| -export function verifyWithPSSSha512(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: string | Buffer): boolean; |
| 1 | +export function signWithPSSMd5(privateKey: Buffer | SignPrivateKeyInput, ...datas: (string | Buffer)[]): string; |
| 2 | +export function signWithPSSSha1(privateKey: Buffer | SignPrivateKeyInput, ...datas: (string | Buffer)[]): string; |
| 3 | +export function signWithPSSSha256(privateKey: Buffer | SignPrivateKeyInput, ...datas: (string | Buffer)[]): string; |
| 4 | +export function signWithPSSSha384(privateKey: Buffer | SignPrivateKeyInput, ...datas: (string | Buffer)[]): string; |
| 5 | +export function signWithPSSSha512(privateKey: Buffer | SignPrivateKeyInput, ...datas: (string | Buffer)[]): string; |
| 6 | +export function verifyWithPSSMd5(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: (string | Buffer)[]): boolean; |
| 7 | +export function verifyWithPSSSha1(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: (string | Buffer)[]): boolean; |
| 8 | +export function verifyWithPSSSha256(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: (string | Buffer)[]): boolean; |
| 9 | +export function verifyWithPSSSha384(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: (string | Buffer)[]): boolean; |
| 10 | +export function verifyWithPSSSha512(publicKey: Buffer | VerifyPublicKeyInput, signature: string, ...datas: (string | Buffer)[]): boolean; |
0 commit comments