1.4.26 • Published 5 years ago
@aitmed/crypto-sdk-test v1.4.26
AiTmed's Encryption/Decryption SDK
Usage
These methods were built on top of TweetNaCl.js
import services from '@aitmed/crypto-sdk'
async function callSomeApi() {
const deat = await services.createUser({
phone_number: '(555)555-5555',
password: 'letmein123',
verification_code: '00000',
first_name: 'Tom',
last_name: 'Jones',
})
return deat
}
async function callSomeApi() {
const deat = await services.createEdge({
etype: 'CREATE_USER',
apiVersion: 'v1beta1',
name: {
phone_number: '(555)555-5555',
first_name: 'Tom',
last_name: 'Jones',
},
})
return deat
}
Methods Include:
Method | Returns | Description |
---|---|---|
Encryption/Decryption | ||
.generateAKey() | {sk:Uint8Array, pk:Uint8Array} | Generates a keyPair for assymetric encryption/decryption |
.aKeyCheck(publicKey:Uint8Array,secretKey:Uint8Array) | boolean | Checks if the keyPair is a valid one |
.aKeyEncrypt(secretKey:Uint8Array, data:Uint8Array) | Uint8Array | Assymetrically encrypts the given data using a secret key from a valid keyPair |
.aKeyDecrypt: (publicKey: Uint8Array, encryptedData: Uint8Array) | Uint8Array | Decrypts the assymetrically encrypted data using the publicKey from a valid keyPair |
.generateSKey() | Uint8Array | Generates a secretKey for symetrical encryption/decryption |
.sKeyEncrypt(secretKey: Uint8Array, data: Uint8Array) | Uint8Array | Symetrically encrypts data using a secretKey |
.sKeyDecrypt(secretKey: Uint8Array, encryptedData: Uint8Array) | Uint8Array | Decrypts the symetrically encrypted data using the secretKey it was encrypted with |
.uint8ArrayToBase64(data: Uint8Array) | string | Encodes Uint8Array value to base64 string |
.base64ToUint8Array(data: string) | Uint8Array | Decodes string value to Uint8Array |
.uTF8ToUint8Array(data: string) | Uint8Array | Decodes string and returns Uint8Array |
.uint8ArrayToUTF8(data: Uint8Array) | string | Encodes Uint8Array or Array of bytes into string |
Account | ||
.createUser | { status: success, user_id: UUID, token: string,} | creates a user |
.login | { status: success or error} | login a user |
Edges | ||
.createEdge | Edge | creates an edge |
.retrieveEdge | Edge | retrieves an edge |
1.4.26
5 years ago
1.4.25
5 years ago
1.4.24
5 years ago
1.4.22
5 years ago
1.4.23
5 years ago
1.4.21
5 years ago
1.4.20
5 years ago
1.4.18
5 years ago
1.4.17
5 years ago
1.4.16
5 years ago
1.4.13
5 years ago
1.4.15
5 years ago
1.4.14
5 years ago
1.4.12
5 years ago
1.4.9
5 years ago
1.4.11
5 years ago
1.4.10
5 years ago
1.4.8
5 years ago
1.4.7
5 years ago
1.4.6
5 years ago
1.4.5
5 years ago
1.4.4
5 years ago
1.4.3
5 years ago
1.4.2
5 years ago
1.4.1
5 years ago
1.4.0
5 years ago
1.3.9
5 years ago
1.3.8
5 years ago
1.3.7
5 years ago
1.3.6
5 years ago
1.3.5
5 years ago
1.3.4
5 years ago
1.3.3
5 years ago
1.3.2
5 years ago
1.3.1
5 years ago
1.3.0
5 years ago
1.2.9
5 years ago
1.2.8
5 years ago
1.2.7
5 years ago
1.2.6
5 years ago
1.2.3
5 years ago
1.2.2
5 years ago