Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #74 from Root-Core/typos
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
microshine committed Nov 15, 2016
2 parents cc13893 + 8eea506 commit c4e1efa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/crypto/aes.ts
Expand Up @@ -139,4 +139,4 @@ export class AesCrypto extends BaseCrypto {
static decrypt(algorithm: AesCbcParams | AesGcmParams, key: CryptoKey, data: Buffer): PromiseLike<ArrayBuffer> {
return this.EncryptDecrypt(algorithm, key, data, false);
}
}
}
2 changes: 1 addition & 1 deletion lib/crypto/ec.ts
Expand Up @@ -234,4 +234,4 @@ export class EcCrypto extends BaseCrypto {
let _alg = (alg.hash as Algorithm).name.toUpperCase().replace("-", "");
return _alg;
}
}
}
2 changes: 1 addition & 1 deletion lib/crypto/rsa.ts
Expand Up @@ -310,4 +310,4 @@ export class RsaOAEP extends RsaCrypto {
return this.EncryptDecrypt(algorithm, key, data, true);
}

}
}

0 comments on commit c4e1efa

Please sign in to comment.