-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encrypted PK wallet imports #183
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d2fec01
rsa private-to-public util
mattschoch f5cbde4
POST /import/encryption-key generating RSA keypair for imports
mattschoch 69885a0
Adding encrypted privateKey import
mattschoch fe47c15
Adding lintstaged to root
mattschoch 3c8d638
fix import from refactor/rebase
mattschoch 7fb80ec
Fixing test
mattschoch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
'*.{ts,tsx}': (filenames) => [ | ||
`eslint --no-error-on-unmatched-pattern ${filenames.join(' ')}; echo "ESLint completed with exit code $?"`, | ||
`prettier --write ${filenames.join(' ')}` | ||
] | ||
} | ||
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,151 @@ | ||
import { EncryptionModuleOptionProvider } from '@narval/encryption-module' | ||
import { RsaPublicKey, rsaEncrypt, rsaPublicKeySchema, secp256k1PrivateKeyToJwk } from '@narval/signature' | ||
import { HttpStatus, INestApplication } from '@nestjs/common' | ||
import { ConfigModule } from '@nestjs/config' | ||
import { Test, TestingModule } from '@nestjs/testing' | ||
import request from 'supertest' | ||
import { v4 as uuid } from 'uuid' | ||
import { load } from '../../../main.config' | ||
import { REQUEST_HEADER_API_KEY, REQUEST_HEADER_CLIENT_ID } from '../../../main.constant' | ||
import { KeyValueRepository } from '../../../shared/module/key-value/core/repository/key-value.repository' | ||
import { InMemoryKeyValueRepository } from '../../../shared/module/key-value/persistence/repository/in-memory-key-value.repository' | ||
import { TestPrismaService } from '../../../shared/module/persistence/service/test-prisma.service' | ||
import { getTestRawAesKeyring } from '../../../shared/testing/encryption.testing' | ||
import { Tenant } from '../../../shared/type/domain.type' | ||
import { TenantService } from '../../../tenant/core/service/tenant.service' | ||
import { TenantModule } from '../../../tenant/tenant.module' | ||
|
||
describe('Import', () => { | ||
let app: INestApplication | ||
let module: TestingModule | ||
let testPrismaService: TestPrismaService | ||
|
||
const adminApiKey = 'test-admin-api-key' | ||
const clientId = uuid() | ||
|
||
const PRIVATE_KEY = '0x7cfef3303797cbc7515d9ce22ffe849c701b0f2812f999b0847229c47951fca5' | ||
// Engine key used to sign the approval request | ||
const enginePrivateJwk = secp256k1PrivateKeyToJwk(PRIVATE_KEY) | ||
// Engine public key registered w/ the Vault Tenant | ||
// eslint-disable-next-line | ||
const { d, ...tenantPublicJWK } = enginePrivateJwk | ||
|
||
const tenant: Tenant = { | ||
clientId, | ||
clientSecret: adminApiKey, | ||
engineJwk: tenantPublicJWK, | ||
createdAt: new Date(), | ||
updatedAt: new Date() | ||
} | ||
|
||
beforeAll(async () => { | ||
module = await Test.createTestingModule({ | ||
imports: [ | ||
ConfigModule.forRoot({ | ||
load: [load], | ||
isGlobal: true | ||
}), | ||
TenantModule | ||
] | ||
}) | ||
.overrideProvider(KeyValueRepository) | ||
.useValue(new InMemoryKeyValueRepository()) | ||
.overrideProvider(EncryptionModuleOptionProvider) | ||
.useValue({ | ||
keyring: getTestRawAesKeyring() | ||
}) | ||
.overrideProvider(TenantService) | ||
.useValue({ | ||
findAll: jest.fn().mockResolvedValue([tenant]), | ||
findByClientId: jest.fn().mockResolvedValue(tenant) | ||
}) | ||
.compile() | ||
|
||
app = module.createNestApplication({ logger: false }) | ||
testPrismaService = module.get<TestPrismaService>(TestPrismaService) | ||
await testPrismaService.truncateAll() | ||
|
||
await app.init() | ||
}) | ||
|
||
afterAll(async () => { | ||
await testPrismaService.truncateAll() | ||
await module.close() | ||
await app.close() | ||
}) | ||
|
||
describe('POST /encryption-key', () => { | ||
it('has client secret guard', async () => { | ||
const { status } = await request(app.getHttpServer()) | ||
.post('/import/encryption-key') | ||
// .set(REQUEST_HEADER_CLIENT_ID, clientId) NO CLIENT SECRET | ||
.send({}) | ||
|
||
expect(status).toEqual(HttpStatus.UNAUTHORIZED) | ||
}) | ||
|
||
it('generates an RSA keypair', async () => { | ||
const { status, body } = await request(app.getHttpServer()) | ||
.post('/import/encryption-key') | ||
.set(REQUEST_HEADER_CLIENT_ID, clientId) | ||
.set(REQUEST_HEADER_API_KEY, adminApiKey) | ||
.send({}) | ||
|
||
expect(status).toEqual(HttpStatus.CREATED) | ||
|
||
expect(body).toEqual({ | ||
publicKey: expect.objectContaining({ | ||
kid: expect.any(String), | ||
kty: 'RSA', | ||
use: 'enc', | ||
alg: 'RS256', | ||
n: expect.any(String), | ||
e: expect.any(String) | ||
}) | ||
}) | ||
}) | ||
}) | ||
|
||
describe('POST /private-key', () => { | ||
it('imports an unencrypted private key', async () => { | ||
const { status, body } = await request(app.getHttpServer()) | ||
.post('/import/private-key') | ||
.set(REQUEST_HEADER_CLIENT_ID, clientId) | ||
.set(REQUEST_HEADER_API_KEY, adminApiKey) | ||
.send({ | ||
privateKey: PRIVATE_KEY | ||
}) | ||
|
||
expect(status).toEqual(HttpStatus.CREATED) | ||
expect(body).toEqual({ | ||
id: 'eip155:eoa:0x2c4895215973cbbd778c32c456c074b99daf8bf1', | ||
address: '0x2c4895215973CbBd778C32c456C074b99daF8Bf1' | ||
}) | ||
}) | ||
|
||
it('imports a JWE-encrypted private key', async () => { | ||
const { body: keygenBody } = await request(app.getHttpServer()) | ||
.post('/import/encryption-key') | ||
.set(REQUEST_HEADER_CLIENT_ID, clientId) | ||
.set(REQUEST_HEADER_API_KEY, adminApiKey) | ||
.send({}) | ||
const rsPublicKey: RsaPublicKey = rsaPublicKeySchema.parse(keygenBody.publicKey) | ||
|
||
const jwe = await rsaEncrypt(PRIVATE_KEY, rsPublicKey) | ||
|
||
const { status, body } = await request(app.getHttpServer()) | ||
.post('/import/private-key') | ||
.set(REQUEST_HEADER_CLIENT_ID, clientId) | ||
.set(REQUEST_HEADER_API_KEY, adminApiKey) | ||
.send({ | ||
encryptedPrivateKey: jwe | ||
}) | ||
|
||
expect(body).toEqual({ | ||
id: 'eip155:eoa:0x2c4895215973cbbd778c32c456c074b99daf8bf1', | ||
address: '0x2c4895215973CbBd778C32c456C074b99daF8Bf1' | ||
}) | ||
expect(status).toEqual(HttpStatus.CREATED) | ||
}) | ||
}) | ||
}) |
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
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
12 changes: 12 additions & 0 deletions
12
apps/vault/src/vault/http/rest/dto/generate-encryption-key-response.dto.ts
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,12 @@ | ||
import { RsaPublicKeyDto } from '@narval/nestjs-shared' | ||
import { RsaPublicKey } from '@narval/signature' | ||
import { ApiProperty } from '@nestjs/swagger' | ||
|
||
export class GenerateEncryptionKeyResponseDto { | ||
constructor(publicKey: RsaPublicKey) { | ||
this.publicKey = publicKey | ||
} | ||
|
||
@ApiProperty() | ||
publicKey: RsaPublicKeyDto | ||
} |
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
50 changes: 50 additions & 0 deletions
50
apps/vault/src/vault/persistence/repository/import.repository.ts
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,50 @@ | ||
import { RsaPrivateKey, rsaPrivateKeySchema } from '@narval/signature' | ||
import { Injectable } from '@nestjs/common' | ||
import { z } from 'zod' | ||
import { EncryptKeyValueService } from '../../../shared/module/key-value/core/service/encrypt-key-value.service' | ||
|
||
const importKeySchema = z.object({ | ||
jwk: rsaPrivateKeySchema, | ||
createdAt: z.number() // epoch in seconds | ||
}) | ||
export type ImportKey = z.infer<typeof importKeySchema> | ||
|
||
@Injectable() | ||
export class ImportRepository { | ||
private KEY_PREFIX = 'import:' | ||
|
||
constructor(private keyValueService: EncryptKeyValueService) {} | ||
|
||
getKey(clientId: string, id: string): string { | ||
return `${this.KEY_PREFIX}:${clientId}:${id}` | ||
} | ||
|
||
async findById(clientId: string, id: string): Promise<ImportKey | null> { | ||
const value = await this.keyValueService.get(this.getKey(clientId, id)) | ||
|
||
if (value) { | ||
return this.decode(value) | ||
} | ||
|
||
return null | ||
} | ||
|
||
async save(clientId: string, privateKey: RsaPrivateKey): Promise<ImportKey> { | ||
const createdAt = Date.now() / 1000 | ||
const importKey: ImportKey = { | ||
jwk: privateKey, | ||
createdAt | ||
} | ||
await this.keyValueService.set(this.getKey(clientId, privateKey.kid), this.encode(importKey)) | ||
|
||
return importKey | ||
} | ||
|
||
private encode(importKey: ImportKey): string { | ||
return JSON.stringify(importKey) | ||
} | ||
|
||
private decode(value: string): ImportKey { | ||
return importKeySchema.parse(JSON.parse(value)) | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought we already had it 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not at the root; I had it per-project but it can also go at the root & it'll use the first one it finds, so this ensures it works on the whole monorepo