• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-client-gateway / 11859571822

15 Nov 2024 04:08PM UTC coverage: 89.506% (+0.08%) from 89.429%
11859571822

push

github

web-flow
Add Blob Encryption (#2130)

2731 of 3394 branches covered (80.47%)

Branch coverage included in aggregate %.

32 of 33 new or added lines in 2 files covered. (96.97%)

1 existing line in 1 file now uncovered.

9133 of 9861 relevant lines covered (92.62%)

426.4 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/domain/interfaces/encryption-api.interface.ts
1
import type { EncryptedBlob } from '@/datasources/accounts/encryption/entities/encrypted-blob.entity';
2

UNCOV
3
export const IEncryptionApi = Symbol('IEncryptionApi');
×
4

5
export interface IEncryptionApi {
6
  encrypt(data: string): Promise<string>;
7

8
  decrypt(data: string): Promise<string>;
9

10
  encryptBlob(data: unknown): Promise<EncryptedBlob>;
11

12
  decryptBlob(data: EncryptedBlob): Promise<unknown>;
13
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc