issue_owner_repo
listlengths
2
2
issue_body
stringlengths
0
261k
issue_title
stringlengths
1
925
issue_comments_url
stringlengths
56
81
issue_comments_count
int64
0
2.5k
issue_created_at
stringlengths
20
20
issue_updated_at
stringlengths
20
20
issue_html_url
stringlengths
37
62
issue_github_id
int64
387k
2.46B
issue_number
int64
1
127k
[ "chakra-core", "ChakraCore" ]
At a minimum it could simply pull the current commit's metadata and report commit hash and commit date.
ch.exe needs --version
https://api.github.com/repos/chakra-core/ChakraCore/issues/109/comments
27
2016-01-14T21:11:22Z
2017-02-09T23:52:31Z
https://github.com/chakra-core/ChakraCore/issues/109
126,748,968
109
[ "chakra-core", "ChakraCore" ]
Many Windows applications such as AutoCAD have long embedded the Windows Script Host to allow scripting in VBScript, JavaScript, and other installed Windows Script languages, and there are a lot of system administration scripts written in JavaScript to run under WSH. But Chakra has never been a Windows Script script e...
Plug in ChakraCore to the Windows Script host so it/Chakra can replace JScript 5.8 [suggestion]
https://api.github.com/repos/chakra-core/ChakraCore/issues/108/comments
11
2016-01-14T20:30:17Z
2021-05-13T08:34:52Z
https://github.com/chakra-core/ChakraCore/issues/108
126,741,859
108
[ "chakra-core", "ChakraCore" ]
Per ECMA262: 24.1.2.1ArrayBuffer( length )# ArrayBuffer called with argument length performs the following steps: 1.If NewTarget is undefined, throw a TypeError exception. 2.Let numberLength be ? ToNumber(length). 3.Let byteLength be ToLength(numberLength). 4.If SameValueZero(numberLength, byteLength) is false, throw ...
"new ArrayBuffer()" should throw a RangeError
https://api.github.com/repos/chakra-core/ChakraCore/issues/105/comments
9
2016-01-14T19:40:44Z
2016-11-05T23:09:41Z
https://github.com/chakra-core/ChakraCore/issues/105
126,731,755
105
[ "chakra-core", "ChakraCore" ]
Do you plan to implement `JsVariantToValue` and `JsValueToVariant` methods? In general, will there be added any possibility to embed custom .NET objects into JavaScript engine?
Support of `JsVariantToValue` and `JsValueToVariant` methods
https://api.github.com/repos/chakra-core/ChakraCore/issues/104/comments
3
2016-01-14T18:51:14Z
2016-01-18T14:27:19Z
https://github.com/chakra-core/ChakraCore/issues/104
126,721,463
104
[ "chakra-core", "ChakraCore" ]
Code of Conduct
https://api.github.com/repos/chakra-core/ChakraCore/issues/103/comments
3
2016-01-14T17:41:02Z
2016-01-20T18:07:19Z
https://github.com/chakra-core/ChakraCore/issues/103
126,708,437
103
[ "chakra-core", "ChakraCore" ]
这三个文件: \lib\common\Memory\PageAllocator.h \lib\Runtime\Library\ArgumentsObject.h \lib\Runtime\Library\MathLibrary.cpp warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 需要修改上述三个文件的编码才能正确编译。
Compiler Error under Windows 7 SP1 32-bit Chinese Simplified
https://api.github.com/repos/chakra-core/ChakraCore/issues/99/comments
5
2016-01-14T07:09:32Z
2016-02-02T19:44:30Z
https://github.com/chakra-core/ChakraCore/issues/99
126,595,002
99
[ "chakra-core", "ChakraCore" ]
I was able to observe this in Edge 25.10586.0.0: /[\ud800-\ud805]+/u.exec("\u{10000}\ud801\ud802") should return ["\ud801\ud802] but instead returns["\ud800"], which is the first half of "\u{10000}". The spec requires the input string to be interpreted as a sequence of code points, i.e. surrogate pairs to be combined...
[RegExp] Unicode-mode RegExp incorrectly matches lone surrogates
https://api.github.com/repos/chakra-core/ChakraCore/issues/98/comments
2
2016-01-14T07:02:07Z
2019-06-07T18:36:28Z
https://github.com/chakra-core/ChakraCore/issues/98
126,593,656
98
[ "chakra-core", "ChakraCore" ]
I tried the x64-debug ch.exe to execute the following javascript code, but nothing was output. The expected output should be "Infinity". ``` javascript function fact(n) { if (n < 2) { return 1; } else { return n * fact(n-1); } } print(fact(1000)); ```
A simple javascript factorial function does not produce expected results
https://api.github.com/repos/chakra-core/ChakraCore/issues/95/comments
10
2016-01-14T03:02:22Z
2016-01-14T19:48:02Z
https://github.com/chakra-core/ChakraCore/issues/95
126,567,556
95
[ "chakra-core", "ChakraCore" ]
Re #90, it would be nice to allow ch.exe to work with Release builds of ChakraCore.dll.
Enable ch.exe to work with Release builds of ChakraCore.dll
https://api.github.com/repos/chakra-core/ChakraCore/issues/93/comments
1
2016-01-14T02:39:02Z
2016-01-14T21:51:40Z
https://github.com/chakra-core/ChakraCore/issues/93
126,565,267
93
[ "chakra-core", "ChakraCore" ]
Built x64_release Using Visual Studio 2015 Update 1. When running ch.exe from the command prompt it says: ``` Try 'ch.exe -?' for help ``` When issuing 'ch.exe -?', program reports error: ``` The binary chakracore.dll is not test enabled, please use chakracore.dll from debug/test flavor ```
Building x64_release: ch.exe doesn't do anything
https://api.github.com/repos/chakra-core/ChakraCore/issues/90/comments
7
2016-01-14T01:38:46Z
2016-01-14T21:50:50Z
https://github.com/chakra-core/ChakraCore/issues/90
126,557,137
90
[ "chakra-core", "ChakraCore" ]
Since Internet Explorer use Chakra, and in Internet Explorer one can new-up an ActiveXObject instance to access safe-COM objects, does that mean that this open source version of Chakra can do the same? If so, does that mean I can execute that type of code from within version of node that's bound to Chakra? I want to...
ActiveX
https://api.github.com/repos/chakra-core/ChakraCore/issues/88/comments
3
2016-01-14T01:24:51Z
2016-01-14T19:17:45Z
https://github.com/chakra-core/ChakraCore/issues/88
126,555,420
88
[ "chakra-core", "ChakraCore" ]
I didn't see this already so I hope it isn't a duplicate. I also didn't see it in the roadmap. I read the quick-start guide on embedding ChakraCore, but following this guidance will make it hard to keep an embedded version up to date. https://github.com/Microsoft/ChakraCore/wiki/Embedding-ChakraCore A better s...
ChakraCore NuGet package
https://api.github.com/repos/chakra-core/ChakraCore/issues/85/comments
26
2016-01-14T00:12:06Z
2017-02-22T22:10:43Z
https://github.com/chakra-core/ChakraCore/issues/85
126,546,239
85
[ "chakra-core", "ChakraCore" ]
http://up-for-grabs.net/ has a curated list of tasks which are simple enough to help the community get involved in open source projects. Refer to instructions here for how to get our repo added to the list. https://github.com/up-for-grabs/up-for-grabs.net#add-your-project Thanks to @RichiCoder1 on Gitter for suggesti...
Add ChakraCore to http://up-for-grabs.net/
https://api.github.com/repos/chakra-core/ChakraCore/issues/83/comments
6
2016-01-13T23:16:47Z
2016-01-14T05:39:52Z
https://github.com/chakra-core/ChakraCore/issues/83
126,538,976
83
[ "chakra-core", "ChakraCore" ]
Hi, There's a small typo in the C++ code example at: https://github.com/Microsoft/ChakraCore/wiki/Embedding-ChakraCore "CharkaCore.h" should be "ChakraCore.h". Was just wondering why my VS2015 couldn't find any classes, functions etc. :) ![charka](https://cloud.githubusercontent.com/assets/56779/12309713/8930123c-b...
Small typo in Embedding Chakra Wiki: "CharkaCore.h"
https://api.github.com/repos/chakra-core/ChakraCore/issues/80/comments
1
2016-01-13T22:23:29Z
2016-03-22T21:42:29Z
https://github.com/chakra-core/ChakraCore/issues/80
126,530,046
80
[ "chakra-core", "ChakraCore" ]
Build solutions is working great to produce ChakraCore.dll, but will there ever be an option to create a Java library so we can use this JS engine in our Java applications? Would love to see a portable version of Chakra (one that runs on OS X, Linux, etc.), similar to V8 and Mozilla's JS engines
ChakraCore.jar
https://api.github.com/repos/chakra-core/ChakraCore/issues/79/comments
9
2016-01-13T22:17:38Z
2017-12-16T00:18:12Z
https://github.com/chakra-core/ChakraCore/issues/79
126,529,020
79
[ "chakra-core", "ChakraCore" ]
Except where required for performance/API reasons the c++ code should follow the [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/) and use the [Guidelines Support Library](https://github.com/Microsoft/GSL) to ensure safer code and reduce complexity and security risks Related:[C++11 Language features a...
C++ code should follow the C++ Core Guidelines
https://api.github.com/repos/chakra-core/ChakraCore/issues/78/comments
10
2016-01-13T20:43:50Z
2016-01-15T18:27:47Z
https://github.com/chakra-core/ChakraCore/issues/78
126,508,918
78
[ "chakra-core", "ChakraCore" ]
There is no reason for Microsoft to align itself with the institution of MIT. The [ISC License](https://opensource.org/licenses/ISC) is a functionally equivalent license approved by the Free Software Foundation and is compatible with Node core's license. The ISC License is the preferred license of OpenBSD, among other ...
Change license to ISC
https://api.github.com/repos/chakra-core/ChakraCore/issues/76/comments
13
2016-01-13T19:43:58Z
2016-01-14T20:42:34Z
https://github.com/chakra-core/ChakraCore/issues/76
126,497,503
76
[ "chakra-core", "ChakraCore" ]
In page https://github.com/Microsoft/ChakraCore/wiki/Building-ChakraCore, there is a typo in below step. (thtough->through) Clone ChakraCore thtough git clone https://github.com/Microsoft/ChakraCore.git
Typo in wiki page build chakracore
https://api.github.com/repos/chakra-core/ChakraCore/issues/75/comments
1
2016-01-13T19:14:24Z
2016-03-22T21:42:03Z
https://github.com/chakra-core/ChakraCore/issues/75
126,491,309
75
[ "chakra-core", "ChakraCore" ]
Visiting http://dotnet-ci.cloudapp.net/job/Microsoft_ChakraCore/job/Microsoft_ChakraCore_x86_release/ or any of the other links results in a 404. Also, the images in the Build Status area are missing. ![missing images](https://s3.amazonaws.com/f.cl.ly/items/393b312R021T0n2K3S05/Image%202016-01-13%20at%201.21.52%20PM.p...
Build URLs in README.md are broken
https://api.github.com/repos/chakra-core/ChakraCore/issues/70/comments
4
2016-01-13T18:22:55Z
2016-01-13T18:38:48Z
https://github.com/chakra-core/ChakraCore/issues/70
126,481,406
70
[ "chakra-core", "ChakraCore" ]
I was looking over the code of conduct, out of curiousity and noticed some odd language: > We will prioritize marginalized people's safety over marginalized people's comfort. I assume this is a typo, based on https://github.com/todogroup/opencodeofconduct/blob/gh-pages/index.md: > Our open source community prioritiz...
Typo in CODE_OF_CONDUCT.md
https://api.github.com/repos/chakra-core/ChakraCore/issues/66/comments
1
2016-01-13T18:14:38Z
2016-03-22T21:41:35Z
https://github.com/chakra-core/ChakraCore/issues/66
126,479,721
66
[ "chakra-core", "ChakraCore" ]
See Luke Wagner's reasoning [here](http://discourse.wicg.io/t/request-for-comments-switching-resizing-heaps-in-asm-js/641/22). "While this feature works without issue or slowdown in FF/Edge, the change-heap function interferes with the generic closure analysis that allows V8/JSC to detect and optimize the immutabilit...
Remove change-heap support in asm.js
https://api.github.com/repos/chakra-core/ChakraCore/issues/65/comments
2
2016-01-13T17:57:02Z
2017-06-02T02:15:36Z
https://github.com/chakra-core/ChakraCore/issues/65
126,476,412
65
[ "chakra-core", "ChakraCore" ]
ChakraCore should provide APIs to debug JavaScript
Provide JavaScript debugging support (API) in ChakraCore
https://api.github.com/repos/chakra-core/ChakraCore/issues/61/comments
3
2016-01-13T00:33:41Z
2016-06-14T21:36:29Z
https://github.com/chakra-core/ChakraCore/issues/61
126,311,709
61
[ "chakra-core", "ChakraCore" ]
We probably don't need es6\es6_stable.js and friends anymore - can we remove them? akroshg commented on Nov 30 2015 Agreed. Should we also remove all stable flags from the .xml files? tcare commented on Nov 30 2015 We could, but if we turn a feature off by default (e.g. due to spec change) then we would have to add...
Remove ES6 flag baselines
https://api.github.com/repos/chakra-core/ChakraCore/issues/58/comments
1
2016-01-12T22:00:31Z
2017-05-25T21:19:39Z
https://github.com/chakra-core/ChakraCore/issues/58
126,287,328
58
[ "chakra-core", "ChakraCore" ]
Refactor netci.groovy to reduce code duplication.
https://api.github.com/repos/chakra-core/ChakraCore/issues/50/comments
0
2016-01-12T01:52:57Z
2016-01-22T18:23:40Z
https://github.com/chakra-core/ChakraCore/issues/50
126,079,228
50
[ "chakra-core", "ChakraCore" ]
This will make the contents of the root of our project more legible, and effectively bring the `README` into view sooner on the main page of the project. It will require modifications to most of those scripts and to the `netci.groovy` script itself. The build checks will break on the PR for this change because the Je...
Move jenkins.*.* scripts into a jenkins directory off the project root.
https://api.github.com/repos/chakra-core/ChakraCore/issues/48/comments
11
2016-01-12T01:23:04Z
2016-03-11T06:51:56Z
https://github.com/chakra-core/ChakraCore/issues/48
126,075,983
48
[ "chakra-core", "ChakraCore" ]
We are adding a bunch of new configurations with #18 and #42. With this, I'm wondering if we can include slow tests in some configuration? Right now seems like we are arbitrarily excluding a number of tests.
Include slow tests in some configuration
https://api.github.com/repos/chakra-core/ChakraCore/issues/46/comments
6
2016-01-11T22:41:40Z
2016-01-16T01:24:04Z
https://github.com/chakra-core/ChakraCore/issues/46
126,054,067
46
[ "chakra-core", "ChakraCore" ]
Adapted from test262 https://github.com/tc39/test262/blob/master/test/language/statements/class/name-binding/in-extends-expression-assigned.js ``` var x = (class x extends x {}); // expected: ReferenceError, actual: TypeError ``` The error seen looks like the following: ``` TypeError: Function is not a constructor ...
Class name in extends clause should be ReferenceError
https://api.github.com/repos/chakra-core/ChakraCore/issues/36/comments
5
2016-01-07T22:54:16Z
2016-07-05T21:52:15Z
https://github.com/chakra-core/ChakraCore/issues/36
125,503,580
36
[ "chakra-core", "ChakraCore" ]
Chakra implements [LCG](https://en.wikipedia.org/wiki/Linear_congruential_generator) algorithm for Math.random. Firefox has switched to [XorShift128+](http://vigna.di.unimi.it/ftp/papers/xorshiftplus.pdf). Chrome used to implement MWC1616 and they have switched to xorshift128+ as well. This is a request to update Chakr...
Update Math.random to use xorshift128+
https://api.github.com/repos/chakra-core/ChakraCore/issues/31/comments
5
2016-01-07T17:17:09Z
2016-02-02T18:00:24Z
https://github.com/chakra-core/ChakraCore/issues/31
125,441,818
31
[ "chakra-core", "ChakraCore" ]
As per ES spec [22.2.4.1](http://tc39.github.io/ecma262/#sec-typedarray) We should be loading super from the current function [[prototype]] slot. Instead we always assume super is %TypedArray%. Similarly, we do not pass new.target into %TypedArray% since we do not properly call Construct abstract operation. We need so...
TypedArray constructors do not perform proper super-call to %TypedArray%
https://api.github.com/repos/chakra-core/ChakraCore/issues/29/comments
2
2016-01-07T01:24:40Z
2016-11-05T23:15:35Z
https://github.com/chakra-core/ChakraCore/issues/29
125,301,531
29
[ "chakra-core", "ChakraCore" ]
Test case ``` javascript var f = arguments => arguments; // shouldn't be a syntax error print(f(0)); // should print 0 ``` Similar behavior for _eval_ in place of _arguments_ This also affects _yield_. Looks like the bug is because we are treating arrow parameters as always in strict mode. Refer duplicate OS bug [...
arguments and eval should be allowed as parameter names of arrow functions in non-strict mode
https://api.github.com/repos/chakra-core/ChakraCore/issues/28/comments
1
2016-01-07T01:24:00Z
2016-02-02T19:40:12Z
https://github.com/chakra-core/ChakraCore/issues/28
125,301,456
28
[ "chakra-core", "ChakraCore" ]
Following should parse ``` javascript var x = 10; ({x = 10} = {}); ``` Actual: Syntax error Refer OS bug [3887967](https://microsoft.visualstudio.com/web/wi.aspx?pcguid=cb55739e-4afe-46a3-970f-1b49d8ee7564&id=3887967)
Object destructuring issue: Initializer on shorthand should not throw syntax error
https://api.github.com/repos/chakra-core/ChakraCore/issues/27/comments
5
2016-01-07T01:22:26Z
2016-02-25T23:12:33Z
https://github.com/chakra-core/ChakraCore/issues/27
125,301,295
27
[ "chakra-core", "ChakraCore" ]
Lowerer::Lower ([Lower.cpp](https://github.com/Microsoft/ChakraCore/blob/master/lib/Backend/Lower.cpp)) doesn't generate any fast path for loading super and super constructor. It just delegates to C++ helper. Generating a simple fast path will improve the performance of jit code for constructors with super call. ``` C...
Generate fast path for both LdSuper and LdSuperCtor
https://api.github.com/repos/chakra-core/ChakraCore/issues/26/comments
0
2016-01-07T01:21:20Z
2016-02-25T23:32:53Z
https://github.com/chakra-core/ChakraCore/issues/26
125,301,163
26
[ "chakra-core", "ChakraCore" ]
Following test case is failing in [kangax](https://kangax.github.io/compat-table/es6/) ``` javascript var passed = false; new function f() { passed = (new.target === f); }(); try { Function("new.target = function(){};"); } catch(e) { return passed; } ```
Assignment to new.target should be an early error
https://api.github.com/repos/chakra-core/ChakraCore/issues/25/comments
3
2016-01-07T01:20:16Z
2016-03-26T02:40:54Z
https://github.com/chakra-core/ChakraCore/issues/25
125,301,056
25
[ "chakra-core", "ChakraCore" ]
As per exponentiation stage [3 spec](http://rwaldron.github.io/exponentiation-operator/#unary-operators) -5**2 should be an early error. This is a spec update from [September TC39 meeting](https://esdiscuss.org/topic/september-tc39-meeting-notes).
Exponentiation operator should throw early syntax error for unary negation without parens
https://api.github.com/repos/chakra-core/ChakraCore/issues/24/comments
2
2016-01-07T01:19:34Z
2016-03-08T18:44:29Z
https://github.com/chakra-core/ChakraCore/issues/24
125,300,987
24
[ "chakra-core", "ChakraCore" ]
Array.prototype.includes ([spec](https://github.com/tc39/Array.prototype.includes)) is in stage 4 of ES2016 spec. This needs to be enabled by default for ChakraCore and Edge. This built-in is currently under -ES7Builtins flag and can be enabled through experimental flag. Note Array.prototype.includes should be added ...
Enable Array.prototype.includes by default
https://api.github.com/repos/chakra-core/ChakraCore/issues/23/comments
1
2016-01-07T01:19:02Z
2016-03-10T23:16:08Z
https://github.com/chakra-core/ChakraCore/issues/23
125,300,925
23
[ "chakra-core", "ChakraCore" ]
Following test should should return true. ``` javascript var arr = [1,2,3]; var iterableObj = { [Symbol.iterator]: ()=> { return { next: () => { return { value: arr.shift(), done: arr.length == 0 }; } };...
Typed array constructors should accept generic iterables
https://api.github.com/repos/chakra-core/ChakraCore/issues/22/comments
3
2016-01-07T01:18:06Z
2016-02-02T16:42:54Z
https://github.com/chakra-core/ChakraCore/issues/22
125,300,841
22
[ "chakra-core", "ChakraCore" ]
This is a [kangax](http://kangax.github.io/compat-table/es6/) [test case](https://kangax.github.io/compat-table/es6/#test-String.prototype_HTML_methods) ``` javascript function foo(){ return "𐐘".toLowerCase() === "𐑀" && "𐑀".toUpperCase() === "𐐘"; } print(foo()); ``` Expected: true Actual: false
String.prototype.toLowerCase and String.prorotype.toUpperCase built-ins should support unicode
https://api.github.com/repos/chakra-core/ChakraCore/issues/21/comments
1
2016-01-07T01:17:23Z
2016-02-08T18:56:17Z
https://github.com/chakra-core/ChakraCore/issues/21
125,300,758
21
[ "chakra-core", "ChakraCore" ]
ES [spec](http://tc39.github.io/ecma262/#sec-html-like-comments) has detailed semantics of HTML style comments. Test case ``` javascript print((function(){ --> A comment <!-- Another comment var a = 3; <!-- Another comment return a === 3; })()); ``` Expected: true Actual: Syntax error
Support HTML-style comments
https://api.github.com/repos/chakra-core/ChakraCore/issues/20/comments
0
2016-01-07T01:16:38Z
2016-03-02T00:37:40Z
https://github.com/chakra-core/ChakraCore/issues/20
125,300,674
20
[ "chakra-core", "ChakraCore" ]
@tcare has suggested adding an auto-code-review service via chakrabot account for this type of issue rather than blocking PRs on non-functional issues. Details: We don't want to block builds by having an extra check for style. What we would like to have instead is an auto code-review bot that will make comments about...
Add auto code-review checks: tabs, trailing whitespace, etc.
https://api.github.com/repos/chakra-core/ChakraCore/issues/12/comments
3
2016-01-06T19:47:47Z
2016-05-03T21:20:47Z
https://github.com/chakra-core/ChakraCore/issues/12
125,248,563
12
[ "chakra-core", "ChakraCore" ]
Include support for exceptions for files that should not contain the Microsoft copyright notice for various reasons (e.g. would be rendered in markdown, format of file doesn't support comments, included in this repo under a different license, etc.) This should run as a separate Jenkins CI task from the already existin...
[Continuous Integration] Add check for Microsoft copyright headers in committed files
https://api.github.com/repos/chakra-core/ChakraCore/issues/11/comments
1
2016-01-06T19:46:58Z
2016-01-12T01:07:33Z
https://github.com/chakra-core/ChakraCore/issues/11
125,248,424
11
[ "chakra-core", "ChakraCore" ]
Add additional build tasks which will only run once per day but will test additional scenarios. Daily task for each of [ {x86,x64,arm} x {debug,test,release} ] which are done for every commit to master and every pull request. These tasks use Windows Server 2012 R2 + VS 2015 (the default configuration of windows build ...
[Continuous Integration] Jenkins Daily Build Tasks
https://api.github.com/repos/chakra-core/ChakraCore/issues/10/comments
0
2016-01-06T19:45:42Z
2016-01-09T05:17:24Z
https://github.com/chakra-core/ChakraCore/issues/10
125,248,177
10
[ "chakra-core", "ChakraCore" ]
Search for IR_VIEWER macro etc in the code. Make this tool work with the ch.exe binary.
Revive IR Viewer
https://api.github.com/repos/chakra-core/ChakraCore/issues/9/comments
1
2016-01-06T19:44:44Z
2016-05-03T21:18:49Z
https://github.com/chakra-core/ChakraCore/issues/9
125,248,014
9
[ "chakra-core", "ChakraCore" ]
When an OutOfMemory error occurred in ch.exe, the program crashed without logging an error message. The exception in this particular case is thrown within the ArrayBuffer::ArrayBuffer constructor, but it is handled by code within ch.exe and it seems to be swallowed up without logging a message before the process dies....
Allocation failed silently in some AsmJs tests
https://api.github.com/repos/chakra-core/ChakraCore/issues/8/comments
4
2016-01-06T19:19:49Z
2016-02-02T19:45:00Z
https://github.com/chakra-core/ChakraCore/issues/8
125,242,661
8
[ "chakra-core", "ChakraCore" ]
As per [this](http://tc39.github.io/ecma262/#sec-functiondeclarations-in-ifstatement-statement-clauses) section of ECMA spec, chakra should throw syntax error for below code, but it accepts it without errors. ``` javascript (function() { "use strict"; if (true) function f() { } })() ```
Chakra doesn't throw SyntaxError if function is declared in statement context
https://api.github.com/repos/chakra-core/ChakraCore/issues/7/comments
5
2016-01-06T18:49:31Z
2016-01-20T21:52:01Z
https://github.com/chakra-core/ChakraCore/issues/7
125,237,416
7
[ "chakra-core", "ChakraCore" ]
Here's my reasoning: - switches were provided for allowing disabling unstable features for engineering infrastructure and RI - **old features are now stable and any bugs in them are not going to cause us to disable the feature** - I cannot think of any reason else why we would want to disable a given feature - oldest s...
Remove oldest ES6 feature switches
https://api.github.com/repos/chakra-core/ChakraCore/issues/6/comments
6
2016-01-06T18:25:10Z
2018-02-24T03:04:54Z
https://github.com/chakra-core/ChakraCore/issues/6
125,233,166
6
[ "chakra-core", "ChakraCore" ]
Looks like some state is not changed correctly on debugger detach, so when reattaching debugger after the profiling completes, the asm.js->js frame conversion still happens.
performance tab crashes in f12 on pages with asm.js
https://api.github.com/repos/chakra-core/ChakraCore/issues/1/comments
0
2016-01-05T20:05:42Z
2016-01-09T01:15:31Z
https://github.com/chakra-core/ChakraCore/issues/1
125,040,301
1
[ "weidai11", "cryptopp" ]
### Crypto++ Issue Report some of the static functions could have a better definition...
Poor naming convention 4 "x" n of functions
https://api.github.com/repos/weidai11/cryptopp/issues/1287/comments
0
2024-08-08T20:42:30Z
2024-08-08T20:42:30Z
https://github.com/weidai11/cryptopp/issues/1287
2,456,591,731
1,287
[ "weidai11", "cryptopp" ]
Why the http://www.cryptopp.com is not accessible?
cryptopp.com is not working
https://api.github.com/repos/weidai11/cryptopp/issues/1286/comments
0
2024-08-02T10:15:32Z
2024-08-02T10:50:43Z
https://github.com/weidai11/cryptopp/issues/1286
2,444,633,450
1,286
[ "weidai11", "cryptopp" ]
I see that expected assertion failure was reported at least twice: * #1281 * #1273 Can a message be added that this test may deliberately fail an assertion to avoid users being alerted?
Can test in debug print a message that it is about to deliberately fail an assertion?
https://api.github.com/repos/weidai11/cryptopp/issues/1285/comments
0
2024-08-01T11:09:41Z
2024-08-01T11:09:41Z
https://github.com/weidai11/cryptopp/issues/1285
2,442,173,359
1,285
[ "weidai11", "cryptopp" ]
This site can’t be reachedwww.cryptopp.com took too long to respond. http://www.cryptopp.com/ For 7 days+
(http://www.cryptopp.com/) This site can’t be reachedwww.cryptopp.com took too long to respond.
https://api.github.com/repos/weidai11/cryptopp/issues/1283/comments
0
2024-07-22T08:49:03Z
2024-07-22T12:50:31Z
https://github.com/weidai11/cryptopp/issues/1283
2,422,310,948
1,283
[ "weidai11", "cryptopp" ]
HTTP and HTTPS are down for cryptopp.com and www.cryptopp.com . ![image](https://github.com/user-attachments/assets/a5016df8-dce9-45ff-9a2d-effe011546c3)
www.cryptopp.com website offline
https://api.github.com/repos/weidai11/cryptopp/issues/1282/comments
4
2024-07-18T15:18:43Z
2024-08-08T20:43:24Z
https://github.com/weidai11/cryptopp/issues/1282
2,416,711,797
1,282
[ "weidai11", "cryptopp" ]
Hi, first, thank you for maintaining this great repo! There is a problem when running `cryptest.exe v` in Windows, specifically Github windows workflows, not all assertions pass. I've made a [fork](https://github.com/baderouaich/cryptopp-windows-ci) with windows workflow action so you guys can check it out. ### C...
Some cryptest assertions didn't pass on Windows
https://api.github.com/repos/weidai11/cryptopp/issues/1281/comments
0
2024-07-14T12:09:25Z
2024-07-18T16:49:47Z
https://github.com/weidai11/cryptopp/issues/1281
2,407,406,115
1,281
[ "weidai11", "cryptopp" ]
While developing support for an external app that uses the HC-256 cipher, I noticed inconsistencies with the `CryptoPP::HC256` algorithm's output. Further digging showed that when either the key or IV contain non-repeating bytes (e.g. not just all `00` or `36`...), the output does not match that of other libraries, or ...
HC-256 Inconsistent with Other Libraries
https://api.github.com/repos/weidai11/cryptopp/issues/1280/comments
7
2024-06-27T15:42:00Z
2024-08-09T13:30:56Z
https://github.com/weidai11/cryptopp/issues/1280
2,378,500,043
1,280
[ "weidai11", "cryptopp" ]
OS: Windows 10 19045.4529 x64 Crypto++ version: on commit ([Guard use of ModularSquareRoot (GH](https://github.com/weidai11/cryptopp/commit/9aa07aebbdc62461c3ac32f958d7c3ab89ff6f73) https://github.com/weidai11/cryptopp/issues/1249[)](https://github.com/weidai11/cryptopp/commit/9aa07aebbdc62461c3ac32f958d7c3ab89ff6f73)...
GenerateRandomWithKeySize calls debug break
https://api.github.com/repos/weidai11/cryptopp/issues/1279/comments
1
2024-06-23T15:47:06Z
2024-06-23T16:13:01Z
https://github.com/weidai11/cryptopp/issues/1279
2,368,646,631
1,279
[ "weidai11", "cryptopp" ]
When we compile a universal binary (x86_64 + arm64) on an Intel macOS, a warning message shows, but compilation and validation tests succeed. Is this a deeper problem or just a flag validation problem? Anyway, this compilation should succeed without warnings. Command: ```shell CXXFLAGS="-DNDEBUG -g2 -O3 -stdlib=li...
Warning when compiling universal binary (x86_64 + arm64) on macOS
https://api.github.com/repos/weidai11/cryptopp/issues/1277/comments
0
2024-05-31T15:17:08Z
2024-05-31T15:45:29Z
https://github.com/weidai11/cryptopp/issues/1277
2,328,074,512
1,277
[ "weidai11", "cryptopp" ]
I have tried to compile the library in a Windows environment but I have not succeeded, so far I have tried several ways but it gives me an error, any suggestions on how I can do it, thanks in advance, I have Windows 11 and Qt creator installed, precisely to use it in I want to compile the library in that environment.
How can I compile for windows with mingw?
https://api.github.com/repos/weidai11/cryptopp/issues/1276/comments
1
2024-05-25T16:49:28Z
2024-06-10T14:01:03Z
https://github.com/weidai11/cryptopp/issues/1276
2,317,133,527
1,276
[ "weidai11", "cryptopp" ]
Maybe already reported, just FYI. With stringop-overflow warning enabled, I get one (only one) warning when building 8.9.0: esign.cpp: In member function ‘virtual void CryptoPP::InvertibleESIGNFunction::GenerateRandom(CryptoPP::RandomNumberGenerator&, const CryptoPP::NameValuePairs&)’: esign.cpp:115:28: warning: ‘...
Warning in esign.cpp with 8.9.0 and gcc-14.1
https://api.github.com/repos/weidai11/cryptopp/issues/1275/comments
0
2024-05-08T17:12:29Z
2024-05-08T17:12:29Z
https://github.com/weidai11/cryptopp/issues/1275
2,286,068,394
1,275
[ "weidai11", "cryptopp" ]
> Assertion failed:integer.cpp(3049):Integer When I use cryptopp library to encrypt and decrypt, this problem occured suddenly.
Assertion failed: integer.cpp(3049):Integer
https://api.github.com/repos/weidai11/cryptopp/issues/1273/comments
1
2024-04-19T09:41:59Z
2024-04-19T12:34:19Z
https://github.com/weidai11/cryptopp/issues/1273
2,252,548,473
1,273
[ "weidai11", "cryptopp" ]
### Crypto++ Issue Report **Compilation issue with clang on X86** ILNS_9CipherDirE0ENS_8Rijndael3EncEEES9_EEEE[_ZTVN8CryptoPP13AlgorithmImplINS_20ConcretePolicyHolderINS_5EmptyENS_22AdditiveCipherTemplateINS_20AbstractPolicyHolderINS_28AdditiveCipherAbstractPolicyENS_14CTR_ModePolicyEEEEES5_EENS_36CipherModeFinalT...
Compilation issue with clang on X86
https://api.github.com/repos/weidai11/cryptopp/issues/1272/comments
0
2024-04-15T16:45:19Z
2024-04-15T16:45:19Z
https://github.com/weidai11/cryptopp/issues/1272
2,244,157,717
1,272
[ "weidai11", "cryptopp" ]
gpg: Signature made Sun 01 Oct 2023 12:53:50 PM EDT gpg: using RSA key B8CC19802062211A508B2F5CCE0586AF1F8E37BD gpg: Good signature from "Jeffrey Walton (Crypto++ Release) <noloader@gmail.com>" [expired] gpg: Note: This key has expired! Primary key fingerprint: B8CC 1980 2062 211A 508B 2F5C CE05 86A...
PGP signing key has expired
https://api.github.com/repos/weidai11/cryptopp/issues/1271/comments
0
2024-04-11T13:38:36Z
2024-04-11T13:38:36Z
https://github.com/weidai11/cryptopp/issues/1271
2,237,751,945
1,271
[ "weidai11", "cryptopp" ]
# Problem I am using Donna Functions to generate two key pair and generate shared key for both side with function [`curve25519_mult`](https://github.com/weidai11/cryptopp/blob/782057f5f18fbdad2bd2b291fb1ec558a8ab8225/donna.h#L57) .But the key generated twice is not the same. - I searched through the Internet for ans...
[x25519] donna function `curve25519_mult` generated different shared key
https://api.github.com/repos/weidai11/cryptopp/issues/1270/comments
1
2024-04-08T05:15:25Z
2024-04-08T07:38:27Z
https://github.com/weidai11/cryptopp/issues/1270
2,230,277,955
1,270
[ "weidai11", "cryptopp" ]
I typically never use Crypto++, but I had to yesterday, and I then experienced a strange behavior that I felt I had to somehow report. Having read your [security policy](https://github.com/weidai11/cryptopp/security/policy), I decided that the appropriate course of action was to open an issue here. ### Background I...
ECP::ScalarMultiply() may seemingly miscompute for small scalars when using Ubuntu 20.04.6 LTS on 64-bit Intel CPUs
https://api.github.com/repos/weidai11/cryptopp/issues/1269/comments
6
2024-04-06T13:04:46Z
2024-05-06T18:48:10Z
https://github.com/weidai11/cryptopp/issues/1269
2,229,234,040
1,269
[ "weidai11", "cryptopp" ]
Updated: The problem raises from g++ (13.2.0) environment detection. The g++ compiler works well with: CXX=/mingw64/bin/g++ make all But does not work correctly with: CXX="D:\\msys64\\mingw64\\bin\\g++.exe" make (it adds more flag -DCRYPTOPP_DISABLE_ASM and then some classes like integer, do not work correctly) ...
Integer class errors
https://api.github.com/repos/weidai11/cryptopp/issues/1268/comments
0
2024-04-04T02:07:48Z
2024-06-10T14:00:18Z
https://github.com/weidai11/cryptopp/issues/1268
2,224,290,957
1,268
[ "weidai11", "cryptopp" ]
### Crypto++ Issue Report The CryptoPP allocation code is vulnerable to infinite executions in case of memory exhaustion conditions. Submitted a PR to perform a fail safe operation (throw bad_alloc) instead of looping forever. Issue will likely affect all platforms. On top of this fix, I recommend having more ...
Infinite execution behavior in main branch
https://api.github.com/repos/weidai11/cryptopp/issues/1267/comments
0
2024-03-18T19:51:25Z
2024-03-18T19:51:25Z
https://github.com/weidai11/cryptopp/issues/1267
2,193,146,946
1,267
[ "weidai11", "cryptopp" ]
Hello there, Thank you very much for providing support for this open source project. One project I'm currently working on currently uses Crypto++ and has a need for performing mathematical operations on Hyperelliptic Curves (specifically genus 2). While libraries such as [libg2hec](https://github.com/syncom/li...
Add support for Elliptic Curves of Genus n (Hyperelliptic Curves)
https://api.github.com/repos/weidai11/cryptopp/issues/1265/comments
0
2024-03-16T07:41:38Z
2024-03-16T07:41:38Z
https://github.com/weidai11/cryptopp/issues/1265
2,189,842,582
1,265
[ "weidai11", "cryptopp" ]
env: MacBook Pro Apple M3 ld.lld: error: duplicate symbol: CryptoPP::CallNewHandler() >>> defined at allocate.cpp:29 (/Users/XXXX/Documents/work/lib-encrypt/EMCrypto/src/main/cpp/cryptopp/allocate.cpp:29) >>> allocate.cpp.o:(CryptoPP::CallNewHandler()) in archive libcryptopp.a >>> defined at misc.cpp...
ld.lld: error: duplicate symbol: CryptoPP::CallNewHandler()
https://api.github.com/repos/weidai11/cryptopp/issues/1263/comments
0
2024-03-09T07:42:51Z
2024-03-09T07:42:51Z
https://github.com/weidai11/cryptopp/issues/1263
2,177,114,808
1,263
[ "weidai11", "cryptopp" ]
Hi Team, We are writing to report a potential security issue about the implementation of Elgamal Encryption in Cryptopp. Specifically, we cloned Cryptopp-8.9 from [cryptopp.com](http://cryptopp.com/) on February 1, 2024 and analyzed the source code of the Elgamal encryption scheme (more precisely, [elgamal.h](ht...
Leak the Secret Key of Elgamal Encryption in Cryptopp via Rowhammer
https://api.github.com/repos/weidai11/cryptopp/issues/1262/comments
1
2024-02-19T04:50:15Z
2024-05-22T18:34:33Z
https://github.com/weidai11/cryptopp/issues/1262
2,141,498,668
1,262
[ "weidai11", "cryptopp" ]
null
Compilation fails using MSYS2 CLANGARM64 toolchain
https://api.github.com/repos/weidai11/cryptopp/issues/1260/comments
0
2024-01-27T00:00:10Z
2024-03-06T04:24:34Z
https://github.com/weidai11/cryptopp/issues/1260
2,103,076,475
1,260
[ "weidai11", "cryptopp" ]
### Crypto++ Issue Report Hi, this repo this too large, our project is using this repo as git submodule, but often failed to git clone this repo due to rpc connection timeout. Any advice / workaround would be appreciate.
repo too large, git clone often failed due to rpm connection timeout
https://api.github.com/repos/weidai11/cryptopp/issues/1259/comments
0
2024-01-24T09:10:13Z
2024-01-24T09:10:13Z
https://github.com/weidai11/cryptopp/issues/1259
2,097,785,955
1,259
[ "weidai11", "cryptopp" ]
I use the following code for signature verification, and it seems that there is a memory leak that occurred in the function RSA_VerifyStr,inside the StringSource, I don't know what caused it, I hope to receive a response. cryptopp version is 8.6.0,operating system is win10,IDE is vs2022 `#include <string> #incl...
Memory leak in signature verification
https://api.github.com/repos/weidai11/cryptopp/issues/1258/comments
3
2024-01-13T04:06:43Z
2024-06-11T06:43:37Z
https://github.com/weidai11/cryptopp/issues/1258
2,080,056,465
1,258
[ "weidai11", "cryptopp" ]
Hi, I really need help with this done: I have simple program, which is working fine except for deleting part I use VS2015 and my Settings or my program are: General: (Unicode + Use MFC in a Shared DLL) Link: Multi-threaded DLL (/MD) link with static lib "cryptlib.lib" code ``` #define CRYPTOPP_DEFAULT...
destructor delete problem with own dialog program with MFC (Unicode/Use MFC in a Shared DLL) VS2015
https://api.github.com/repos/weidai11/cryptopp/issues/1256/comments
0
2024-01-02T14:51:54Z
2024-01-02T14:52:39Z
https://github.com/weidai11/cryptopp/issues/1256
2,062,529,664
1,256
[ "weidai11", "cryptopp" ]
Thank you so much for many years of hard work and devotion. This isn’t really an issue but a question. Unfortunately the Google group is down. I am working with a database of cipher texts derived using PBKDF2 HMAC SHA2 256 key derivation function in Python Django. I am migrating the application to C++ so I chose...
Django cipher texts not matching Crypto++ cipher texts.
https://api.github.com/repos/weidai11/cryptopp/issues/1254/comments
0
2023-12-18T04:44:04Z
2023-12-18T04:44:04Z
https://github.com/weidai11/cryptopp/issues/1254
2,045,727,660
1,254
[ "weidai11", "cryptopp" ]
Operating system and version (Ubuntu 18.04) version of the Crypto++ library (Crypto++ 8.8.0) I got some unusual output from the fuzzer. Tried to analyze what this was. ```bash Successfully executed: ./ChaCha20-Poly1305_id:012769,sync:afl0,src:012806 Output: INFO: Seed: 3188957293 INFO: Loaded 1 modules (309...
Poly1305 null pointer passed as argument 1
https://api.github.com/repos/weidai11/cryptopp/issues/1253/comments
1
2023-12-13T09:26:08Z
2023-12-13T09:41:14Z
https://github.com/weidai11/cryptopp/issues/1253
2,039,295,906
1,253
[ "weidai11", "cryptopp" ]
In the current form, Crypto++ will compile the library with optimal settings for the current build machine. However in many cases (as mine) we need to compile a generic version of the library such that the resulting binary can be redistributed. If Crypto++ is build on a high end machine and then shipped to a cl...
Crypto++ needs to support a fixed target
https://api.github.com/repos/weidai11/cryptopp/issues/1252/comments
2
2023-12-08T20:13:21Z
2023-12-09T05:49:26Z
https://github.com/weidai11/cryptopp/issues/1252
2,033,257,786
1,252
[ "weidai11", "cryptopp" ]
Hi, A week ago I updated crypto to the latest version and recently I discovered that my program sometimes crashes on the release version. I tried opening it to debug mode. start the program and then stop. Is there anything unusual about statically linking crypto.lib? I haven't run any functions yet. it just linked u...
Memory leak problem!!
https://api.github.com/repos/weidai11/cryptopp/issues/1251/comments
2
2023-12-06T16:00:57Z
2023-12-07T11:43:33Z
https://github.com/weidai11/cryptopp/issues/1251
2,028,888,083
1,251
[ "weidai11", "cryptopp" ]
I`m seeing compiler warnings since the latest VS 2022 update (17.8.0) on Windows 11 with the latest cryptopp 8.9 `17:30:31:685 1>X:\cryptopp\integer.cpp(3061,12): warning C4996: 'stdext::make_checked_array_iterator': warning STL4043: stdext::checked_array_iterator, stdext::unchecked_array_iterator, and related facto...
Compile warnings in VS 2022 17.8.0 - stdext::make_checked_array_iterator stdext::make_unchecked_array_iterator beeing deprecated
https://api.github.com/repos/weidai11/cryptopp/issues/1250/comments
1
2023-11-21T16:35:32Z
2024-01-31T14:22:59Z
https://github.com/weidai11/cryptopp/issues/1250
2,004,715,353
1,250
[ "weidai11", "cryptopp" ]
Hi, recently I found a security issue in the [ModularSquareRoot](https://github.com/weidai11/cryptopp/blob/3e3b8af96d4d957b77588be91df7715efbe2ed69/nbtheory.cpp#L544) function of `Crypto++` library that would cause an infinite loop, since this function is being used in [ECP::DecodePoint](https://github.com/weidai11/cry...
A security issue in the `ModularSquareRoot` function leads to a DOS attack
https://api.github.com/repos/weidai11/cryptopp/issues/1249/comments
8
2023-11-20T11:59:01Z
2024-08-08T04:17:46Z
https://github.com/weidai11/cryptopp/issues/1249
2,002,042,178
1,249
[ "weidai11", "cryptopp" ]
Hi, recently I found a security issue in the `Crypto++` library that would cause a segmentation fault when parsing DER public key files of the `F(2^m)` class curves, an attacker could potentially craft a malformed DER public key file, and any user or server attempting to read this public key file in processes such as `...
EC2N::DecodePoint can crash if exponents are not in descending order
https://api.github.com/repos/weidai11/cryptopp/issues/1248/comments
2
2023-11-20T06:28:23Z
2023-11-22T02:37:26Z
https://github.com/weidai11/cryptopp/issues/1248
2,001,460,069
1,248
[ "weidai11", "cryptopp" ]
### Crypto++ Issue Report I've verified that the Crypto++ is vulnerable to the [Marvin Attack](https://people.redhat.com/~hkario/marvin/)—a timing variant of the well-known Bleichenbacher attack. I've executed the test on ArchLinux, using crypto++ 8.9.0 from the Arch repository. The reproducer is available in th...
Crypto++ vulnerable to the Marvin Attack
https://api.github.com/repos/weidai11/cryptopp/issues/1247/comments
1
2023-11-12T12:57:41Z
2024-01-29T00:45:42Z
https://github.com/weidai11/cryptopp/issues/1247
1,989,391,420
1,247
[ "weidai11", "cryptopp" ]
Hello. At `https://www.cryptopp.com/wiki/RDRAND_and_RDSEED`: Links tied to - _Documentation_ | `http://www.cryptopp.com/docs/ref/class_rdrand.html` - _Intel's RDRAND is designed to never underflow_ | `https://lists.randombit.net/pipermail/cryptography/2016-June/007702.html` - _RDRAND.zip_ | `https://www.cryptopp....
page www.cryptopp.com/wiki | Obsolete links
https://api.github.com/repos/weidai11/cryptopp/issues/1246/comments
0
2023-11-03T15:16:49Z
2023-11-03T15:16:49Z
https://github.com/weidai11/cryptopp/issues/1246
1,976,420,953
1,246
[ "weidai11", "cryptopp" ]
I am running Crypto++ (master branch) on Xcode (14.3.1) with an iOS (16.6) app. I am attempting to isolate an issue where Crypto++'s gunzip is not inflating a properly formatted JSON file correctly for me. I am providing an already compressed JSON file whose original size is 1.3 MB. After inflation, I end up with 1.01 ...
Loss of data after inflation using gunzip
https://api.github.com/repos/weidai11/cryptopp/issues/1245/comments
3
2023-10-27T20:05:28Z
2023-10-31T13:17:54Z
https://github.com/weidai11/cryptopp/issues/1245
1,966,127,592
1,245
[ "weidai11", "cryptopp" ]
Hello, I'm using Msys2 MinGW Clang++ to build cryptopp. When I did the make command, I got this error: ```bash C:/msys64/mingw64/bin/ld: ./libcryptopp.a(cpu.o): in function `CryptoPP::XGetBV(unsigned int)': D:/cryptopp890/cpu.cpp:395:(.text+0x11): undefined reference to `XGETBV64' C:/msys64/mingw64/bin/ld: ./lib...
Linker command
https://api.github.com/repos/weidai11/cryptopp/issues/1244/comments
0
2023-10-21T07:25:24Z
2023-10-23T10:41:22Z
https://github.com/weidai11/cryptopp/issues/1244
1,955,369,834
1,244
[ "weidai11", "cryptopp" ]
Like to report a debug build error, hopefully you can solve this, its a bit unhandy to develop an application when you're not able to build it for debugging, Using cryptopp version 8.9 with Visual Studio 2022 in a MFC application. When I build this piece of code in debug mode: > void SomeClass::EncryptString(...
An invalid parameter was passed to a function that considers invalid parameters fatal. Only when building in debug mode.
https://api.github.com/repos/weidai11/cryptopp/issues/1243/comments
3
2023-10-14T21:11:09Z
2023-10-16T22:30:49Z
https://github.com/weidai11/cryptopp/issues/1243
1,943,557,814
1,243
[ "weidai11", "cryptopp" ]
null
Unable to link using MSYS2 Clang64 toolchain
https://api.github.com/repos/weidai11/cryptopp/issues/1241/comments
8
2023-10-05T09:45:55Z
2024-03-06T04:24:19Z
https://github.com/weidai11/cryptopp/issues/1241
1,927,848,361
1,241
[ "weidai11", "cryptopp" ]
`#define CRYPTOPP_DISABLE_ASM 1` does not disable all assembler / builtins / intrinsics (as documented here: https://github.com/weidai11/cryptopp/blob/CRYPTOPP_8_9_0/config_asm.h#L30). `cpu.cpp` on x86-64 Windows MSVC builds still wants `CPUID64` and `XGETBV64` which are only implemented in `x64dll.asm` (see https:/...
CRYPTOPP_DISABLE_ASM is broken in 8.9.0 for MSVC x64 builds
https://api.github.com/repos/weidai11/cryptopp/issues/1240/comments
20
2023-10-02T07:30:17Z
2023-10-02T11:53:03Z
https://github.com/weidai11/cryptopp/issues/1240
1,921,390,213
1,240
[ "weidai11", "cryptopp" ]
Crypto++ 8.9.0 was released on October 1, 2023. As part of the release process, we bump version numbers for semantic versioning per https://www.cryptopp.com/wiki/Release_Versioning#Increment. Crypto++ has a `CRYPTOPP_VERSION` macro, but it cannot handle '10' in the minor position. We cannot go from: ```c #define...
CRYPTOPP_VERSION has reached its limits
https://api.github.com/repos/weidai11/cryptopp/issues/1239/comments
3
2023-10-01T18:08:46Z
2023-10-07T19:13:39Z
https://github.com/weidai11/cryptopp/issues/1239
1,920,895,773
1,239
[ "weidai11", "cryptopp" ]
VS2022 with the current head > cryptopp-master\validat2.cpp(1177,69): warning C4244: 'argument': conversion from 'CryptoPP::word' to 'long', possible loss of data Should `m` be declared as `Integer`?
Warning in validat2.cpp
https://api.github.com/repos/weidai11/cryptopp/issues/1238/comments
0
2023-10-01T13:05:50Z
2023-10-01T13:05:50Z
https://github.com/weidai11/cryptopp/issues/1238
1,920,757,942
1,238
[ "weidai11", "cryptopp" ]
On `cfarm29.cfarm.net`, which is a [POWER9 machine](https://cfarm.tetaneutral.net/machines/list/), Asan is producing the following failure: ``` $ ./cryptest.exe tv simon Using seed: 1696129750 Testing SymmetricCipher algorithm SIMON-64/ECB. ................................ Testing SymmetricCipher algori...
SIMON128 Asan failures on POWER8
https://api.github.com/repos/weidai11/cryptopp/issues/1237/comments
1
2023-10-01T03:12:39Z
2023-10-01T03:19:51Z
https://github.com/weidai11/cryptopp/issues/1237
1,920,523,810
1,237
[ "weidai11", "cryptopp" ]
Rabbit, RabbitWithIV, HC128 and HC256 were producing incorrect results when `inString == outString` as reported in [GH #1231](https://github.com/weidai11/cryptopp/issues/1231). We added self tests to detect the failures, and cleared the failures. The new tests also revealed AES/CFB and AES/CTR modes also has problem...
AES/CFB and AES/CTR modes self test failures on ARMv7
https://api.github.com/repos/weidai11/cryptopp/issues/1236/comments
1
2023-09-29T19:30:03Z
2023-09-29T19:41:25Z
https://github.com/weidai11/cryptopp/issues/1236
1,919,803,048
1,236
[ "weidai11", "cryptopp" ]
Rabbit, RabbitWithIV, HC128 and HC256 were producing incorrect results when `inString == outString` as reported in [GH #1231](https://github.com/weidai11/cryptopp/issues/1231). We added self tests to detect the failures, and cleared the failures. The new tests also revealed ARIA/CTR mode also has problems. The failu...
ARIA/CTR mode self test failures
https://api.github.com/repos/weidai11/cryptopp/issues/1235/comments
2
2023-09-29T06:45:28Z
2023-09-30T09:53:12Z
https://github.com/weidai11/cryptopp/issues/1235
1,918,689,003
1,235
[ "weidai11", "cryptopp" ]
Rabbit, RabbitWithIV, HC128 and HC256 were producing incorrect results when `inString == outString` as reported in [GH #1231](https://github.com/weidai11/cryptopp/issues/1231). We added self tests to detect the failures, and cleared the failures. The new tests also revealed HIGHT/CTR mode also has problems. This ...
HIGHT/CTR mode self test failures
https://api.github.com/repos/weidai11/cryptopp/issues/1234/comments
1
2023-09-28T17:08:15Z
2023-09-29T06:48:59Z
https://github.com/weidai11/cryptopp/issues/1234
1,917,949,578
1,234
[ "weidai11", "cryptopp" ]
Very old commit b3924f2108c0b0825060e91f6fde8202ce35624d left trailing spaces in lines containing `TEXTINCLUDE`
Trailing spaces in cryptopp.rc
https://api.github.com/repos/weidai11/cryptopp/issues/1233/comments
1
2023-09-28T13:31:43Z
2023-09-29T10:32:55Z
https://github.com/weidai11/cryptopp/issues/1233
1,917,563,829
1,233
[ "weidai11", "cryptopp" ]
When upgrading from CryptoPP 8.6.0 to 8.8.0 (master branch via vcpkg), we started having our own unit tests fail with code using the `CryptoPP::RabbitWithIV` algorithm. Upon inspection, it appears when `inString == outString` (which is perfectly legal according to `ProcessData`), Rabbit is returning a buffer with all `...
Rabbit Produces null Keystream When inString == outString
https://api.github.com/repos/weidai11/cryptopp/issues/1231/comments
9
2023-09-25T19:18:52Z
2023-09-29T14:54:21Z
https://github.com/weidai11/cryptopp/issues/1231
1,912,136,274
1,231
[ "weidai11", "cryptopp" ]
"g++ main.cpp -static -pthread -lcryptopp -o main". Program result: Segmentation Fault (core dumped) "g++ main.cpp -pthread -lcryptopp -o main". Program runs normally Someone help me pls. Im going crazy
Core dumped
https://api.github.com/repos/weidai11/cryptopp/issues/1230/comments
0
2023-09-23T02:59:13Z
2023-09-25T20:18:30Z
https://github.com/weidai11/cryptopp/issues/1230
1,909,684,713
1,230
[ "weidai11", "cryptopp" ]
Hello had this working on a separate project using vcpkg on windows vs2019 v142 build tools, but since I've switched to a different project I'm now getting these errors below. I've seen a few other issues saying this might be a compiler bug, but it compiles on a different project with identical settings? Any help appr...
Can't compile Windows vs2019 c2238 c2059 c2143 errors
https://api.github.com/repos/weidai11/cryptopp/issues/1229/comments
2
2023-09-12T15:15:17Z
2023-09-25T20:20:29Z
https://github.com/weidai11/cryptopp/issues/1229
1,892,736,964
1,229
[ "weidai11", "cryptopp" ]
@weidai11 it looks like the SSL certificate for cryptopp[dot]com expired this morning. <img width="690" alt="cryptopp com" src="https://github.com/weidai11/cryptopp/assets/1933999/bc5b9367-5f10-4ba7-94ad-9e58e97b3468">
Expired SSL certificate for cryptopp.com
https://api.github.com/repos/weidai11/cryptopp/issues/1228/comments
0
2023-09-06T02:41:56Z
2023-09-07T17:33:25Z
https://github.com/weidai11/cryptopp/issues/1228
1,883,066,961
1,228
[ "weidai11", "cryptopp" ]
### Crypto++ Issue Report The file structure is very irregular. The CPP and header files are in the same folder. The test and library files are mixed together. Please separate these. You can have the include and source folder separately,also the core and the test folder separately. I need to use this project ...
The file structure is very irregular
https://api.github.com/repos/weidai11/cryptopp/issues/1227/comments
0
2023-08-13T11:13:03Z
2023-08-13T17:04:20Z
https://github.com/weidai11/cryptopp/issues/1227
1,848,546,319
1,227
[ "weidai11", "cryptopp" ]
Normally, we encrypt with the public key and decrypt with the private key. Now you want to know how to use private key encryption. Public key decryption. I know how to implement it under openssl, but I don't know how to write it using this library. There better be examples.
help
https://api.github.com/repos/weidai11/cryptopp/issues/1226/comments
0
2023-07-31T02:34:17Z
2023-07-31T03:11:53Z
https://github.com/weidai11/cryptopp/issues/1226
1,828,265,413
1,226
[ "weidai11", "cryptopp" ]
Hi Crypto++ Developers, I would like to add [scons](https://scons.org/doc/4.0.0/HTML/scons-user.html) support to cryptopp as well as makefile support. Scons is written in python programming language and has a very understandable and simple structure. Integration of one of the modern build systems like Scons can s...
implementing request to add new build system: scons
https://api.github.com/repos/weidai11/cryptopp/issues/1225/comments
1
2023-07-12T09:17:28Z
2023-09-25T20:25:22Z
https://github.com/weidai11/cryptopp/issues/1225
1,800,542,897
1,225
[ "weidai11", "cryptopp" ]
### Crypto++ Issue Report Just update vcpkg files to take into account last releases
Update vcpkg repo to last version
https://api.github.com/repos/weidai11/cryptopp/issues/1224/comments
1
2023-07-11T16:07:12Z
2023-07-11T16:09:35Z
https://github.com/weidai11/cryptopp/issues/1224
1,799,276,768
1,224