Skip to content

Commit

Permalink
Name change & version & deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
corrideat committed Sep 11, 2024
1 parent 91aa436 commit 0b4812b
Show file tree
Hide file tree
Showing 19 changed files with 322 additions and 313 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2021 Exact Realty Limited. All rights reserved.
/* Copyright © 2021 Apeleg Limited. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License") with LLVM
* exceptions; you may not use this file except in compliance with the
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright © 2021 Exact Realty Limited. All rights reserved.
/* Copyright © 2021 Apeleg Limited. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License") with LLVM
* exceptions; you may not use this file except in compliance with the
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2024 Exact Realty Limited
Copyright © 2024 Apeleg Limited

Permission to use, copy, modify, and distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright notice
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-rfc8188&metric=bugs)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-rfc8188)
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-rfc8188&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-rfc8188)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=Exact-Realty_ts-rfc8188&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=Exact-Realty_ts-rfc8188)
![NPM Downloads](https://img.shields.io/npm/dw/@exact-realty/rfc8188?style=flat-square)
![NPM Downloads](https://img.shields.io/npm/dw/@apeleghq/rfc8188?style=flat-square)


---
Expand All @@ -22,21 +22,21 @@
To install the package, you can use npm or yarn:

```sh
npm install @exact-realty/rfc8188
npm install @apeleghq/rfc8188
```

or

```sh
yarn add @exact-realty/rfc8188
yarn add @apeleghq/rfc8188
```

### 📚 Usage

#### Decrypting Data

```javascript
import { encodings, decrypt } from '@exact-realty/rfc8188';
import { encodings, decrypt } from '@apeleghq/rfc8188';

// Maximum permissible record size when decrypting. Because the decrypted data
// are buffered until a record is full, not limiting it can result in a very
Expand Down Expand Up @@ -69,7 +69,7 @@ const decryptedDataSteam = decrypt(
#### Encrypting Data

```javascript
import { encodings, encrypt } from '@exact-realty/rfc8188';
import { encodings, encrypt } from '@apeleghq/rfc8188';

// Your readable stream with plaintext
const dataStreamToEncrypt = new ReadableStream();
Expand Down
2 changes: 1 addition & 1 deletion SECURITY
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ vulnerabilities that you may discover.

If you believe you have found a security vulnerability in our software, please
let us know immediately. You may find our contact information at
<https://exact.realty/.well-known/security.txt>. Please include the following
<https://apeleg.com/.well-known/security.txt>. Please include the following
information in your report:

* A brief description of the vulnerability
Expand Down
2 changes: 1 addition & 1 deletion esbuild.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

/* Copyright © 2024 Exact Realty Limited. All rights reserved.
/* Copyright © 2024 Apeleg Limited. All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
Expand Down
Loading

0 comments on commit 0b4812b

Please sign in to comment.