diff --git a/webcrypto/WebCrypto.d.ts b/webcrypto/WebCrypto.d.ts index 069f0ca25..3de5cc71e 100644 --- a/webcrypto/WebCrypto.d.ts +++ b/webcrypto/WebCrypto.d.ts @@ -3,11 +3,4 @@ // Definitions by: Lucas Dixon // Definitions: https://github.com/borisyankov/DefinitelyTyped -declare module crypto { - - // A cryptographically strong pseudo-random number generator seeded with - // truly random values. The buffer passed in is modified, and a reference to - // argument is returned for convenience. - function getRandomValues(array: ArrayBufferView) : ArrayBufferView - -} +// DEPRECATED: use TypeScript 1.5.3 diff --git a/webcrypto/readme.md b/webcrypto/readme.md deleted file mode 100644 index 420dc479f..000000000 --- a/webcrypto/readme.md +++ /dev/null @@ -1,17 +0,0 @@ -# WebCrypto Definition Notes - -## The WebCrypto specification - -The WebCrypto specification is for performing basic cryptographic operations in -web applications, such as hashing, signature generation and verification, and -encryption and decryption. The API is also for applications to generate and/or -manage the keying material necessary to perform these operations. Uses for this -API range from user or service authentication, document or code signing, and the confidentiality and integrity of communications. - -The latest version of the specification can be found at: http://www.w3.org/TR/WebCryptoAPI/ - -## Adding the reference to your project - -``` -/// -```