File: control

package info (click to toggle)
node-browserify-aes 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 600 kB
  • sloc: sh: 21; makefile: 10
file content (49 lines) | stat: -rw-r--r-- 1,902 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Source: node-browserify-aes
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Bastien Roucariès <rouca@debian.org>,
 Pirate Praveen <praveen@debian.org>
Build-Depends:
 debhelper (>= 11)
 , dh-buildinfo
 , nodejs (>= 4.1)
 , node-create-hash (>= 1.1.0) <!nocheck>
 , node-evp-bytestokey (>= 1.0.3) <!nocheck>
 , node-cipher-base (>= 1.0.0) <!nocheck>
 , node-inherits (>= 2.0.1) <!nocheck>
 , node-buffer-xor (>= 1.0.3) <!nocheck>
 , node-safe-buffer (>= 5.0.1) <!nocheck>
 , node-tape (>=4.6) <!nocheck>
 , node-tap (>=10) <!nocheck>
Standards-Version: 4.1.4
Homepage: https://github.com/crypto-browserify/browserify-aes
Vcs-Git: https://salsa.debian.org/js-team/node-browserify-aes.git
Vcs-Browser: https://salsa.debian.org/js-team/node-browserify-aes

Package: node-browserify-aes
Architecture: all
Depends:
 ${misc:Depends}
 , nodejs (>= 4.1)
 , node-create-hash (>= 1.1.0)
 , node-evp-bytestokey (>= 1.0.3)
 , node-cipher-base (>= 1.0.0)
 , node-inherits (>= 2.0.1)
 , node-buffer-xor (>= 1.0.3)
 , node-safe-buffer (>= 5.0.1)
Description: AES implementation written in pure javascript
 The Advanced Encryption Standard (AES), also known by its original
 name Rijndael is an algorithm for the encryption of data
 established by the U.S. National Institute of Standards and
 Technology (NIST).
 .
 The algorithm described by AES is a symmetric-key algorithm,
 meaning the same key is used for both encrypting and decrypting the data.
 AES is based on a design principle known as a substitution-permutation
 network, a combination of both substitution and permutation.
 Unlike its predecessor DES,  AES does not use a Feistel network.
 AES is a variant of Rijndael which has a fixed block size of 128 bits,
 and a key size of 128, 192, or 256 bits
 .
 Node.js is an event-based server-side JavaScript engine.