Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@aws-crypto/ie11-detection
Advanced tools
Provides functions and types for detecting if the host environment is IE11
@aws-crypto/ie11-detection is a utility package designed to detect the presence of Internet Explorer 11 (IE11) and its specific cryptographic capabilities. This is particularly useful for applications that need to ensure compatibility with IE11's cryptographic features or need to provide fallbacks for unsupported features.
Detect IE11
This feature allows you to detect if the current browser is Internet Explorer 11. The `isMsWindow` function checks the window object to determine if it matches IE11's characteristics.
const { isMsWindow } = require('@aws-crypto/ie11-detection');
if (isMsWindow(window)) {
console.log('This is IE11');
} else {
console.log('This is not IE11');
}
Detect SubtleCrypto
This feature checks if the SubtleCrypto interface is supported in the current browser. SubtleCrypto is a Web Crypto API that provides cryptographic primitives.
const { supportsSubtleCrypto } = require('@aws-crypto/ie11-detection');
if (supportsSubtleCrypto(window)) {
console.log('SubtleCrypto is supported');
} else {
console.log('SubtleCrypto is not supported');
}
Detect MsCrypto
This feature checks if the MsCrypto interface is supported in the current browser. MsCrypto is a legacy API specific to Internet Explorer for cryptographic operations.
const { supportsMsCrypto } = require('@aws-crypto/ie11-detection');
if (supportsMsCrypto(window)) {
console.log('MsCrypto is supported');
} else {
console.log('MsCrypto is not supported');
}
Bowser is a browser detection library that can identify various browsers and their versions, including Internet Explorer. Unlike @aws-crypto/ie11-detection, Bowser provides a more comprehensive detection of different browsers and their features.
Detect-browser is another library for detecting browser types and versions. It can identify IE11 among other browsers. While it does not specifically focus on cryptographic capabilities, it provides a broader range of browser detection functionalities compared to @aws-crypto/ie11-detection.
UA-Parser-JS is a JavaScript library to parse user-agent strings and identify browser types, versions, and operating systems. It can detect IE11 and other browsers but does not focus on cryptographic capabilities like @aws-crypto/ie11-detection.
Functions for interact with IE11 browsers Crypto. The IE11 window.subtle
functions are unique.
This library is used to identify an IE11 window
and then offering types for crypto functions.
For example see @aws/crypto-random-source-browser
import {isMsWindow} from '@aws/crypto-ie11-detection'
if (isMsWindow(window)) {
// use `window.subtle.mscrypto`
}
npm test
FAQs
Provides functions and types for detecting if the host environment is IE11
We found that @aws-crypto/ie11-detection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.